summaryrefslogtreecommitdiffstats
path: root/kmail/interfaces/htmlwriter.h
blob: 9323501667c18817e6ab7f4325f083cbd0ff18f2 (plain)
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
/*  -*- c++ -*-
    interfaces/htmlwriter.h

    This file is part of KMail's plugin interface.
    Copyright (c) 2003 Marc Mutz <mutz@kde.org>

    KMail is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    KMail 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
    General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

    In addition, as a special exception, the copyright holders give
    permission to link the code of this program with any edition of
    the TQt library by Trolltech AS, Norway (or with modified versions
    of TQt that use the same license as TQt), and distribute linked
    combinations including the two.  You must obey the GNU General
    Public License in all respects for all of the code used other than
    TQt.  If you modify this file, you may extend this exception to
    your version of the file, but you are not obligated to do so.  If
    you do not wish to do so, delete this exception statement from
    your version.
*/

#ifndef __KMAIL_INTERFACES_HTMLWRITER_H__
#define __KMAIL_INTERFACES_HTMLWRITER_H__

class TQCString;
class TQString;

namespace KMail {

  /**
   * @short An interface for HTML sinks.
   * @author Marc Mutz <mutz@kde.org>
   *
   */
  namespace Interface {
    class HtmlWriter {
    public:
      virtual ~HtmlWriter() {}

      /** Signal the begin of stuff to write, and give the CSS definitions */
      virtual void begin( const TQString & cssDefinitions ) = 0;
      /** Write out a chunk of text. No HTML escaping is performed. */
      virtual void write( const TQString & html ) = 0;
      /** Signal the end of stuff to write. */
      virtual void end() = 0;
    };
  }

  /**
   * @short An interface to HTML sinks
   * @author Marc Mutz <mutz@kde.org>
   *
   * @deprecated KMail should be ported to Interface::HtmlWriter. This
   * interface exposes internal working models. The queueing
   * vs. writing() issues exposed here should be hidden by using two
   * different implementations of KHTMLPartHtmlWriter: one for
   * queueing, and one for writing. This should be fixed before the
   * release, so we an keep the plugin interface stable.
   *
   * Operate this interface in one and only one of the following two
   * modes:
   *
   * @section Sync Mode
   *
   * In sync mode, use #begin() to initiate a session, then 
   * #write() some chunks of HTML code and finally #end() the session.
   *
   * @section Async Mode
   *
   * In async mode, use #begin() to initialize a session, then
   * #queue() some chunks of HTML code and finally end the
   * session by calling #flush().
   *
   * Queued HTML code is fed to the html sink using a timer. For this
   * to work, control must return to the event loop so timer events
   * are delivered.
   *
   * @section Combined mode
   *
   * You may combine the two modes in the following way only. Any
   * number of #write() calls can precede #queue() calls,
   * but once a chunk has been queued, you @em must @em not
   * #write() more data, only #queue() it.
   *
   * Naturally, whenever you queued data in a given session, that
   * session must be ended by calling #flush(), not #end().
   */
  class HtmlWriter : public Interface::HtmlWriter {
  public:
    virtual ~HtmlWriter() {}

    /** Stop all possibly pending processing in order to be able to
	call #begin() again. */
    virtual void reset() = 0;

    virtual void queue( const TQString & str ) = 0;
    /** (Start) flushing internal buffers, if any. */
    virtual void flush() = 0;

    /**
     * Embed a part with Content-ID @p contentId, using url @p url.
     */
    virtual void embedPart( const TQCString & contentId, const TQString & url ) = 0;
  };

} // namespace KMail

#endif // __KMAIL_INTERFACES_HTMLWRITER_H__