Development/Tutorials/Write a Flake Plugin: Difference between revisions

    From KDE TechBase
    (highlight the cpp and ini code properly)
    m (Text replace - "</code>" to "</syntaxhighlight>")
    (6 intermediate revisions by 4 users not shown)
    Line 16: Line 16:


    So here is an example how your code might look like:
    So here is an example how your code might look like:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <KoShape.h>
    #include <KoShape.h>


    Line 27: Line 27:
         void paint( QPainter &painter,
         void paint( QPainter &painter,
                     const KoViewConverter &converter );
                     const KoViewConverter &converter );
        virtual bool loadOdf(const KoXmlElement & element, KoShapeLoadingContext &context);
        virtual void saveOdf(KoShapeSavingContext & context) const;


    private:
    private:
         SomeDataClass* m_dataClass;
         SomeDataClass* m_dataClass;
    };
    };
    </code>
    </syntaxhighlight>


    =Make your shape loadable - create a factory and a plugin=
    =Make your shape loadable - create a factory and a plugin=
    XXX: Hasn't this changed? Look at the video or picture shape -- I think we do without all of this nowadays. (Boudewijn)


    Now when you have created your shape class and implemented all the necessary things to make it at least compile you can think about the loading of your shape.
    Now when you have created your shape class and implemented all the necessary things to make it at least compile you can think about the loading of your shape.
    Line 45: Line 45:


    An example factory class definition:
    An example factory class definition:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    class FooShapeFactory : public KoShapeFactory {
    class FooShapeFactory : public KoShapeFactory {
    public:
    public:
    Line 53: Line 53:
         KoShape* createShape(const KoProperties* params) const;
         KoShape* createShape(const KoProperties* params) const;
    };
    };
    </code>
    </syntaxhighlight>
    The according implementation:
    The according implementation:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    FooShapeFactory::FooShapeFactory(QObject* parent)  
    FooShapeFactory::FooShapeFactory(QObject* parent)  
       : KoShapeFactory( parent, "FooShape",
       : KoShapeFactory( parent, "FooShape",
    Line 77: Line 77:
         return fooShape;
         return fooShape;
    }
    }
    </code>
    </syntaxhighlight>


    With the factory there is now a generic way to obtain an instance of your shape. But somehow you have to publish your shape as a plugin to let the KOffice application know that there is a plugin to load. Therefore the flake library provides the [http://koffice.org/developer/apidocs/libs-flake/classKoShapeRegistry.html KoShapeRegistry] class. Each application has access to the registry and to let the application know about your shape you have to register it within the registry.
    With the factory there is now a generic way to obtain an instance of your shape. But somehow you have to publish your shape as a plugin to let the KOffice application know that there is a plugin to load. Therefore the flake library provides the [http://koffice.org/developer/apidocs/libs-flake/classKoShapeRegistry.html KoShapeRegistry] class. Each application has access to the registry and to let the application know about your shape you have to register it within the registry.


    To register we would have to make a call like this:
    To register we would have to make a call like this:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    KoShapeRegistry::instance()->add( new FooShapeFactory( parent ) );
    KoShapeRegistry::instance()->add( new FooShapeFactory( parent ) );
    </code>
    </syntaxhighlight>
    In order to make that call, we will create a plugin class which is special in that it will be automatically loaded and created by KOffice when an application starts.  This means that the constructor of our plugin class will be the perfect place to actually register our shape using the above line.
    In order to make that call, we will create a plugin class which is special in that it will be automatically loaded and created by KOffice when an application starts.  This means that the constructor of our plugin class will be the perfect place to actually register our shape using the above line.


    Line 90: Line 90:


    Example plugin class definition:
    Example plugin class definition:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <QObject>
    #include <QObject>


    Line 98: Line 98:
         FooShapePlugin(QObject *parent, const QStringList&);
         FooShapePlugin(QObject *parent, const QStringList&);
    };
    };
    </code>
    </syntaxhighlight>


    Example plugin class implementation:
    Example plugin class implementation:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include "FooShapePlugin.h"
    #include "FooShapePlugin.h"
    #include <kgenericfactory.h>
    #include <kgenericfactory.h>
    Line 117: Line 117:
    }
    }
    #include "FooShapePlugin.moc"
    #include "FooShapePlugin.moc"
    </code>
    </syntaxhighlight>
    This demonstrates how for the plugin related tasks KDE provides services which are dynamic loaded libraries. The secret ingredient that makes this class the plugin of that library is the call to the K_EXPORT_COMPONENT_FACTORY macro defined in kgenericfactory.h
    This demonstrates how for the plugin related tasks KDE provides services which are dynamic loaded libraries. The secret ingredient that makes this class the plugin of that library is the call to the K_EXPORT_COMPONENT_FACTORY macro defined in {{path|kgenericfactory.h}}


    We now have a way to create instances of your shape (FooShapeFactory), a way to register them for the apps (KoShapeRegistry) and a plugin that can dynamically be loaded (FooShapePlugin). The last step is to create a .desktop file that describes your plugin and makes it findable by KOffice. For "X-KDE-Library" you have to set the library name you have already specified within K_EXPORT_COMPONENT_FACTORY().
    We now have a way to create instances of your shape (FooShapeFactory), a way to register them for the apps (KoShapeRegistry) and a plugin that can dynamically be loaded (FooShapePlugin). The last step is to create a {{path|.desktop}} file that describes your plugin and makes it findable by KOffice. For "X-KDE-Library" you have to set the library name you have already specified within K_EXPORT_COMPONENT_FACTORY().


    Example fooshape.desktop file:
    Example {{path|fooshape.desktop}} file:
    <code ini>
    <syntaxhighlight lang="ini">
    [Desktop Entry]
    [Desktop Entry]
    Encoding=UTF-8
    Encoding=UTF-8
    Line 131: Line 131:
    X-KDE-Library=fooshapelibrary
    X-KDE-Library=fooshapelibrary
    X-Flake-Version=1
    X-Flake-Version=1
    </code>
    </syntaxhighlight>


    After installing that file in the kde services directory and installing your plugin where the application can open it, your plugin is system wide known and can be loaded by KOffice.
    After installing that file in the KDE services directory and installing your plugin where the application can open it, your plugin is system wide known and can be loaded by KOffice.


    TODO; add example CMake file.
    TODO; add example CMake file.

    Revision as of 20:56, 29 June 2011

    This tutorial will guide you step by step through the creation of a Flake shape. At the end you will be able to write a shape that is loadable by any KOffice application.

    For an introduction of KOffice plugins, see Development/Tutorials/KOffice Overview and for a technical introduction to plugins in KOffice see Generic KOffice Plugin Creation

    Do the groundwork - create a shape

    First of all you need a class derived from the KoShape class. This will be the actual shape class so you have to ensure that all the data you need for painting is accessable for this KoShape derived class. The only method you have to reimplement is the paint() method which is responsible for painting your shape.

    What you might be interested in is the resize() and size() method which set the available size to the shape. Some shapes define the size they need on their own so they reimplement size() to return the size they have.

    An example for this is the KoFormulaShape. A formula has a fixed size due to its contents and so KoFormulaShape reimplements the size() method. If your shape has a special outline, reimplement outline() to return your shape's outline correctly.

    The rotation, scaling and skewing is done through a matrix and so you don't need to care about it.

    So here is an example how your code might look like:

    #include <KoShape.h>
    
    class KoFooShape : public KoShape {
    public:
        KoFooShape();
        ~KoFooShape();
    
        // absolutly necessary:
        void paint( QPainter &painter,
                    const KoViewConverter &converter );
        virtual bool loadOdf(const KoXmlElement & element, KoShapeLoadingContext &context);
        virtual void saveOdf(KoShapeSavingContext & context) const;
    
    private:
        SomeDataClass* m_dataClass;
    };
    

    Make your shape loadable - create a factory and a plugin

    Now when you have created your shape class and implemented all the necessary things to make it at least compile you can think about the loading of your shape.

    The KOffice apps use KoShapeFactory to get instances of shapes in a generic way. This way of obtaining shape instances is designed after the factory pattern. So you should also implement a KoShapeFactory derived class that makes creating new instances of your shape possible. The factory class has to implement two methods:

    • KoShape* createDefaultShape() const;
    • KoShape* createShape( const KoProperties* params ) const;

    An example factory class definition:

    class FooShapeFactory : public KoShapeFactory {
    public:
        FooShapeFactory( QObject *parent );
    
        KoShape* createDefaultShape() const;
        KoShape* createShape(const KoProperties* params) const;
    };
    

    The according implementation:

    FooShapeFactory::FooShapeFactory(QObject* parent) 
       : KoShapeFactory( parent, "FooShape",
                         i18n("Foo Shape") )
    {
        setToolTip( i18n("A foo shape") );
    }
    
    KoShape* FooShapeFactory::createDefaultShape() const
    {
        KoFooShape* fooShape = new KoFooShape();
        // set defaults
        return fooShape;
    }
    
    KoShape* FooShapeFactory::createShape(
                                const KoProperties* params ) const
    {
        KoFooShape* fooShape = new KoFooShape();
        // use the params
        return fooShape;
    }
    

    With the factory there is now a generic way to obtain an instance of your shape. But somehow you have to publish your shape as a plugin to let the KOffice application know that there is a plugin to load. Therefore the flake library provides the KoShapeRegistry class. Each application has access to the registry and to let the application know about your shape you have to register it within the registry.

    To register we would have to make a call like this:

    KoShapeRegistry::instance()->add( new FooShapeFactory( parent ) );
    

    In order to make that call, we will create a plugin class which is special in that it will be automatically loaded and created by KOffice when an application starts. This means that the constructor of our plugin class will be the perfect place to actually register our shape using the above line.

    The registration is done within the constructor of the FooShapePlugin class. This is a very simple class that represents the plugin and does registration.

    Example plugin class definition:

    #include <QObject>
    
    class FooShapePlugin : public QObject {
        Q_OBJECT
    public:
        FooShapePlugin(QObject *parent, const QStringList&);
    };
    

    Example plugin class implementation:

    #include "FooShapePlugin.h"
    #include <kgenericfactory.h>
    
    K_EXPORT_COMPONENT_FACTORY(fooshapelibrary,
        KGenericFactory<FooShapePlugin>( "FooPlugin" ) )
    
    FooShapePlugin::FooShapePlugin(QObject *parent, const QStringList&)
        : QObject(parent)
    {
        // register the shape's factory
        KoShapeRegistry::instance()->add(
            new KoFooShapeFactory( parent ) );
        // we could register more things here in this same plugin.
    }
    #include "FooShapePlugin.moc"
    

    This demonstrates how for the plugin related tasks KDE provides services which are dynamic loaded libraries. The secret ingredient that makes this class the plugin of that library is the call to the K_EXPORT_COMPONENT_FACTORY macro defined in kgenericfactory.h

    We now have a way to create instances of your shape (FooShapeFactory), a way to register them for the apps (KoShapeRegistry) and a plugin that can dynamically be loaded (FooShapePlugin). The last step is to create a .desktop file that describes your plugin and makes it findable by KOffice. For "X-KDE-Library" you have to set the library name you have already specified within K_EXPORT_COMPONENT_FACTORY().

    Example fooshape.desktop file:

    [Desktop Entry]
    Encoding=UTF-8
    Name=Foo Shape
    ServiceTypes=KOffice/Flake
    Type=Service
    X-KDE-Library=fooshapelibrary
    X-Flake-Version=1
    

    After installing that file in the KDE services directory and installing your plugin where the application can open it, your plugin is system wide known and can be loaded by KOffice.

    TODO; add example CMake file.

    Make your shape editable - create a tool

    To edit your shape in the GUI the user wants to select a tool and alter your shape. Therefore you have to provide a KoTool derived class. This class implements all edit actions that can be done on your shape but it is also possible to have more than one tool per shape.