backport 1145339: no error box spam
[kdepim.git] / kmail / kmcomposereditor.h
blobbf353f898d200d4384b65a5afe5f5ecaf49f3004
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 <messagecomposer/kmeditor.h>
26 #include <KJob>
28 class KAction;
29 class KMComposeWin;
31 class KMComposerEditor : public Message::KMeditor
33 Q_OBJECT
35 public:
37 /**
38 * Constructs a KMComposerEditor object.
40 explicit KMComposerEditor( KMComposeWin *win,QWidget *parent = 0 );
42 ~KMComposerEditor();
44 /**
45 * Reimplemented from KMEditor, to support more actions.
47 * The additional action XML names are:
48 * - paste_quoted
49 * - tools_quote
50 * - tools_unquote
52 virtual void createActions( KActionCollection *actionCollection );
54 /**
55 * This replaces all characters not known to the specified codec with
56 * questionmarks. HTML formatting is preserved.
58 void replaceUnknownChars( const QTextCodec *codec );
60 /**
61 * Reimplemented from KMEditor.
63 virtual QString smartQuote( const QString & msg );
65 /**
66 * Reimplemented from KMEditor.
68 virtual void setHighlighterColors(KPIMTextEdit::EMailQuoteHighlighter * highlighter);
70 private:
72 KMComposeWin *m_composerWin;
73 KAction *mPasteQuotation, *mAddQuoteChars, *mRemQuoteChars;
75 protected:
77 virtual bool canInsertFromMimeData( const QMimeData *source ) const;
78 virtual void insertFromMimeData( const QMimeData *source );
80 protected slots:
81 void slotFetchJob( KJob * job );
83 signals:
84 void insertSnippet();
88 #endif