kcmshell renamed to kcmshell4 to fix co-installability between kdelibs3 and kdebase4...
[kdepim.git] / kmail / kmcomposereditor.h
blob76698fe4924d7696e410a6d374f1742662e89056
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 virtual QString quotePrefixName() const;
43 virtual QString smartQuote( const QString & msg );
44 QString brokenText() const;
46 private:
47 KMComposeWin *m_composerWin;
48 protected:
49 void dropEvent( QDropEvent *e );
50 signals:
51 void attachPNGImageData( const QByteArray &image );
54 #endif