summaryrefslogtreecommitdiffstats
path: root/kbarcode/rectsettingsdlg.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-15 18:34:54 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-15 18:34:54 +0000
commit8805e6b17b1460f3316ccb28629e8ad78e4b9c2c (patch)
treedc9b702962ecf0060cc473397b9f80268c2456c9 /kbarcode/rectsettingsdlg.h
downloadkbarcode-8805e6b17b1460f3316ccb28629e8ad78e4b9c2c.tar.gz
kbarcode-8805e6b17b1460f3316ccb28629e8ad78e4b9c2c.zip
Added abandoned KDE3 version of kbarcode
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbarcode@1090667 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kbarcode/rectsettingsdlg.h')
-rw-r--r--kbarcode/rectsettingsdlg.h71
1 files changed, 71 insertions, 0 deletions
diff --git a/kbarcode/rectsettingsdlg.h b/kbarcode/rectsettingsdlg.h
new file mode 100644
index 0000000..5bcd5f4
--- /dev/null
+++ b/kbarcode/rectsettingsdlg.h
@@ -0,0 +1,71 @@
+/***************************************************************************
+ rectsettingsdlg.h - description
+ -------------------
+ begin : Mit Jun 18 2003
+ copyright : (C) 2003 by Dominik Seichter
+ email : domseichter@web.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 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef RECTSETTINGSDLG_H
+#define RECTSETTINGSDLG_H
+
+#include <kdialogbase.h>
+
+class KColorButton;
+class KComboBox;
+class KIntNumInput;
+class QCheckBox;
+class RectSettingsDlg : public KDialogBase {
+ Q_OBJECT
+ public:
+ RectSettingsDlg(QWidget *parent=0, const char *name=0);
+ ~RectSettingsDlg();
+
+ void setBorderColor( const QColor & c );
+ void setFillColor( const QColor & c );
+ void setBorderWidth( int w );
+ void setPenStyle( int s );
+
+ const QColor borderColor() const;
+ const QColor fillColor() const;
+ int borderWidth() const;
+ int penStyle() const;
+
+ private slots:
+ void enableControls();
+
+ private:
+ KColorButton* buttonBorder;
+ KColorButton* buttonFill;
+
+ KComboBox* comboLine;
+ QCheckBox* checkBorder;
+
+ KIntNumInput* spinWidth;
+};
+
+class QPen;
+class LineSettingsDlg : public KDialogBase {
+ Q_OBJECT
+ public:
+ LineSettingsDlg(QWidget *parent=0, const char *name=0);
+ ~LineSettingsDlg();
+
+ void setPen( const QPen p );
+ QPen pen() const;
+
+ private:
+ KColorButton* buttonColor;
+ KComboBox* comboLine;
+ KIntNumInput* spinWidth;
+};
+#endif