summaryrefslogtreecommitdiffstats
path: root/kbarcode/multilineeditdlg.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/multilineeditdlg.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/multilineeditdlg.h')
-rw-r--r--kbarcode/multilineeditdlg.h85
1 files changed, 85 insertions, 0 deletions
diff --git a/kbarcode/multilineeditdlg.h b/kbarcode/multilineeditdlg.h
new file mode 100644
index 0000000..8941950
--- /dev/null
+++ b/kbarcode/multilineeditdlg.h
@@ -0,0 +1,85 @@
+/***************************************************************************
+ multilineeditdlg.h - description
+ -------------------
+ begin : Sam Jan 11 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 MULTILINEEDITDLG_H
+#define MULTILINEEDITDLG_H
+
+#include <qwidget.h>
+#include "documentitem.h"
+
+class KActionCollection;
+class KToggleAction;
+class KFontAction;
+class KFontSizeAction;
+class KToolBar;
+class KSpell;
+class KSpellConfig;
+class DSTextEdit;
+class TokenProvider;
+
+class MultiLineEditor : public QWidget {
+ Q_OBJECT
+ public:
+ MultiLineEditor( TokenProvider* token, QWidget *parent=0, const char *name=0);
+ ~MultiLineEditor();
+ QString text();
+ void setText( const QString & t );
+
+ private slots:
+ void setupActions();
+ void updateActions();
+ void spellCheckDone(const QString & buffer);
+
+ void save();
+ void updateFont();
+ void updateCharFmt();
+ void updateAligment();
+ void formatColor();
+ void checkSpelling();
+ void setAlignLeft( bool yes );
+ void setAlignRight( bool yes );
+ void setAlignCenter( bool yes );
+ void setAlignJustify( bool yes );
+ void insertNewField();
+
+ protected:
+ TokenProvider* m_token;
+
+ DSTextEdit* editor;
+
+ KActionCollection* ac;
+
+ KToggleAction *action_bold;
+ KToggleAction *action_italic;
+ KToggleAction *action_underline;
+
+ KFontAction *action_font;
+ KFontSizeAction *action_font_size;
+
+ KToggleAction *action_align_left;
+ KToggleAction *action_align_right;
+ KToggleAction *action_align_center;
+ KToggleAction *action_align_justify;
+
+ KToolBar* toolBar;
+ KToolBar* tool2Bar;
+ KToolBar* tool3Bar;
+
+ KSpell* spell;
+};
+
+#endif