Warning, file /office/calligra/libs/text/KoTextPaste.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /* This file is part of the KDE project
0002  * Copyright (C) 2008 Thorsten Zachmann <zachmann@kde.org>
0003  *
0004  * This library is free software; you can redistribute it and/or
0005  * modify it under the terms of the GNU Library General Public
0006  * License as published by the Free Software Foundation; either
0007  * version 2 of the License, or (at your option) any later version.
0008  *
0009  * This library is distributed in the hope that it will be useful,
0010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0012  * Library General Public License for more details.
0013  *
0014  * You should have received a copy of the GNU Library General Public License
0015  * along with this library; see the file COPYING.LIB.  If not, write to
0016  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
0017  * Boston, MA 02110-1301, USA.
0018  */
0019 
0020 #ifndef KOTEXTPASTE_H
0021 #define KOTEXTPASTE_H
0022 
0023 #include <KoOdfPaste.h>
0024 #include "kotext_export.h"
0025 
0026 class KoTextEditor;
0027 class KoShapeController;
0028 class KUndo2Command;
0029 class KoCanvasBase;
0030 
0031 #include <QSharedPointer>
0032 namespace Soprano
0033 {
0034     class Model;
0035 }
0036 
0037 class KOTEXT_EXPORT KoTextPaste : public KoOdfPaste
0038 {
0039 public:
0040     /**
0041      * Note: RdfModel ownership is not taken. You must ensure that it remains
0042      * valid for the lifetime of the object.
0043      *
0044      * @param editor the KoTextEditor the text will be read into
0045      * @param shapeController the shapecontroller that gives access to the document's shapes and resourcemanager
0046      * @param rdfModel the rdfModel we'll insert the tuples into
0047      */
0048     KoTextPaste(KoTextEditor *editor, KoShapeController *shapeController, QSharedPointer<Soprano::Model> rdfModel, KoCanvasBase *canvas, KUndo2Command *cmd);
0049     ~KoTextPaste() override;
0050 
0051 protected:
0052     /// reimplemented
0053     bool process(const KoXmlElement &body, KoOdfReadStore &odfStore) override;
0054 
0055     class Private;
0056     Private * const d;
0057 };
0058 
0059 #endif /* KOTEXTPASTE_H */