make sure to attach to the document also when a resize event is received prior of...
[kdegraphics.git] / kolourpaint / imagelib / kpFloodFill.h
blob195bcbf626b4015b0d6cabd3116e877602726eb5
2 /*
3 Copyright (c) 2003-2007 Clarence Dang <dang@kde.org>
4 All rights reserved.
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
8 are met:
10 1. Redistributions of source code must retain the above copyright
11 notice, this list of conditions and the following disclaimer.
12 2. Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #ifndef KP_FLOOD_FILL_H
30 #define KP_FLOOD_FILL_H
33 #include <kpCommandSize.h>
34 #include <kpImage.h>
37 class kpColor;
38 class kpFillLine;
41 struct kpFloodFillPrivate;
43 class kpFloodFill
45 public:
46 kpFloodFill (kpImage *image, int x, int y,
47 const kpColor &color,
48 int processedColorSimilarity);
49 ~kpFloodFill ();
53 // Spits back constructor arguments.
56 public:
57 kpColor color () const;
58 int processedColorSimilarity () const;
61 public:
62 // Used for calculating the size of a command in the command history.
63 kpCommandSize::SizeType size () const;
67 // Step 1: Determines the colour that will be changed to color().
69 // Very fast.
72 public:
73 void prepareColorToChange ();
75 // (may invoke prepareColorToChange()).
76 kpColor colorToChange ();
80 // Step 2: Determines the scanlines / pixels that will be changed to color().
82 // The slowest part of the whole fill operation.
84 // Before calling a Step 2 function, you don't have to (but you can)
85 // call any of the functions in Step 1.
88 private:
89 kpColor pixelColor (int x, int y, bool *beenHere = 0) const;
90 bool shouldGoTo (int x, int y) const;
92 // Finds the minimum x value at a certain line to be filled.
93 int findMinX (int y, int x) const;
95 // Finds the maximum x value at a certain line to be filled.
96 int findMaxX (int y, int x) const;
98 void addLine (int y, int x1, int x2);
99 void findAndAddLines (const kpFillLine &fillLine, int dy);
101 public:
102 // (may invoke Step 1's prepareColorToChange())
103 void prepare ();
105 // (may invoke prepare())
106 QRect boundingRect ();
110 // Step 3: Draws the lines identified in Step 2 in color().
112 // Between the speeds of Step 2 and Step 1.
114 // Before calling a Step 3 function, you don't have to (but you can)
115 // call any of the functions in Step 1 or 2.
118 public:
119 // (may invoke Step 2's prepare())
120 void fill ();
123 private:
124 kpFloodFillPrivate * const d;
128 #endif // KP_FLOOD_FILL_H