Backport r950340 | aacid | 2009-04-06 23:21:18 +0200 (Mon, 06 Apr 2009) | 4 lines
[kdepim.git] / kmail / kmcomposereditor.h
blob907684e0bcaf2f43fd8f9ceb9280367a62003835
1 /**
2 * kmeditor.h
4 * Copyright (C) 2007 Laurent Montel <montel@kde.org>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
19 * 02110-1301 USA
22 #ifndef KMCOMPOSEREDITOR_H
23 #define KMCOMPOSEREDITOR_H
25 #include <kmeditor.h>
26 using namespace KPIM;
28 class KMComposeWin;
30 class KMComposerEditor : public KMeditor
32 Q_OBJECT
34 public:
35 /**
36 * Constructs a KMComposerEditor object.
38 explicit KMComposerEditor( KMComposeWin *win,QWidget *parent = 0 );
40 ~KMComposerEditor();
42 /**
43 * @return the quote prefix set before with setQuotePrefixName(), or an empty
44 * string if that was never called.
46 virtual QString quotePrefixName() const;
48 /**
49 * Sets a quote prefix. Lines starting with the passed quote prefix will
50 * be highlighted as quotes (in addition to lines that are starting with
51 * '>' and '|').
53 void setQuotePrefixName( const QString &quotePrefix );
55 /**
56 * This replaces all characters not known to the specified codec with
57 * questionmarks. HTML formatting is preserved.
59 void replaceUnknownChars( const QTextCodec *codec );
61 virtual QString smartQuote( const QString & msg );
62 virtual void changeHighlighterColors(KPIM::KEMailQuotingHighlighter * highlighter);
64 private:
65 KMComposeWin *m_composerWin;
66 QString m_quotePrefix;
68 protected:
69 void dropEvent( QDropEvent *e );
70 bool canInsertFromMimeData( const QMimeData *source ) const;
71 void insertFromMimeData( const QMimeData *source );
73 signals:
74 void attachPNGImageData( const QByteArray &image );
75 void insertSnippet();
78 #endif