summaryrefslogtreecommitdiffstats
path: root/digikam/imageplugins/border/imageeffect_border.h
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/imageplugins/border/imageeffect_border.h')
-rw-r--r--digikam/imageplugins/border/imageeffect_border.h108
1 files changed, 108 insertions, 0 deletions
diff --git a/digikam/imageplugins/border/imageeffect_border.h b/digikam/imageplugins/border/imageeffect_border.h
new file mode 100644
index 0000000..aae18d6
--- /dev/null
+++ b/digikam/imageplugins/border/imageeffect_border.h
@@ -0,0 +1,108 @@
+/* ============================================================
+ *
+ * This file is a part of digiKam project
+ * http://www.digikam.org
+ *
+ * Date : 2005-01-20
+ * Description : a digiKam image plugin to add a border
+ * around an image.
+ *
+ * Copyright 2005-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
+ * Copyright 2006-2008 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de>
+ *
+ * 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, 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.
+ *
+ * ============================================================ */
+
+#ifndef IMAGEEFFECT_BORDER_H
+#define IMAGEEFFECT_BORDER_H
+
+// Qt includes.
+
+#include <qstring.h>
+
+// Digikam includes.
+
+#include "imageguidedlg.h"
+
+class QComboBox;
+class QLabel;
+class QCheckBox;
+class QColor;
+
+class KIntNumInput;
+class KColorButton;
+
+namespace DigikamBorderImagesPlugin
+{
+
+class ImageEffect_Border : public Digikam::ImageGuideDlg
+{
+ Q_OBJECT
+
+public:
+
+ ImageEffect_Border(QWidget *parent);
+ ~ImageEffect_Border();
+
+private:
+
+ QString getBorderPath(int border);
+
+private slots:
+
+ void slotPreserveAspectRatioToggled(bool);
+ void slotBorderTypeChanged(int borderType);
+ void slotColorForegroundChanged(const QColor &color);
+ void slotColorBackgroundChanged(const QColor &color);
+ void readUserSettings();
+
+private:
+
+ void writeUserSettings();
+ void resetValues();
+ void prepareEffect();
+ void prepareFinal();
+ void putPreviewData();
+ void putFinalData();
+ void renderingFinished();
+ void toggleBorderSlider(bool b);
+
+private:
+
+ QLabel *m_labelBorderPercent;
+ QLabel *m_labelBorderWidth;
+ QLabel *m_labelForeground;
+ QLabel *m_labelBackground;
+
+ QComboBox *m_borderType;
+
+ QCheckBox *m_preserveAspectRatio;
+
+ QColor m_solidColor;
+ QColor m_niepceBorderColor;
+ QColor m_niepceLineColor;
+ QColor m_bevelUpperLeftColor;
+ QColor m_bevelLowerRightColor;
+ QColor m_decorativeFirstColor;
+ QColor m_decorativeSecondColor;
+
+ KIntNumInput *m_borderPercent;
+ KIntNumInput *m_borderWidth;
+
+ KColorButton *m_firstColorButton;
+ KColorButton *m_secondColorButton;
+};
+
+} // NameSpace DigikamBorderImagesPlugin
+
+#endif /* IMAGEEFFECT_BORDER_H */