/usr/include/kpimtextedit/textedit.h is in kdepimlibs5-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | /*
Copyright (c) 2009 Thomas McGuire <mcguire@kde.org>
Based on KMail and libkdepim code by:
Copyright 2007 - 2010 Laurent Montel <montel@kde.org>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This library 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 Library General Public
License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
*/
#ifndef KPIMTEXTEDIT_TEXTEDIT_H
#define KPIMTEXTEDIT_TEXTEDIT_H
#include "kpimtextedit_export.h"
#include <kpimidentities/signature.h> // TODO KF5: remove this
#include <KDE/KRichTextWidget>
#include <KActionCollection>
#include <QtCore/QSharedPointer>
#include <memory>
// TODO KF5: remove this
#define FIX_KMAIL_INSERT_IMAGE 1
class KUrl;
class QFileInfo;
namespace KPIMTextEdit {
class TextEditPrivate;
class EMailQuoteHighlighter;
/**
* Holds information about an embedded HTML image that will be useful for mail clients.
* A list with all images can be retrieved with TextEdit::embeddedImages().
*/
struct EmbeddedImage
{
QByteArray image; ///< The image, encoded as PNG with base64 encoding
QString contentID; ///< The content id of the embedded image
QString imageName; ///< Name of the image as it is available as a resource in the editor
};
/**
* Holds information about an embedded HTML image that will be generally useful.
* A list with all images can be retrieved with TextEdit::imagesWithName().
*
* @since 4.4
*/
struct ImageWithName
{
QImage image; ///< The image
QString name; ///< The name of the image as it is available as a resource in the editor
};
typedef QSharedPointer<ImageWithName> ImageWithNamePtr;
typedef QList< ImageWithNamePtr > ImageWithNameList;
typedef QList< QSharedPointer<EmbeddedImage> > ImageList;
/**
* Special textedit that provides additional features which are useful for PIM applications
* like mail clients.
* Additional features this class provides:
* - Highlighting quoted text
* - Handling of inline images
* - Auto-Hiding the cursor
* - Handling of pastes and drops of images
*
* @since 4.3
*/
class KPIMTEXTEDIT_EXPORT TextEdit : public KRichTextWidget,
// TODO: KDE5: get rid of the spell interface
protected KTextEditSpellInterface
{
Q_OBJECT
public:
/**
* Constructs a TextEdit object
* @param text the initial plain text of the text edit, interpreted as HTML
* @param parent the parent widget
*/
explicit TextEdit( const QString &text, QWidget *parent = 0 );
/**
* Constructs a TextEdit object.
* @param parent the parent widget
*/
explicit TextEdit( QWidget *parent = 0 );
/**
* Constructs a TextEdit object
* @param parent the parent widget
* @param configFile the config file
* @since 4.6
*
* TODO KDE-5 merge with other constructor
*/
explicit TextEdit( QWidget *parent, const QString &configFile );
/**
* Calling this allows createActions() to create the add image actions.
* Call this method before calling createActions(), otherwise the action
* will not be added.
* Also, if image actions is enabled, the user can paste PNG images.
*
* Don't call this if you don't want to support adding images.
*/
void enableImageActions();
/**
* Calling this allows createActions() to create the add emoticons actions.
* Call this method before calling createActions(), otherwise the action
* will not be added.
* Don't call this if you don't want to support emoticons actions.
*/
void enableEmoticonActions();
void enableInsertHtmlActions();
void enableInsertTableActions();
/**
* Destructor
*/
~TextEdit();
/**
* Reimplemented from KMEditor, to support more actions.
*
* @param actionCollection the collection to put the new actions into
* The additional action XML names are:
* - add_image
* - delete_line
*
* The add_image actions is only added if enableImageActions() is called before.
*/
virtual void createActions( KActionCollection *actionCollection );
/**
* Adds an image. The image is loaded from file and then pasted to the current
* cursor position.
*
* @param url The URL of the file which contains the image
*/
void addImage( const KUrl &url );
/**
* Adds an image. The image is loaded from file and then pasted to the current
* cursor position with the given @p width and @p height.
*
* @param url The URL of the file which contains the image
* @param width The width the inserted image will have.
* @param height The height the inserted image will have.
*
* @since 4.10
*/
void addImage( const KUrl &url, int width, int height );
/**
* Loads an image into the textedit. The difference to addImage() is that this
* function expects that the image tag is already present in the HTML source.
*
* @param image the image to load
* @param matchName the name of tags to match image
* @param resourceName the resource name of image
* So what this message does is that it scans the HTML source for the image
* tag that matches the @p matchName, and then inserts the @p image as a
* resource, giving that resource the name @p resourceName.
*
* @since 4.4
*/
void loadImage( const QImage &image, const QString &matchName, const QString &resourceName );
/**
* Deletes the line at the current cursor position.
* @since 4.4
*/
void deleteCurrentLine();
/**
* Get a list with all embedded HTML images.
* If the same image is contained twice or more in the editor, it will have only
* one entry in this list.
*
* @return a list of embedded HTML images of the editor.
*/
ImageList embeddedImages() const;
/**
* Same as embeddedImages(), only that this returns a list of general purpose information,
* whereas the embeddedImages() function returns a list with mail-specific information.
*
* @since 4.4
*/
ImageWithNameList imagesWithName() const;
/**
* Returns the text of the editor as plain text, with linebreaks inserted
* where word-wrapping occurred.
*/
QString toWrappedPlainText() const;
/**
* @since 5.0
*/
QString toWrappedPlainText( QTextDocument *document ) const;
/**
* @since 4.10
*/
//TODO 5.0 merge it
QString toCleanPlainText( const QString &plainText ) const;
/**
* Same as toPlainText() from QTextEdit, only that it removes embedded
* images and converts non-breaking space characters to normal spaces.
*/
QString toCleanPlainText() const;
/**
* This method is called after the highlighter is created.
* If you use custom colors for highlighting, override this method and
* set the colors to the highlighter in it.
*
* The default implementation does nothing, therefore the default colors of
* the EMailQuoteHighlighter class will be used.
*
* @param highlighter the highlighter that was just created. You need to
* set the colors of this highlighter.
*/
virtual void setHighlighterColors( EMailQuoteHighlighter *highlighter );
/**
* Convenience method for qouteLength( line ) > 0
*/
bool isLineQuoted( const QString &line ) const;
/**
* This is called whenever the editor needs to find out the length of the quote,
* i.e. the length of the quote prefix before the real text starts.
* The default implementation counts the number of spaces, '>' and '|' chars in
* front of the line.
*
* @param line the line of which the length of the quote prefix should be returned
* @return 0 if the line is not quoted, the length of the quote prefix otherwise
* FIXME: Not yet used in all places, e.g. keypressEvent() or the quote highlighter
*/
virtual int quoteLength( const QString &line ) const;
/**
* Returns the prefix that is added to a line that is quoted.
* By default, this is "> ".
*/
virtual const QString defaultQuoteSign() const;
/**
* For all given embedded images, this function replace the image name
* in the <img> tag of the HTML body with cid:content-id, so that the
* HTML references the image body parts, see RFC 2557.
*
* This is useful when building a MIME message with inline images.
*
* Note that this function works on encoded content already.
*
* @param htmlBody the HTML code in which the <img> tag will be modified.
* The HTML code here could come from toHtml(), for example.
*
* @param imageList the list of images of which the <img> tag will be modified.
* You can get such a list from the embeddedImages() function.
*
* @return a modified HTML code, where the <img> tags got replaced
*/
static QByteArray imageNamesToContentIds( const QByteArray &htmlBody,
const ImageList &imageList );
/**
* Checks if rich text formatting is used anywhere.
* This is not the same as checking whether textMode() returns "Rich",
* since that only tells that rich text mode is enabled, but not if any
* special formatting is actually used.
*
* @return true if formatting is used anywhere
*/
bool isFormattingUsed() const;
/**
* Return config file.
* @since 4.5
*/
QString configFile() const;
/** Return true if richtext mode support image
* @since 4.6
*/
bool isEnableImageActions() const;
/** Return true if emoticons actions supported
* @since 4.9
*/
bool isEnableEmoticonActions() const;
/**
* @param image the image to insert
* @param info the info to supply with image
* @since 4.6
*/
void insertImage( const QImage &image, const QFileInfo &info );
/**
* @since 4.10
*/
bool isEnableInsertHtmlActions() const;
/**
* @since 4.10
*/
bool isEnableInsertTableActions() const;
protected:
/**
* Reimplemented for inline image support
*/
virtual bool canInsertFromMimeData( const QMimeData *source ) const;
/**
* Reimplemented for inline image support
*/
virtual void insertFromMimeData( const QMimeData *source );
/**
* Reimplemented from KRichTextWidget to hide the mouse cursor when there
* was no mouse movement for some time, using KCursor
*/
virtual bool eventFilter( QObject *o, QEvent *e );
/**
* Reimplemented to add qoute signs when the user presses enter
* on a quoted line.
*/
virtual void keyPressEvent ( QKeyEvent *e );
// For the explaination for these four methods, see the comment at the
// spellCheckingEnabled variable of the private class.
/**
* Reimplemented from KTextEditSpellInterface
*/
virtual bool isSpellCheckingEnabled() const;
/**
* Reimplemented from KTextEditSpellInterface
*/
virtual void setSpellCheckingEnabled( bool enable );
/**
* Reimplemented from KTextEditSpellInterface, to avoid spellchecking
* quoted text.
*/
virtual bool shouldBlockBeSpellChecked( const QString &block ) const;
/**
* Reimplemented to create our own highlighter which does quote and
* spellcheck highlighting
*/
virtual void createHighlighter();
private:
void addImageHelper( const KUrl &url, int width = -1, int height = -1 );
std::auto_ptr<TextEditPrivate> const d;
friend class TextEditPrivate;
Q_PRIVATE_SLOT( d, void _k_slotAddImage() )
Q_PRIVATE_SLOT( d, void _k_slotDeleteLine() )
Q_PRIVATE_SLOT( d, void _k_slotAddEmoticon( const QString & ) )
Q_PRIVATE_SLOT( d, void _k_slotInsertHtml() )
Q_PRIVATE_SLOT( d, void _k_slotFormatReset() )
Q_PRIVATE_SLOT( d, void _k_slotTextModeChanged( KRichTextEdit::Mode ) )
};
} // namespace
#endif
|