summaryrefslogtreecommitdiff
path: root/noncore/graphics/drawpad/filldrawmode.cpp
Side-by-side diff
Diffstat (limited to 'noncore/graphics/drawpad/filldrawmode.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/graphics/drawpad/filldrawmode.cpp88
1 files changed, 0 insertions, 88 deletions
diff --git a/noncore/graphics/drawpad/filldrawmode.cpp b/noncore/graphics/drawpad/filldrawmode.cpp
deleted file mode 100644
index 6ae0e58..0000000
--- a/noncore/graphics/drawpad/filldrawmode.cpp
+++ b/dev/null
@@ -1,88 +0,0 @@
-/***************************************************************************
- * *
- * DrawPad - a drawing program for Opie Environment *
- * *
- * (C) 2002 by S. Prud'homme <prudhomme@laposte.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. *
- * *
- ***************************************************************************/
-
-#include "filldrawmode.h"
-
-#include "drawpad.h"
-#include "drawpadcanvas.h"
-
-#include <qimage.h>
-#include <qpixmap.h>
-
-FillDrawMode::FillDrawMode(DrawPad* drawPad, DrawPadCanvas* drawPadCanvas)
- : DrawMode(drawPad, drawPadCanvas)
-{
-}
-
-FillDrawMode::~FillDrawMode()
-{
-}
-
-void FillDrawMode::mousePressEvent(QMouseEvent* e)
-{
- int x = e->x();
- int y = e->y();
-
- m_image = m_pDrawPadCanvas->currentPage()->convertToImage();
- m_fillRgb = m_pDrawPad->brush().color().rgb();
- m_oldRgb = m_image.pixel(x, y);
-
- if (m_oldRgb != m_fillRgb) {
- fillLine(x, y);
-
- m_pDrawPadCanvas->currentPage()->convertFromImage(m_image);
- m_pDrawPadCanvas->viewport()->update();
- }
-}
-
-void FillDrawMode::mouseReleaseEvent(QMouseEvent* e)
-{
- Q_UNUSED(e)
-}
-
-void FillDrawMode::mouseMoveEvent(QMouseEvent* e)
-{
- Q_UNUSED(e)
-}
-
-void FillDrawMode::fillLine(int x, int y)
-{
- if ((x >= 0) && (x < m_image.width()) && (y >= 0) && (y < m_image.height())) {
- if (m_image.pixel(x, y) == m_oldRgb) {
- int x1, x2;
-
- x1 = x - 1;
- x2 = x + 1;
-
- while ((x1 >= 0) && (m_image.pixel(x1, y) == m_oldRgb)) {
- x1--;
- }
-
- while ((x2 < m_image.width()) && (m_image.pixel(x2, y) == m_oldRgb)) {
- x2++;
- }
-
- for (int i = x1 + 1; i < x2; i++) {
- m_image.setPixel(i, y, m_fillRgb);
- }
-
- for (int i = x1 + 1; i < x2; i++) {
- fillLine(i, y - 1);
- }
-
- for (int i = x1 + 1; i < x2; i++) {
- fillLine(i, y + 1);
- }
- }
- }
-}