Development/Tutorials/Plasma4/GettingStarted: Difference between revisions

    From KDE TechBase
    No edit summary
    (62 intermediate revisions by 21 users not shown)
    Line 1: Line 1:
    {{TutorialBrowser|
    {{TutorialBrowser|


    series=Plasma Tutorial|
    series=[[Development/Tutorials/Plasma|Plasma Tutorial]]|


    name=Creating your first Plasmoid|
    name=Creating your first Plasmoid|


    pre=[http://mindview.net/Books/TICPP/ThinkingInCPP2e.html C++], [http://www.trolltech.com/products/qt/ Qt], [[Getting_Started/Build/KDE4|KDE4 development environment]]|
    pre=[http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list C++], [http://www.trolltech.com/products/qt/ Qt], [[Getting_Started/Build|KDE4 development environment]]|


    next=|  
    next=[[Development/Tutorials/Plasma/GettingStarted..Some_More]]|  


    reading=[[Development/Tutorials/CMake|CMake]]
    reading=[[Development/Tutorials/CMake|CMake]]
    }}
    }}
    ==Abstract==
    ==Abstract==
    We're going to start creating a simple plasmoid in this tutorial, to keep things simple we will only create a static plasmoid, it will contain the following items.
    This tutorial needs KDE 4.2 (or newer) to build.
    We are going to create a simple plasmoid in this tutorial. To keep things simple, we will only create a static plasmoid which will contain the following items:


    * An SVG Image
    * An SVG Image
    Line 22: Line 25:
    == The Code ==
    == The Code ==
    === The .desktop file ===
    === The .desktop file ===
    Every Plasmoid needs a .desktop file to tell plasma how they should be started, and what name they carry.  
    Every Plasmoid needs a .desktop file to tell plasma how it should be started and what name it carries.  


    '''plasma-applet-tutorial1.desktop'''
    '''plasma-applet-tutorial1.desktop'''
    <code ini>
    <syntaxhighlight lang="ini">
    [Desktop Entry]
    [Desktop Entry]
    Encoding=UTF-8
    Name=Tutorial 1
    Name=Tutorial 1
    Comment=Plasma Tutorial 1
    Comment=Plasma Tutorial 1
    Line 34: Line 36:


    X-KDE-Library=plasma_applet_tutorial1
    X-KDE-Library=plasma_applet_tutorial1
    X-KDE-PluginInfo-Name=tutorial1
    X-KDE-PluginInfo-Category=Examples
    X-KDE-PluginInfo-Author=Bas Grolleman
    X-KDE-PluginInfo-Author=Bas Grolleman
    X-KDE-PluginInfo-Name=plasma_applet_tutorial1
    X-KDE-PluginInfo-Version=0.1
    X-KDE-PluginInfo-Version=0.1
    X-KDE-PluginInfo-Website=http://plasma.kde.org/
    X-KDE-PluginInfo-Website=http://plasma.kde.org/
    X-KDE-PluginInfo-Category=Examples
    X-KDE-PluginInfo-Depends=
    X-KDE-PluginInfo-Depends=
    X-KDE-PluginInfo-License=GPL
    X-KDE-PluginInfo-License=GPL
    X-KDE-PluginInfo-EnabledByDefault=true
    X-KDE-PluginInfo-EnabledByDefault=true
    </code>
    </syntaxhighlight>


    The most important bits are the '''X-KDE-Library''' and '''X-KDE-PluginInfo-Name''', they are the "glue" between your class and plasma, without it, nothing will start.  For '''X-KDE-PluginInfo-Category''', refer to the [[Projects/Plasma/PIG | PIG]].
    The most important bits are the '''X-KDE-Library''' and '''X-KDE-PluginInfo-Name''', they are the "glue" between your class and plasma, without it, nothing will start.  For '''X-KDE-PluginInfo-Category''', refer to the [[Projects/Plasma/PIG | PIG]].


    === The header file ===
    === The header file ===
    This is the example header file, I will add lots of comments in the code to explain everything.
    This is the example header file. Comments have been added in the code for clarity.


    '''plasma-tutorial1.h'''
    '''plasma-tutorial1.h'''
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    // Here we avoid loading the header multiple times
    // Here we avoid loading the header multiple times
    #ifndef Tutorial1_HEADER
    #ifndef Tutorial1_HEADER
    Line 57: Line 59:
    // We need the Plasma Applet headers
    // We need the Plasma Applet headers
    #include <KIcon>
    #include <KIcon>
     
    #include <Plasma/Applet>
    #include <Plasma/Applet>
    #include <Plasma/Svg>
    #include <Plasma/Svg>
     
    class QSizeF;
    class QSizeF;
     
    // Define our plasma Applet
    // Define our plasma Applet
    class PlasmaTutorial1 : public Plasma::Applet
    class PlasmaTutorial1 : public Plasma::Applet
    Line 71: Line 73:
             PlasmaTutorial1(QObject *parent, const QVariantList &args);
             PlasmaTutorial1(QObject *parent, const QVariantList &args);
             ~PlasmaTutorial1();
             ~PlasmaTutorial1();
     
             // The paintInterface procedure paints the applet to screen
             // The paintInterface procedure paints the applet to screen
             void paintInterface(QPainter *painter,
             void paintInterface(QPainter *p,
                     const QStyleOptionGraphicsItem *option,
                     const QStyleOptionGraphicsItem *option,
                     const QRect& contentsRect);
                     const QRect& contentsRect);
            void setContentSize(const QSizeF& size);
    void init();
            QSizeF contentSizeHint() const;


         private:
         private:
             Plasma::Svg m_svg;
             Plasma::Svg m_svg;
             KIcon m_icon;
             KIcon m_icon;
    QSizeF m_size;
    };
    };
     
    // This is the command that links your applet to the .desktop file
    K_EXPORT_PLASMA_APPLET(tutorial1, PlasmaTutorial1)
    #endif
    #endif
    </code>
    </syntaxhighlight>


    ==== QRectF boundingRect() ====
    The <tt>boundingRect()</tt> function tells plasma the actual size of the plasmoid, this is important because we need to know how much space is taken on screen.
    {{tip|
    If you have issues with your plasmoid leaving pixels behind when dragging this is almost always a result of a incorrect boundingRect()
    }}


    ==== void paintInterface(...) ====
    You could call this the main function, since this paints the plasmoid on screen, here you define how you want your plasmoid to look.


    ==== K_EXPORT_PLASMA_APPLET ( <name>, <class> ) ====
    ==== void paintInterface(QRectF contentsRect) ====
    This is a small but very important part, this links your classname to the applet name in the .desktop file, if your applet doesn't seem to be loaded than chances are there is a difference between this and your .desktop file
    This can be considered the main function since it paints the plasmoid on to the screen. Here, you define how you want your plasmoid to look.
    You should only paint in the boundaries defined by contentsRect and avoid using geometry(). When a plasmoid does not have a standard background, e.g. when it's disabled with a setBackgroundHints() call or it's in the panel, geometry() and boundingRect() behave the same; however, when the standard background is enabled (the usual case), the appplet will have a margin where it should not be painted


    {{tip|
    The K_EXPORT_PLASMA_APPLET adds "plasma_applet_", please pay attention to this when setting up your .desktop file to avoid a name difference
    }}


    === The actual work file ===
    === The actual work file ===
    Line 110: Line 99:


    '''plasma-tutorial1.cpp'''
    '''plasma-tutorial1.cpp'''
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include "plasma-tutorial1.h"
    #include "plasma-tutorial1.h"
    #include <QPainter>
    #include <QPainter>
    #include <QFontMetrics>
    #include <QFontMetrics>
    #include <QSizeF>
    #include <QSizeF>
     
    #include <plasma/svg.h>
    #include <plasma/svg.h>
    #include <plasma/theme.h>
    #include <plasma/theme.h>


    PlasmaTutorial1::PlasmaTutorial1(QObject *parent, const QVariantList &args)
    PlasmaTutorial1::PlasmaTutorial1(QObject *parent, const QVariantList &args)
         : Plasma::Applet(parent, args),
         : Plasma::Applet(parent, args),
         m_svg("widgets/background", this),
         m_svg(this),
        m_size(200,200),
         m_icon("document")
         m_icon("document")
    {
    {
        m_svg.setImagePath("widgets/background");
         // this will get us the standard applet background, for free!
         // this will get us the standard applet background, for free!
         setDrawStandardBackground(true);
         setBackgroundHints(DefaultBackground);
         m_svg.setContentType(Plasma::Svg::SingleImage);
         resize(200, 200);
     
        //m_svg->setContentType(Plasma::Svg::SingleImage);
     
        // A small demonstration of the setFailedToLaunch function
        if (m_icon.isNull()) {
            setFailedToLaunch(true, "No world to say hello");
        }
    }
    }
       
       
    PlasmaTutorial1::~PlasmaTutorial1()
    PlasmaTutorial1::~PlasmaTutorial1()
    {
    {
         if (failedToLaunch()) {
         if (hasFailedToLaunch()) {
             // Do some cleanup here
             // Do some cleanup here
         } else {
         } else {
             // Save settings
             // Save settings
         }
         }
    }
    void PlasmaTutorial1::setContentSize(const QSizeF& size)
    {
        m_size = size;
    }
    }


    QSizeF PlasmaTutorial1::contentSizeHint() const
    void PlasmaTutorial1::init()
    {
    {
         //If you want to change the size of your plasmoid, update m_size and call updateGeometry() afterwards.
         return m_size;
         // A small demonstration of the setFailedToLaunch function
    }
        if (m_icon.isNull()) {
            setFailedToLaunch(true, "No world to say hello");
         }
    }  
       
       
    void PlasmaTutorial1::paintInterface(QPainter *p,
    void PlasmaTutorial1::paintInterface(QPainter *p,
    Line 162: Line 145:
         p->setRenderHint(QPainter::SmoothPixmapTransform);
         p->setRenderHint(QPainter::SmoothPixmapTransform);
         p->setRenderHint(QPainter::Antialiasing);
         p->setRenderHint(QPainter::Antialiasing);
     
         // Now we draw the applet, starting with our svg
         // Now we draw the applet, starting with our svg
         m_svg.resize((int)contentsRect.width(), (int)contentsRect.height());
         m_svg.resize((int)contentsRect.width(), (int)contentsRect.height());
    Line 168: Line 151:
       
       
         // We place the icon and text
         // We place the icon and text
         p->drawPixmap(20, 0, m_icon.pixmap((int)contentsRect.width() - 40));
         p->drawPixmap(7, 0, m_icon.pixmap((int)contentsRect.width(),(int)contentsRect.width()-14));
         p->save();
         p->save();
         p->setPen(Qt::white);
         p->setPen(Qt::white);
    Line 176: Line 159:
         p->restore();
         p->restore();
    }
    }
    // This is the command that links your applet to the .desktop file
    K_EXPORT_PLASMA_APPLET(tutorial1, PlasmaTutorial1)
       
       
    #include "plasma-tutorial1.moc"
    #include "plasma-tutorial1.moc"
    </code>
    </syntaxhighlight>
     
    ==== K_EXPORT_PLASMA_APPLET ( <name>, <class> ) ====
    This is a small but very important part that links your classname to the applet name in the .desktop file. If your applet doesn't seem to get loaded, there may be a difference between this declaration and your .desktop file
     
    {{tip|
    The K_EXPORT_PLASMA_APPLET adds "plasma_applet_", please pay attention to this when setting up your .desktop file to avoid a name difference
    }}


    ==== Plasma/Svg ====
    ==== Plasma/Svg ====
    As you can see in the example code where using the {{class|Plasma::Svg}} object, there are some important things to note here.
    As you can see in the example code we are using the {{class|Plasma::Svg}} object, there are some important things to note here.


    First we're using a relative path '''widgets/background''' which causes {{class|Plasma::Svg}} to use {{class|Plasma::Theme}} to locate the SVG data. While {{class|Plasma::Svg}} does support loading arbitrary files when passed an absolute path, use relative paths from the theme as often as possible as it makes Plasma skinable and the individual plasmoids look like a combined whole instead of a group of separate unrelated applications. You can see a list of available image components on the [[Projects/Plasma/Theme|Plasma Theme page]].
    First we're using a relative path '''widgets/background''' which causes {{class|Plasma::Svg}} to use {{class|Plasma::Theme}} to locate the SVG data. While {{class|Plasma::Svg}} does support loading arbitrary files when passed an absolute path, use relative paths from the theme as often as possible as it makes Plasma skinable and the individual plasmoids look like a combined whole instead of a group of separate unrelated applications. You can see a list of available image components on the [[Projects/Plasma/Theme|Plasma Theme page]].


    Next, note how we set the content type of the SVG object to <tt>Plasma::Svg::SingleImage</tt>. This is actually the default so technically we didn't have to set it manually. It tells the SVG object that the what we have loaded is a single image in the file.
    In either mode, {{class|Plasma::Svg}} can be used to draw a subset of the SVG file by passing it an element id that appears in the SVG document. As a good example, if you open the clock.svg file that ships with the default theme, you will see that it has a background, 3 needles (hour, minute and seconds) and a foreground (the glass). Due to the ability to put all the elements in one file the SVG file shows a clock. This is much nicer for artists compared to editing 5 separate files that they have to imagine on top of each other, and much nicer for performance as only one SVG renderer and one file read from disk is necessary.
     
    The alternative option, <tt>Plasma::Svg::ImageSet</tt> tells {{class|Plasma::Svg}} that there are multiple individual images in the SVG file. For instance, one might use this method to store a deck of cards in one SVG file. This is useful since we only require a single SVG file to hold all the images.


    In either mode, {{class|Plasma::Svg}} can be used to draw a subset of the SVG file by passing it an element id that appears in the SVG document. As a good example, if you open the clock.svg file that ships with the default theme, you will see that it has a background, 3 handles (hour, minute and seconds) and a foreground (the glass). Due to the ability to put all the elements in one file the SVG file shows a clock. This is much nicer for artists compared to editting 5 separate files that they have to imagine on top of each other, and much nicer for performance as only one SVG renderer and one file read from disk is necessary.
    ==== setBackgroundHints(DefaultBackground) ====
    Since drawing a background is a common function there is a fast and easier way of doing it. By adding <tt>setBackgroundHints(DefaultBackground)</tt> to the code, the default Plasma background gets drawn behind your plasmoid. This not only saves you time and code, but creates a more consistent presentation for the user.


    ==== setDrawStandardBackground(bool) ====
    ==== The init() method ====
    Since drawing a background is a common function there is fast and easier way of doing it. By adding <tt>setDrawStandardBackground(true)</tt> to the code, the default Plasma background gets drawn behind your plasmoid. This not only saves you time and code, but creates a more consistent presentation for the user.
    In the constructor you only tell plasma about the background and configuration file if any. You also set the start size in the constructor. After that, plasma will take care of any resizing and you never have to worry about size. In the <tt>init()</tt> method you initialize everything that needs to be initialized such as reading config data for example.


    ==== failedToLaunch() ====
    ==== hasFailedToLaunch() ====
    If for some reason, the applet fails to get up on its feet (the library couldn't be loaded, necessary hardware support wasn't found, etc..) this method returns true. Using this function gives your application a chance to cleanup before quiting.  
    If for some reason, the applet fails to get up on its feet (the library couldn't be loaded, necessary hardware support wasn't found, etc..) this method returns true. Using this function gives your application a chance to cleanup before quiting.  


    Line 200: Line 192:
    When your application is unable to start, this function allows you to inform Plasma and give an optional reason why. Plasma will then draw a standardized error interface to inform the user of the situation and your applet will not be called upon to do any drawing on its own from that point forward. If your plasmoid becomes more complex and depends on multiple factors this is the nicest way to cleanup.
    When your application is unable to start, this function allows you to inform Plasma and give an optional reason why. Plasma will then draw a standardized error interface to inform the user of the situation and your applet will not be called upon to do any drawing on its own from that point forward. If your plasmoid becomes more complex and depends on multiple factors this is the nicest way to cleanup.


    ==== dataUpdated ====
    ==== dataUpdated(const QString &source, const Plasma::DataEngine::Data &data) ====
    If you would connect to any of plasma's data-engines you would have to implement a function called dataUpdated in your plasmoid. The latter is called if the data-engine sends you data, i.e. your plasmoid should recalculate its contents.
    If you would like to connect to any of Plasma's DataEngines, you can implement the dataUpdated method in your Plasmoid. When a DataEngine is connected directly to your Applet subclass, dataUpdated will be called when the DataEngine sends you updated data.
     
    ==== Determine the applet size and geometry: geometry() and contentsRect() ====
    If you need to know, in your applet code, what the applet size and geometry is, call contentsRect() and contentsRect().size(). Avoid calling geometry() and size() because they don't take into account the margin's size set by the applets default background.
    Also avoid using absolute numbers to position items in the applet like QPoint(0, 0) to indicate the top-left point of your applet, instead use contentsRect().topLeft().


    === Building it all, the CMakeLists.txt ===
    === Building it all, the CMakeLists.txt ===
    Finally, to put everything together you need to build everything, to tell cmake what needs to go where there is the CMakeLists.txt file.  
    Finally, to put everything together you need to build everything. To tell cmake what needs to go where there is the CMakeLists.txt file.  


    For more details on CMake please read [[Development/Tutorials/CMake]]
    For more details on CMake please read [[Development/Tutorials/CMake]]


    <code bash>
    <syntaxhighlight lang="bash">
    # Project Needs a name ofcourse
    # Project Needs a name ofcourse
    project(plasma-tutorial1)
    project(plasma-tutorial1)
    Line 215: Line 211:
    find_package(KDE4 REQUIRED)
    find_package(KDE4 REQUIRED)
    include(KDE4Defaults)
    include(KDE4Defaults)
    find_package(Plasma REQUIRED)


    add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
    add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
    Line 230: Line 225:
    kde4_add_plugin(plasma_applet_tutorial1 ${tutorial1_SRCS})
    kde4_add_plugin(plasma_applet_tutorial1 ${tutorial1_SRCS})
    target_link_libraries(plasma_applet_tutorial1  
    target_link_libraries(plasma_applet_tutorial1  
                           ${PLASMA_LIBS} ${KDE4_KDEUI_LIBS})
                           ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS})


    install(TARGETS plasma_applet_tutorial1
    install(TARGETS plasma_applet_tutorial1
    Line 237: Line 232:
    install(FILES plasma-applet-tutorial1.desktop
    install(FILES plasma-applet-tutorial1.desktop
             DESTINATION ${SERVICES_INSTALL_DIR})
             DESTINATION ${SERVICES_INSTALL_DIR})
    </code>
    </syntaxhighlight>


    == Testing the Applet ==
    == Testing the Applet ==
    If your current Development Environment differs from the Test Installation, you have to  
    If your current Development Environment differs from the Test Installation, you have to run cmake with -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`. Then run make. If succesfull the applet can be installed by running sudo make install
     
    or
    * cp ./lib/plasma_applet_tutorial1.so $KDEDIR/lib  
    * cp ./lib/plasma_applet_tutorial1.so $KDEDIR/lib/kde4
    * cp ./plasma-applet-tutorial1.desktop $KDEDIR/share/kde4/services/
    * cp ./plasma-applet-tutorial1.desktop $KDEDIR/share/kde4/services/


    and run kbuildsycoca.
    and run kbuildsycoca4 (so that KDE apps will know about the new desktop files).
    In order to test your Applet you can use the '''plasmoidviewer''' program:
    In order to test your Applet you can use the '''plasmoidviewer''' program:
    <code bash>
    <syntaxhighlight lang="bash">
    kbuildsycoca4 #Needed once to let KDE know there is a new plugin
    plasmoidviewer applet_name
    plasmoidviewer applet_name
    </code>
    </syntaxhighlight>
    You can even view your Applet in a small desktop using plasmoidviewer:
    <syntaxhighlight lang="bash">
    plasmoidviewer -c desktop applet_name
    </syntaxhighlight>


    Where '''applet_name''' is the value specified into .desktop for the '''X-KDE-PluginInfo-Name''' key.
    Where '''applet_name''' is the value specified into .desktop for the '''X-KDE-PluginInfo-Name''' key.


    Otherwise you can restart the KDE session, so the Applet will be displayed in the Applet Browser.
    Otherwise you can restart plasma, so the Applet will be displayed in the Applet Browser:
    <syntaxhighlight lang="bash">
    kbuildsycoca4
    kquitapp plasma-desktop
    plasma-desktop
    </syntaxhighlight>
     
    If that doesn't work you will have to restart your KDE session by logging out and back in. Or try to set export KDEDIRS=/usr/local:'kde4-config --prefix' and run kbuildsycoca4 again
     
    == Wow that was fun! ==
     
    Now that you made your first C++ Plasmoid, if you would like to continue down the path of enlightenment, check out: [[Development/Tutorials/Plasma/GettingStarted..Some_More]]

    Revision as of 09:10, 14 July 2012


    Creating your first Plasmoid
    Tutorial Series   Plasma Tutorial
    Previous   C++, Qt, KDE4 development environment
    What's Next   Development/Tutorials/Plasma/GettingStarted..Some_More
    Further Reading   CMake

    Abstract

    This tutorial needs KDE 4.2 (or newer) to build. We are going to create a simple plasmoid in this tutorial. To keep things simple, we will only create a static plasmoid which will contain the following items:

    • An SVG Image
    • Icon
    • Some nice text

    The Code

    The .desktop file

    Every Plasmoid needs a .desktop file to tell plasma how it should be started and what name it carries.

    plasma-applet-tutorial1.desktop

    [Desktop Entry]
    Name=Tutorial 1
    Comment=Plasma Tutorial 1
    Type=Service
    ServiceTypes=Plasma/Applet
    
    X-KDE-Library=plasma_applet_tutorial1
    X-KDE-PluginInfo-Name=tutorial1
    X-KDE-PluginInfo-Category=Examples
    X-KDE-PluginInfo-Author=Bas Grolleman
    X-KDE-PluginInfo-Email=[email protected]
    X-KDE-PluginInfo-Version=0.1
    X-KDE-PluginInfo-Website=http://plasma.kde.org/
    X-KDE-PluginInfo-Depends=
    X-KDE-PluginInfo-License=GPL
    X-KDE-PluginInfo-EnabledByDefault=true
    

    The most important bits are the X-KDE-Library and X-KDE-PluginInfo-Name, they are the "glue" between your class and plasma, without it, nothing will start. For X-KDE-PluginInfo-Category, refer to the PIG.

    The header file

    This is the example header file. Comments have been added in the code for clarity.

    plasma-tutorial1.h

    // Here we avoid loading the header multiple times
    #ifndef Tutorial1_HEADER
    #define Tutorial1_HEADER
    // We need the Plasma Applet headers
    #include <KIcon>
     
    #include <Plasma/Applet>
    #include <Plasma/Svg>
     
    class QSizeF;
     
    // Define our plasma Applet
    class PlasmaTutorial1 : public Plasma::Applet
    {
        Q_OBJECT
        public:
            // Basic Create/Destroy
            PlasmaTutorial1(QObject *parent, const QVariantList &args);
            ~PlasmaTutorial1();
     
            // The paintInterface procedure paints the applet to screen
            void paintInterface(QPainter *p,
                    const QStyleOptionGraphicsItem *option,
                    const QRect& contentsRect);
    	void init();
    
        private:
            Plasma::Svg m_svg;
            KIcon m_icon;
    };
    
    #endif
    


    void paintInterface(QRectF contentsRect)

    This can be considered the main function since it paints the plasmoid on to the screen. Here, you define how you want your plasmoid to look. You should only paint in the boundaries defined by contentsRect and avoid using geometry(). When a plasmoid does not have a standard background, e.g. when it's disabled with a setBackgroundHints() call or it's in the panel, geometry() and boundingRect() behave the same; however, when the standard background is enabled (the usual case), the appplet will have a margin where it should not be painted


    The actual work file

    Here is the body of the function, again with a lot of comments in between.

    plasma-tutorial1.cpp

    #include "plasma-tutorial1.h"
    #include <QPainter>
    #include <QFontMetrics>
    #include <QSizeF>
     
    #include <plasma/svg.h>
    #include <plasma/theme.h>
    
     
    PlasmaTutorial1::PlasmaTutorial1(QObject *parent, const QVariantList &args)
        : Plasma::Applet(parent, args),
        m_svg(this),
        m_icon("document")
    {
        m_svg.setImagePath("widgets/background");
        // this will get us the standard applet background, for free!
        setBackgroundHints(DefaultBackground);
        resize(200, 200);
    }
     
    
    PlasmaTutorial1::~PlasmaTutorial1()
    {
        if (hasFailedToLaunch()) {
            // Do some cleanup here
        } else {
            // Save settings
        }
    }
    
    void PlasmaTutorial1::init()
    {
     
        // A small demonstration of the setFailedToLaunch function
        if (m_icon.isNull()) {
            setFailedToLaunch(true, "No world to say hello");
        }
    } 
     
     
    void PlasmaTutorial1::paintInterface(QPainter *p,
            const QStyleOptionGraphicsItem *option, const QRect &contentsRect)
    {
        p->setRenderHint(QPainter::SmoothPixmapTransform);
        p->setRenderHint(QPainter::Antialiasing);
     
        // Now we draw the applet, starting with our svg
        m_svg.resize((int)contentsRect.width(), (int)contentsRect.height());
        m_svg.paint(p, (int)contentsRect.left(), (int)contentsRect.top());
     
        // We place the icon and text
        p->drawPixmap(7, 0, m_icon.pixmap((int)contentsRect.width(),(int)contentsRect.width()-14));
        p->save();
        p->setPen(Qt::white);
        p->drawText(contentsRect,
                    Qt::AlignBottom | Qt::AlignHCenter,
                    "Hello Plasmoid!");
        p->restore();
    }
    
    // This is the command that links your applet to the .desktop file
    K_EXPORT_PLASMA_APPLET(tutorial1, PlasmaTutorial1)
     
    #include "plasma-tutorial1.moc"
    

    K_EXPORT_PLASMA_APPLET ( <name>, <class> )

    This is a small but very important part that links your classname to the applet name in the .desktop file. If your applet doesn't seem to get loaded, there may be a difference between this declaration and your .desktop file

    Tip
    The K_EXPORT_PLASMA_APPLET adds "plasma_applet_", please pay attention to this when setting up your .desktop file to avoid a name difference


    Plasma/Svg

    As you can see in the example code we are using the Plasma::Svg object, there are some important things to note here.

    First we're using a relative path widgets/background which causes Plasma::Svg to use Plasma::Theme to locate the SVG data. While Plasma::Svg does support loading arbitrary files when passed an absolute path, use relative paths from the theme as often as possible as it makes Plasma skinable and the individual plasmoids look like a combined whole instead of a group of separate unrelated applications. You can see a list of available image components on the Plasma Theme page.

    In either mode, Plasma::Svg can be used to draw a subset of the SVG file by passing it an element id that appears in the SVG document. As a good example, if you open the clock.svg file that ships with the default theme, you will see that it has a background, 3 needles (hour, minute and seconds) and a foreground (the glass). Due to the ability to put all the elements in one file the SVG file shows a clock. This is much nicer for artists compared to editing 5 separate files that they have to imagine on top of each other, and much nicer for performance as only one SVG renderer and one file read from disk is necessary.

    setBackgroundHints(DefaultBackground)

    Since drawing a background is a common function there is a fast and easier way of doing it. By adding setBackgroundHints(DefaultBackground) to the code, the default Plasma background gets drawn behind your plasmoid. This not only saves you time and code, but creates a more consistent presentation for the user.

    The init() method

    In the constructor you only tell plasma about the background and configuration file if any. You also set the start size in the constructor. After that, plasma will take care of any resizing and you never have to worry about size. In the init() method you initialize everything that needs to be initialized such as reading config data for example.

    hasFailedToLaunch()

    If for some reason, the applet fails to get up on its feet (the library couldn't be loaded, necessary hardware support wasn't found, etc..) this method returns true. Using this function gives your application a chance to cleanup before quiting.

    setFailedToLaunch(bool, QString)

    When your application is unable to start, this function allows you to inform Plasma and give an optional reason why. Plasma will then draw a standardized error interface to inform the user of the situation and your applet will not be called upon to do any drawing on its own from that point forward. If your plasmoid becomes more complex and depends on multiple factors this is the nicest way to cleanup.

    dataUpdated(const QString &source, const Plasma::DataEngine::Data &data)

    If you would like to connect to any of Plasma's DataEngines, you can implement the dataUpdated method in your Plasmoid. When a DataEngine is connected directly to your Applet subclass, dataUpdated will be called when the DataEngine sends you updated data.

    Determine the applet size and geometry: geometry() and contentsRect()

    If you need to know, in your applet code, what the applet size and geometry is, call contentsRect() and contentsRect().size(). Avoid calling geometry() and size() because they don't take into account the margin's size set by the applets default background. Also avoid using absolute numbers to position items in the applet like QPoint(0, 0) to indicate the top-left point of your applet, instead use contentsRect().topLeft().

    Building it all, the CMakeLists.txt

    Finally, to put everything together you need to build everything. To tell cmake what needs to go where there is the CMakeLists.txt file.

    For more details on CMake please read Development/Tutorials/CMake

    # Project Needs a name ofcourse
    project(plasma-tutorial1)
    
    # Find the required Libaries
    find_package(KDE4 REQUIRED)
    include(KDE4Defaults)
    
    add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
    include_directories(
       ${CMAKE_SOURCE_DIR}
       ${CMAKE_BINARY_DIR}
       ${KDE4_INCLUDES}
       )
    
    # We add our source code here
    set(tutorial1_SRCS plasma-tutorial1.cpp)
    
    # Now make sure all files get to the right place
    kde4_add_plugin(plasma_applet_tutorial1 ${tutorial1_SRCS})
    target_link_libraries(plasma_applet_tutorial1 
                          ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS})
    
    install(TARGETS plasma_applet_tutorial1
            DESTINATION ${PLUGIN_INSTALL_DIR})
    
    install(FILES plasma-applet-tutorial1.desktop
            DESTINATION ${SERVICES_INSTALL_DIR})
    

    Testing the Applet

    If your current Development Environment differs from the Test Installation, you have to run cmake with -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`. Then run make. If succesfull the applet can be installed by running sudo make install or

    • cp ./lib/plasma_applet_tutorial1.so $KDEDIR/lib/kde4
    • cp ./plasma-applet-tutorial1.desktop $KDEDIR/share/kde4/services/

    and run kbuildsycoca4 (so that KDE apps will know about the new desktop files). In order to test your Applet you can use the plasmoidviewer program:

    kbuildsycoca4 #Needed once to let KDE know there is a new plugin
    plasmoidviewer applet_name
    

    You can even view your Applet in a small desktop using plasmoidviewer:

    plasmoidviewer -c desktop applet_name
    

    Where applet_name is the value specified into .desktop for the X-KDE-PluginInfo-Name key.

    Otherwise you can restart plasma, so the Applet will be displayed in the Applet Browser:

    kbuildsycoca4
    kquitapp plasma-desktop
    plasma-desktop
    

    If that doesn't work you will have to restart your KDE session by logging out and back in. Or try to set export KDEDIRS=/usr/local:'kde4-config --prefix' and run kbuildsycoca4 again

    Wow that was fun!

    Now that you made your first C++ Plasmoid, if you would like to continue down the path of enlightenment, check out: Development/Tutorials/Plasma/GettingStarted..Some_More