File: templateinterface2.h

package info (click to toggle)
kde4libs 4%3A4.14.26-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 83,084 kB
  • ctags: 99,791
  • sloc: cpp: 763,588; xml: 12,007; ansic: 5,224; java: 4,060; perl: 2,938; yacc: 2,484; python: 1,219; sh: 1,174; ruby: 337; lex: 278; makefile: 32
file content (125 lines) | stat: -rw-r--r-- 4,368 bytes parent folder | download | duplicates (9)
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
/* This file is part of the KDE libraries
   Copyright (C) 2010 Joseph Wenninger <jowenn@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 version 2 as published by the Free Software Foundation.

   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 KDELIBS_KTEXTEDITOR_TEMPLATEINTERFACE2_H
#define KDELIBS_KTEXTEDITOR_TEMPLATEINTERFACE2_H

#include <QtCore/QString>
#include <QtCore/QMap>
#include <QtGui/QImage>

#include <ktexteditor/ktexteditor_export.h>
#include <ktexteditor/cursor.h>
#include <ktexteditor/templateinterface.h>

namespace KTextEditor
{

class Cursor;

class KTEXTEDITOR_EXPORT TemplateScript
{
  public:
    virtual ~TemplateScript();
};

/**
 * @since 4.5
 * This is an interface for inserting template strings with user editable
 * fields into a document and support for scripts. Fold back into base Interface in KDE 5
 * \ingroup kte_group_view_extensions
 */
class KTEXTEDITOR_EXPORT TemplateInterface2: public TemplateInterface
{
  public:
    TemplateInterface2();
    virtual ~TemplateInterface2();

  public:

    /**
     * See the function  description in TemplateInterface, this should be folded into the base Interface in KDE 5
     * @param templateScript pointer to TemplateScript created by TemplateScriptRegistrar::registerTemplateScript
     */
    bool insertTemplateText ( const Cursor &insertPosition,
                              const QString &templateString,
                              const QMap<QString,QString> &initialValues,
                              TemplateScript* templateScript);


protected:
    /**
     * You must implement this, it is called by insertTemplateText, after all
     * default values are inserted. If you are implementing this interface,
     * this method should work as described in the documentation for
     * insertTemplateText above.
     * \return true if any text was inserted.
     */
    virtual bool insertTemplateTextImplementation ( const Cursor &insertPosition,
                                                    const QString &templateString,
                                                    const QMap<QString,QString> &initialValues,
                                                    TemplateScript* templateScript) = 0;


    virtual bool insertTemplateTextImplementation ( const Cursor &insertPosition,
                                                    const QString &templateString,
                                                    const QMap<QString,QString> &initialValues) = 0;

  private:
    class TemplateInterfacePrivate2* const d;
};

/// This is an extension for KTextEditor::Editor
/// @since 4.5
class KTEXTEDITOR_EXPORT TemplateScriptRegistrar {

public:
    TemplateScriptRegistrar();
    virtual ~TemplateScriptRegistrar();

    /**
     * This registeres the script, which is contained in \param script.
     * \return the template script pointer, returns an empty QString on error
     * The implementation has to register the script for all views and all documents,
     * == globally
     * If owner is destructed, all scripts owned by it are automatically freed.
     * Scripts have to be self contained.
     * Depending on the underlying editor, there might be some global functions,
     * perhaps there will be a specifiction for a common functionset later on, but not
     * yet.
     */
    virtual TemplateScript* registerTemplateScript(QObject *owner, const QString& script) = 0;

    /**
     * This frees the template script which is identified by the token
     */
    virtual void unregisterTemplateScript(TemplateScript* templateScript) = 0;

};

}

Q_DECLARE_INTERFACE(KTextEditor::TemplateInterface2,
"org.kde.KTextEditor.TemplateInterface2")

Q_DECLARE_INTERFACE(KTextEditor::TemplateScriptRegistrar,
"org.kde.KTextEditor.TemplateScriptRegistrar")



#endif