2 kopetemessage.h - Base class for Kopete messages
4 Copyright (c) 2002-2003 by Martijn Klingens <klingens@kde.org>
5 Copyright (c) 2002-2004 by Olivier Goffart <ogoffart@kde.org>
6 Copyright (c) 2006-2007 by Charles Connell <charles@connells.org>
7 Copyright (c) 2007 by Michaël Larouche <larouche@kde.org>
8 Copyright (c) 2008 by Roman Jarosz <kedgedev@centrum.cz>
10 Kopete (c) 2002-2008 by the Kopete developers <kopete-devel@kde.org>
12 *************************************************************************
14 * This library is free software; you can redistribute it and/or *
15 * modify it under the terms of the GNU Lesser General Public *
16 * License as published by the Free Software Foundation; either *
17 * version 2 of the License, or (at your option) any later version. *
19 *************************************************************************
22 #ifndef __KOPETE_MESSAGE_H__
23 #define __KOPETE_MESSAGE_H__
25 #include <QtCore/QSharedData>
26 #include <QtCore/QList>
29 #include "kopete_export.h"
48 * @brief Representation of a message in Kopete
50 * @author Martijn Klingens <klingens@kde.org>
51 * @author Olivier Goffart <ogoffart@kde.org>
52 * @author Charles Connell <charles@connells.org>
53 * @author Michaël Larouche <larouche@kde.org>
55 * Message represents any kind of messages shown on a chat view.
56 * The message may contain a simple plain text string, or a rich text HTML
57 * message. Also, Message can use a QTextDocument to structure the message.
59 * Message in plain text can however have a color or a specific font. You can
60 * set color with setForegroundColor() and setBackgroundColor() and change the font
63 * Message have a direction from where the message come from. By default, the direction
64 * is Internal but it is strongly advised to set the direction explicitly.
66 * @section plainMessage Creating a plain text message
68 Kopete::Message newMessage(sourceContact, destionationContact);
69 newMessage.setPlainBody( QString("A plain text message") );
70 newMessage.setDirection( Kopete::Message::Inbound );
73 * @section richTextMessage Creating a complete rich text message
75 Kopete::Message richTextMessage(sourceContact, destinationContactList);
76 richTextMessage.setTimestamp( QDateTime::currentDateTime() );
77 richTextMessage.setDirection( Kopete::Message::Outbound );
78 richTextMessage.setSubjet( QString("Kopete API documentation thread") );
79 richTextMessage.setHtmlBody( QString("<b>A bold text</b>") );
82 class KOPETE_EXPORT Message
86 * Direction of a message.
90 Inbound
= 0, ///< Message is from the chat partner
91 Outbound
= 1, ///< Message sent by the user
92 Internal
= 2 ///< (Default) Message which are not sent via the network. This is just a notification a plugin can show in a chat view
96 * Specifies the type of the message.
100 TypeNormal
, ///< A typical message
101 TypeAction
, ///< An IRC-style action.
102 TypeFileTransferRequest
///< A incoming file transfer request message
106 * Specifies the type of notification that will be sent with this message
108 enum MessageImportance
110 Low
= 0, ///< almost no notifications. automatically used in groupChat
111 Normal
= 1, ///< Default notification, for normal message
112 Highlight
= 2 ///< Highlight notification, for most important messages, which require particular attentions.
117 StateUnknown
= 0, ///< state of message isn't known (e.g. protocol doesn't support message acknowledgment)
118 StateSending
= 1, ///< message was sent but not yet delivered.
119 StateSent
= 2, ///< message was delivered
120 StateError
= 3 ///< message has not been delivered
124 * Constructs a new empty message
129 * Deref and clean private object if refcount == 0
134 * @brief Constructs a new message with a from and to contact
136 * This constructor is a convience of the constructor who
137 * take a list of contacts for destination
138 * @param fromKC Contact who send the message
139 * @param toKC Contact which the message is destined.
141 explicit Message( const Contact
*fromKC
, const Contact
*toKC
);
143 * @brief Constructs a new message with many contacts as the destination.
144 * @param fromKC Contact who send the message
145 * @param contacts List of Contact to send the message
147 explicit Message( const Contact
*fromKC
, const QList
<Contact
*> &contacts
);
151 * Just adds a reference, doesn't actually copy.
153 Message( const Message
&other
);
156 * Assignment operator
157 * Just like the copy constructor it just refs and doesn't copy.
159 Message
& operator=( const Message
&other
);
162 * @brief Get unique message id.
168 * @brief Get next unique message id.
171 static uint
nextId();
174 * @brief Accessor method for the timestamp of the message
175 * @return The message's timestamp
177 QDateTime
timestamp() const;
180 * @brief Set the message timestamp
181 * @param timestamp timestamp as QDateTime. By default the current date and time.
183 void setTimestamp(const QDateTime
×tamp
);
186 * @brief Accessor method for the "delayed" attribute of the message
187 * @return true if the message was delayed (for example because it has
188 * been stored on a server while the intended recipient was offline or
189 * because the message is contained in the history of a group chat room).
191 bool delayed() const;
194 * @brief Set the "delayed" attribute of the message
195 * @param delay whether the message was delayed, see delayed()
197 void setDelayed(bool delay
);
200 * @brief Accessor method for the Contact that sent this message
201 * @return The Contact who sent this message
203 const Contact
* from() const;
206 * @brief Accessor method for the Contacts that this message was sent to
207 * @return Pointer list of the Contacts this message was sent to
209 QList
<Contact
*> to() const;
212 * @brief Accessor method for the message type
213 * @return The type of the message
216 MessageType
type() const;
219 * @brief Set message type
220 * @param type The type of the message
223 void setType(MessageType type
);
226 * @brief Accessor method for the preferred plugin
227 * If null, Kopete will use the user's preferred plugin.
228 * @return The preferred plugin
230 QString
requestedPlugin() const;
233 * @brief Set a view plugin which will display the message
235 * This is used mostly by Jabber plugin to select between
236 * the email window or the chat window depending of the
238 * @param requesedPlugin View plugin name
240 void setRequestedPlugin(const QString
&requestedPlugin
);
243 * @brief Accessor method for the foreground color
244 * @return The message's foreground color
246 QColor
foregroundColor() const;
249 * @brief Accessor method for the background color of the message
250 * @return The message's background color
252 QColor
backgroundColor() const;
255 * @brief Accesssor method for the direction of the text based on what language it is in
256 * @return The message text's direction
258 bool isRightToLeft() const;
261 * @brief Accessor method for the font of the message
262 * @return The message's font
267 * @brief Accessor method for the subject of the message
268 * @return The message subject
270 QString
subject() const;
273 * @brief Set message subject
274 * @param subject Message's subject
276 void setSubject(const QString
&subject
);
279 * @brief Accessor method for the body of the message
280 * This is used internaly, to modify it make a copy of it with QTextDocument::clone()
281 * @return The message body
283 const QTextDocument
*body() const;
286 * @brief Accessor method for the format of the message
287 * @return The message format
289 Qt::TextFormat
format() const;
292 * @brief Accessor method for the direction of the message
293 * @return The message direction
295 MessageDirection
direction() const;
298 * @brief Set the message direction
299 * @param direction The message direction
300 * @see MessageDirection
302 void setDirection(MessageDirection direction
);
305 * @brief Accessor method for the importance
307 * @return The message importance (low/normal/highlight)
309 MessageImportance
importance() const;
312 * @brief Set the importance.
313 * @see importance and @see MessageImportance
314 * @param importance The message importance to set
316 void setImportance(MessageImportance importance
);
319 * @brief Accessor method for the state
320 * @return The message state (unknown/sending/sent/error)
322 MessageState
state() const;
325 * @brief Set the state of message.
327 * @param state The message state to set
329 void setState(MessageState state
);
332 * @brief Sets the foreground color for the message
333 * @see foregroundColor
334 * @param color The color
336 void setForegroundColor( const QColor
&color
);
339 * @brief Sets the background color for the message
340 * @see backgroundColor
341 * @param color The color
343 void setBackgroundColor( const QColor
&color
);
346 * @brief Sets the font for the message
348 * @param font The font
350 void setFont( const QFont
&font
);
353 * @brief Sets the body of the message
355 * @param body The body, intpreted as plain text
357 void setPlainBody( const QString
&body
);
360 * @brief Sets the body of the message
362 * @param body The body, interpreted as HTML
364 void setHtmlBody( const QString
&body
);
367 * @brief Sets the body of the message
368 * The format is changed to RichText automatically
369 * @param body The body
371 void setBody( const QTextDocument
*body
);
374 * @brief Get the message body back as plain text
375 * @return The message body as plain text
377 QString
plainBody() const;
380 * @brief Get the message body as escaped (X)HTML format.
381 * That means every HTML special char (\>, \<, \&, ...) is escaped to the HTML entity (\<, \>, ...)
382 * and newlines (\\n) are converted to \<br /\>
383 * Just because you set an HTML body doesn't mean you'll get the same string back here, but it will
384 * be equivalent in meaning
385 * @return The message body as escaped text
387 QString
escapedBody() const;
390 * @brief Get the message body as parsed HTML with Emoticons, and URL parsed
391 * This should be ready to be shown in the chatwindow.
392 * @return The HTML and Emoticon parsed message body
394 QString
parsedBody() const;
397 * Get the related message manager.
398 * If it is not set, returns 0L.
400 * The @ref ChatSession is only set if the message is already passed by the manager.
401 * We should trust this only in aboutToSend/aboutToReceive signals
403 ChatSession
*manager() const ;
406 * @brief Set the messagemanager for this message.
407 * Should be only used by the manager itself. @see manager
408 * @param manager The chat session
410 void setManager(ChatSession
* manager
);
413 * @brief Enables the use of a background for a message
414 * @param enable A flag to indicate if the background should be enabled or disabled.
416 void setBackgroundOverride( bool enable
);
419 * @brief Enables the use of a foreground for a message
420 * @param enable A flag to indicate if the foreground should be enabled or disabled.
422 void setForegroundOverride( bool enable
);
425 * @brief Enables the use of a RTF formatting for a message
426 * @param enable A flag to indicate if the RTF formatting should be enabled or disabled.
428 void setRichTextOverride( bool enable
);
431 * @brief Return HTML style attribute for this message.
432 * @return A string formatted like this: "style=attr"
434 QString
getHtmlStyleAttribute() const;
437 * @brief Set the state of incoming file transfer
438 * @param disabled flag to indicate if the file transfer request should be enabled or disabled.
440 void setFileTransferDisabled( bool disabled
);
443 * @brief Accessor method for the file transfer state
444 * @return if file transfer request should be enable or disable
446 bool fileTransferDisabled() const;
449 * @brief Set file name of incoming file transfer
450 * @param fileName file name
452 void setFileName( const QString
&fileName
);
455 * @brief Accessor method for the file name of incoming file transfer
456 * @return file name of incoming file transfer
458 QString
fileName() const;
461 * @brief Set file transfer size
462 * @param size file transfer size
464 void setFileSize( unsigned long size
);
467 * @brief Accessor method for the file transfer size
468 * @return file transfer size
470 unsigned long fileSize() const;
473 * @brief Set file preview icon for file transfer
474 * @param preview file preview icon
476 void setFilePreview( const QPixmap
&preview
);
479 * @brief Accessor method for the file preview icon
480 * @return file preview icon
482 QPixmap
filePreview() const;
485 * @return The list of classes
486 * Class are used to give different notification on a message. They are also used in the chatwindow as an HTML class
488 QStringList
classes() const;
493 * @param class class to add
495 void addClass(const QString
& classe
);
498 * @brief Set the classes
500 * @param classes The new classes
502 void setClasses(const QStringList
&classes
);
504 public: /* static helpers */
507 * Unescapes a string, removing XML entity references and returns a plain text.
509 * Note that this method is *VERY* expensive when called on rich text bodies,
513 static QString
unescape( const QString
&xml
);
516 * @brief Transform a plaintext message into HTML.
517 * it escape main entity like > < add some <br /> or &nbsp;
519 static QString
escape( const QString
& );
522 //candidate for removal!
524 * Helper function to decode a string. Whatever returned here is *nearly guaranteed* to
525 * be parseable by the XML engine.
527 * @param message The string you are trying to decode
528 * @param providedCodec A codec you want to try to decode with
529 * @param success Optional pointer to a bool you want updated on success. "Success"
530 * is defined as a successful decoding using either UTF8 or the codec you
531 * provided. If a guess has to be taken, success will be false.
532 * @return The decoded string
535 static QString
decodeString( const QByteArray
&message
,
536 const QTextCodec
*providedCodec
= 0L, bool *success
= 0L );
541 QSharedDataPointer
<Private
> d
;
544 * Called internally by @ref setBody() and the constructor
545 * Basically @ref setBody() without detach
548 void doSetBody( QString body
, Qt::TextFormat format
= Qt::PlainText
);
551 * Called internally by @ref setBody() and the constructor
552 * Basically @ref setBody() without detach
555 void doSetBody (const QTextDocument
*body
, Qt::TextFormat format
= Qt::PlainText
);
558 * Called internally in rich text handling
561 static QString
parseLinks( const QString
&message
, Qt::TextFormat format
);
568 // vim: set noet ts=4 sts=4 sw=4: