summaryrefslogtreecommitdiffabout
path: root/pwmanager/pwmanager/commentbox.h
authorulf69 <ulf69>2004-09-15 17:53:22 (UTC)
committer ulf69 <ulf69>2004-09-15 17:53:22 (UTC)
commitd3925ba5bd25224bc4a60d3d6a107c464994a1ea (patch) (side-by-side diff)
tree60f69da1d2b79ee3081e7ef5c09a46470ca6eda0 /pwmanager/pwmanager/commentbox.h
parentce83a3479d23b9e8a59c745ccd0a0b14f64ef4e8 (diff)
downloadkdepimpi-d3925ba5bd25224bc4a60d3d6a107c464994a1ea.zip
kdepimpi-d3925ba5bd25224bc4a60d3d6a107c464994a1ea.tar.gz
kdepimpi-d3925ba5bd25224bc4a60d3d6a107c464994a1ea.tar.bz2
initial revision
Diffstat (limited to 'pwmanager/pwmanager/commentbox.h') (more/less context) (ignore whitespace changes)
-rw-r--r--pwmanager/pwmanager/commentbox.h100
1 files changed, 100 insertions, 0 deletions
diff --git a/pwmanager/pwmanager/commentbox.h b/pwmanager/pwmanager/commentbox.h
new file mode 100644
index 0000000..a220acd
--- a/dev/null
+++ b/pwmanager/pwmanager/commentbox.h
@@ -0,0 +1,100 @@
+/***************************************************************************
+ * *
+ * copyright (C) 2004 by Michael Buesch *
+ * email: mbuesch@freenet.de *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License version 2 *
+ * as published by the Free Software Foundation. *
+ * *
+ ***************************************************************************/
+
+/***************************************************************************
+ * copyright (C) 2004 by Ulf Schenk
+ * This file is originaly based on version 1.0.1 of pwmanager
+ * and was modified to run on embedded devices that run microkde
+ *
+ * $Id$
+ **************************************************************************/
+
+#ifndef COMMENTBOX_H
+#define COMMENTBOX_H
+
+#include <qstring.h>
+#include <qsize.h>
+
+class QWidget;
+class QTextEdit;
+class QMultiLineEdit;
+class KHTMLPart;
+
+/** Implementation of the advanced HTML comment box */
+class CommentBox
+{
+protected:
+ enum commentBoxMode
+ {
+ mode_notSet = 0,
+ mode_text,
+ mode_html
+ };
+
+public:
+ CommentBox(QWidget *_parentWidget);
+ ~CommentBox();
+
+ /** clear all data in the comment box */
+ void clear();
+ /** show the comment box */
+ void show();
+ /** hide the comment box */
+ void hide();
+ /** resize the comment box */
+ void resize(const QSize &size);
+ void resize(int w, int h)
+ { resize(QSize(w, h)); }
+ /** get the size of the comment box */
+ QSize size();
+ /** if neccessary switch to text-mode and
+ * insert this text into the comment box
+ */
+ void setText(const QString &text);
+ /** get the text of the comment box.
+ * If it's not in text-mode it returns false
+ */
+ bool getText(QString *text);
+ /** if neccessary switch to HTML-mode and
+ * insert this html code into the comment box
+ */
+ void setHtml(QString code);
+ /** checks "dta" for its type, sets the correct
+ * mode and writes "dta" to the comment box
+ */
+ void setContent(const QString &dta);
+
+protected:
+ /** switch the current mode */
+ void switchTo(commentBoxMode newMode);
+ /** clear all text data */
+ void clearText();
+ /** clear all HTML data */
+ void clearHtml();
+
+protected:
+ /** parent widget for this comment box */
+ QWidget *parentWidget;
+ /** current comment box usage type */
+ commentBoxMode mode;
+#ifndef PWM_EMBEDDED
+ /** if the comment box is a normal textbox, data is stored here */
+ QTextEdit *textDta;
+ /** if the comment box is a HTML box, data is stored here */
+ KHTMLPart *htmlDta;
+#else
+ /** if the comment box is a normal textbox, data is stored here */
+ QMultiLineEdit *textDta;
+#endif
+
+};
+
+#endif