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
22 #ifndef KMCOMPOSEREDITOR_H
23 #define KMCOMPOSEREDITOR_H
25 #include <messagecomposer/kmeditor.h>
31 class KMComposerEditor
: public Message::KMeditor
38 * Constructs a KMComposerEditor object.
40 explicit KMComposerEditor( KMComposeWin
*win
,QWidget
*parent
= 0 );
45 * Reimplemented from KMEditor, to support more actions.
47 * The additional action XML names are:
52 virtual void createActions( KActionCollection
*actionCollection
);
55 * This replaces all characters not known to the specified codec with
56 * questionmarks. HTML formatting is preserved.
58 void replaceUnknownChars( const QTextCodec
*codec
);
61 * Reimplemented from KMEditor.
63 virtual QString
smartQuote( const QString
& msg
);
66 * Reimplemented from KMEditor.
68 virtual void setHighlighterColors(KPIMTextEdit::EMailQuoteHighlighter
* highlighter
);
72 KMComposeWin
*m_composerWin
;
73 KAction
*mPasteQuotation
, *mAddQuoteChars
, *mRemQuoteChars
;
77 virtual bool canInsertFromMimeData( const QMimeData
*source
) const;
78 virtual void insertFromMimeData( const QMimeData
*source
);
81 void slotFetchJob( KJob
* job
);