summaryrefslogtreecommitdiffstats
path: root/knotes/knoteedit.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit460c52653ab0dcca6f19a4f492ed2c5e4e963ab0 (patch)
tree67208f7c145782a7e90b123b982ca78d88cc2c87 /knotes/knoteedit.h
downloadtdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.tar.gz
tdepim-460c52653ab0dcca6f19a4f492ed2c5e4e963ab0.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'knotes/knoteedit.h')
-rw-r--r--knotes/knoteedit.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/knotes/knoteedit.h b/knotes/knoteedit.h
new file mode 100644
index 00000000..94760f3a
--- /dev/null
+++ b/knotes/knoteedit.h
@@ -0,0 +1,121 @@
+/*******************************************************************
+ KNotes -- Notes for the KDE project
+
+ Copyright (c) 1997-2004, The KNotes Developers
+
+ 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.
+
+ 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.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+*******************************************************************/
+
+#ifndef KNOTEEDIT_H
+#define KNOTEEDIT_H
+
+#include <qwidget.h>
+
+#include <ktextedit.h>
+
+class QFont;
+class QColor;
+class QPushButton;
+class KAction;
+class KActionCollection;
+class KToggleAction;
+class KFontAction;
+class KFontSizeAction;
+
+
+class KNoteEdit : public KTextEdit
+{
+ Q_OBJECT
+public:
+ KNoteEdit( KActionCollection *actions, QWidget *parent=0, const char *name=0 );
+ ~KNoteEdit();
+
+ void setText( const QString& text );
+ void setTextFont( const QFont& font );
+ void setTextColor( const QColor& color );
+ void setTabStop( int tabs );
+ void setAutoIndentMode( bool newmode );
+
+public slots:
+ virtual void setTextFormat( TextFormat f );
+
+ void textStrikeOut( bool );
+
+ void textColor();
+
+ void textAlignLeft();
+ void textAlignCenter();
+ void textAlignRight();
+ void textAlignBlock();
+
+ void textList();
+
+ void textSuperScript();
+ void textSubScript();
+
+ //void textIncreaseIndent();
+ //void textDecreaseIndent();
+
+protected:
+ virtual void contentsDragEnterEvent( QDragEnterEvent *e );
+ virtual void contentsDropEvent( QDropEvent *e );
+
+private slots:
+ void slotReturnPressed();
+
+ void fontChanged( const QFont &f );
+ void colorChanged( const QColor &c );
+ void alignmentChanged( int a );
+ void verticalAlignmentChanged( VerticalAlignment a );
+
+private:
+ void autoIndent();
+
+ virtual bool linksEnabled() const { return true; }
+ virtual void emitLinkClicked( const QString &s );
+
+ void enableRichTextActions();
+ void disableRichTextActions();
+
+private:
+ KAction *m_cut;
+ KAction *m_copy;
+ KAction *m_paste;
+
+ KToggleAction *m_textBold;
+ KToggleAction *m_textItalic;
+ KToggleAction *m_textUnderline;
+ KToggleAction *m_textStrikeOut;
+
+ KToggleAction *m_textAlignLeft;
+ KToggleAction *m_textAlignCenter;
+ KToggleAction *m_textAlignRight;
+ KToggleAction *m_textAlignBlock;
+
+ KToggleAction *m_textList;
+ KToggleAction *m_textSuper;
+ KToggleAction *m_textSub;
+
+ //KAction *m_textIncreaseIndent;
+ //KAction *m_textDecreaseIndent;
+
+ KAction *m_textColor;
+ KFontAction *m_textFont;
+ KFontSizeAction *m_textSize;
+
+ bool m_autoIndentMode;
+};
+
+#endif