Development/Tutorials/Akonadi/Application: Difference between revisions

    From KDE TechBase
    No edit summary
    m (Text replace - "<code cppqt>" to "<syntaxhighlight lang="cpp-qt">")
    Line 154: Line 154:
    A slot so we can delay its executing using a single shot timer, a technique called "Delayed Initialization", i.e. letting the application create and show its GUI as fast as possible and do any probably time consuming initialization after that.
    A slot so we can delay its executing using a single shot timer, a technique called "Delayed Initialization", i.e. letting the application create and show its GUI as fast as possible and do any probably time consuming initialization after that.


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    private slots:
    private slots:
         void fileNew();
         void fileNew();
    Line 162: Line 162:


    In '''detacher.cpp''' we need two new include directives:
    In '''detacher.cpp''' we need two new include directives:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <QtCore/QTimer>
    #include <QtCore/QTimer>


    Line 169: Line 169:


    and the slot's implementation
    and the slot's implementation
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    void Detacher::delayedInit()
    void Detacher::delayedInit()
    {
    {
    Line 183: Line 183:
    Since we want the slot to be executed delayed, add the following line at the end of the class' constructor
    Since we want the slot to be executed delayed, add the following line at the end of the class' constructor


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    QTimer::singleShot( 0, this, SLOT( delayedInit() ) );
    QTimer::singleShot( 0, this, SLOT( delayedInit() ) );
    </code>
    </code>
    Line 189: Line 189:
    Lets add a new public method to the view class. In '''detacherview.h''' add
    Lets add a new public method to the view class. In '''detacherview.h''' add


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    void createModels();
    void createModels();
    </code>
    </code>


    and for now with an empty body in '''detacherview.cpp''' (we will get to the implementation shortly)
    and for now with an empty body in '''detacherview.cpp''' (we will get to the implementation shortly)
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    void DetacherView::createModels()
    void DetacherView::createModels()
    {
    {
    Line 202: Line 202:
    and call it from '''Detacher::delayedInit()''' after the Akonadi start succeeded
    and call it from '''Detacher::delayedInit()''' after the Akonadi start succeeded


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    void Detacher::delayedInit()
    void Detacher::delayedInit()
    {
    {
    Line 227: Line 227:
    In '''detacherview.cpp'' add the following include directives
    In '''detacherview.cpp'' add the following include directives


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <akonadi/collectionfilterproxymodel.h>
    #include <akonadi/collectionfilterproxymodel.h>
    #include <akonadi/collectionmodel.h>
    #include <akonadi/collectionmodel.h>
    Line 235: Line 235:
    With that we can now properly implement the '''createModels()''' method:
    With that we can now properly implement the '''createModels()''' method:


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    void DetacherView::createModels()
    void DetacherView::createModels()
    {
    {
    Line 280: Line 280:
    Using this is quite simple. First we add a new include and a class forward declaration for '''detacherview.h'''
    Using this is quite simple. First we add a new include and a class forward declaration for '''detacherview.h'''


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <akonadi/item.h>
    #include <akonadi/item.h>
    class KJob;
    class KJob;
    Line 286: Line 286:


    In the private member section add an [http://api.kde.org/4.x-api/kdepimlibs-apidocs/akonadi/html/classAkonadi_1_1Item.html Item] member:
    In the private member section add an [http://api.kde.org/4.x-api/kdepimlibs-apidocs/akonadi/html/classAkonadi_1_1Item.html Item] member:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    private:
    private:
         Ui::detacherview_base ui_detacherview_base;
         Ui::detacherview_base ui_detacherview_base;
    Line 295: Line 295:
    and two new slots in the private slots section:
    and two new slots in the private slots section:


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    private slots:
    private slots:
         void switchColors();
         void switchColors();
    Line 305: Line 305:


    In the source file '''detacherview.cpp''' two new includes are required
    In the source file '''detacherview.cpp''' two new includes are required
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <akonadi/itemfetchjob.h>
    #include <akonadi/itemfetchjob.h>
    #include <akonadi/itemfetchscope.h>
    #include <akonadi/itemfetchscope.h>
    Line 311: Line 311:


    for the implementation of the two new slots
    for the implementation of the two new slots
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    void DetacherView::itemChanged( const Akonadi::Item &item )
    void DetacherView::itemChanged( const Akonadi::Item &item )
    {
    {
    Line 350: Line 350:
    To trigger the item fetching we connect the first new slot to a signal of the MessageView. In '''DetacherView::createModels()''' add another '''connect''' statement:
    To trigger the item fetching we connect the first new slot to a signal of the MessageView. In '''DetacherView::createModels()''' add another '''connect''' statement:


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    connect( ui_detacherview_base.messageView, SIGNAL( currentChanged( Akonadi::Item ) ),
    connect( ui_detacherview_base.messageView, SIGNAL( currentChanged( Akonadi::Item ) ),
             SLOT( itemChanged( Akonadi::Item ) ) );
             SLOT( itemChanged( Akonadi::Item ) ) );
    Line 363: Line 363:
    For the application this means two more includes and a typedef:
    For the application this means two more includes and a typedef:


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <kmime/kmime_message.h>
    #include <kmime/kmime_message.h>
    #include <boost/shared_ptr.hpp>
    #include <boost/shared_ptr.hpp>
    Line 373: Line 373:
    Equipped with this new tools we can extend '''DetacherView::itemFetchDone()''' by adding the following code at its end:
    Equipped with this new tools we can extend '''DetacherView::itemFetchDone()''' by adding the following code at its end:


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    if ( !mItem.hasPayload<MessagePtr>() ) {
    if ( !mItem.hasPayload<MessagePtr>() ) {
         kWarning() << "Item does not have message payload";
         kWarning() << "Item does not have message payload";
    Line 403: Line 403:
    First we need a new slot in the private slots section of '''detacherview.h'''
    First we need a new slot in the private slots section of '''detacherview.h'''


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    void detachAttachment();
    void detachAttachment();
    </code>
    </code>


    To implement the first sub task, saving the selected attachment into a file, the following new includes are needed in '''detacherview.cpp'''
    To implement the first sub task, saving the selected attachment into a file, the following new includes are needed in '''detacherview.cpp'''
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <kaction.h>
    #include <kaction.h>
    #include <kfiledialog.h>
    #include <kfiledialog.h>
    Line 415: Line 415:


    In the class' constructor create and connect an action and make it available as the attachment list widget's context menu:
    In the class' constructor create and connect an action and make it available as the attachment list widget's context menu:
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    KAction *detachAction = KStandardAction::cut( this, SLOT( detachAttachment() ), this );
    KAction *detachAction = KStandardAction::cut( this, SLOT( detachAttachment() ), this );
    detachAction->setText( i18nc( "@action:button remove an attachment from an email",
    detachAction->setText( i18nc( "@action:button remove an attachment from an email",
    Line 431: Line 431:


    This can be implemented like this
    This can be implemented like this
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    void DetacherView::detachAttachment()
    void DetacherView::detachAttachment()
    {
    {
    Line 503: Line 503:


    For the last step another job class is needed: [http://api.kde.org/4.x-api/kdepimlibs-apidocs/akonadi/html/classAkonadi_1_1ItemModifyJob.html ItemModifyJob]
    For the last step another job class is needed: [http://api.kde.org/4.x-api/kdepimlibs-apidocs/akonadi/html/classAkonadi_1_1ItemModifyJob.html ItemModifyJob]
    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    #include <akonadi/itemmodifyjob.h>
    #include <akonadi/itemmodifyjob.h>
    </code>
    </code>
    Line 509: Line 509:
    and can be implemented by appending the following code to '''DetacherView::detachAttachment()'''
    and can be implemented by appending the following code to '''DetacherView::detachAttachment()'''


    <code cppqt>
    <syntaxhighlight lang="cpp-qt">
    // remove attachment from message
    // remove attachment from message
    message->removeContent( selectedAttachment, true );
    message->removeContent( selectedAttachment, true );

    Revision as of 19:13, 29 June 2011


    Development/Tutorials/Akonadi/Application


    Using your own data type with Akonadi
    Tutorial Series   Akonadi Tutorial
    Previous   C++, Qt, KDE development environment
    What's Next  
    Further Reading   CMake, Akonadi Development Tools

    This tutorial will guide you through the steps of creating an Akonadi application, an end user program which displays and manipulates PIM data provided by Akonadi.

    If you are looking for a tutorial on how to provide data for Akonadi see the Akonadi Resource Tutorial

    Prerequisites

    Warning
    This section needs improvements: Please help us to

    cleanup confusing sections and fix sections which contain a todo


    Describe required versions and build setup

    Tutorial Example

    The goal of the tutorial is to create a simple application allowing a user to "detach" attachments from e-mails, i.e. save them to disk and remove them from the message.

    To stay concentrated on Akonadi related steps, all general application or GUI related steps will done in a minimal fashion.

    Preparation

    We can kick-start the application by using KAppTemplate, which can be found as KDE template generator in the development section of the K-menu, or by running kapptemplate in a terminal window.

    First, we select the KDE4 GUI Application in the C++ section of the program, give our project a name and continue through the following pages to complete the template creation.

    A look at the generated project top level directory shows us the following files: CMakeLists.txt detacher/ doc/ icons/ README src/ and the following files in sub directory src: CMakeLists.txt detacher.cpp detacher.desktop detacher.h detacher.kcfg detacherui.rc detacherview_base.ui detacherview.cpp detacherview.h main.cpp Messages.sh settings.kcfgc prefs_base.ui

    At this stage it is already possible to compile the application, so we can already check if our development environment is setup correctly by creating the build directory and having CMake either generate Makefiles or a KDevelop project file.

    Generating Makefiles

    From within the generated top level directory: mkdir build cd build cmake -DCMAKE_BUILD_TYPE=debugfull .. and run the build using make as usual.

    Generating a KDevelop project file

    From within the generated top level directory: mkdir build cd build cmake -DCMAKE_BUILD_TYPE=debugfull -G KDevelop3 .. and open the generated project with KDevelop and run the build process from there.

    Adjusting the main Qt Designer file

    Open the file detacherview_base.ui in Qt Designer and remove the example label. Remove the widget's main layout by clicking on the now empty widget and use the Break Layout menu entry in the Form menu.

    Now, from left to right, place two Tree Views and one List Widget side-by-side. Select all three boxes by holding SHIFT and clicking each box with the left mouse button. Use Layout Horizontally in a Splitter in the Form menu and then create a main layout by clicking on their parent widget and using Layout Vertically in the Form menu.

    A preview (Form -> Preview) should now look like this:

    Finally, change the object names for the three widgets by right clicking it and choosing Change objectName. The left widget should be named folderView, the middle one messageView and the right one attachmentList.

    In order to make it build again, edit the file detacherview.cpp and remove the code from the settingsChanged method. The application should now build again and be able to run.

    Note
    A lot of other code of this generated files is not necessary either, feel free to do more cleanup yourself.


    Promoting Views

    The KDE client library for Akonadi has a couple of convenience classes which make our life as application developers more pleasant. Two of these classes are specialized view widgets, one for displaying collections and one for displaying items.

    In order to use these widgets instead of ones from Qt we need to use a Qt Designer feature called "promoting". Right click the left widget and choose Promote to. Then fill the form like shown in the next screenshot.

    Click add and promote. Repeat the same for the middle widget, this time using Akonadi::ItemView as the class name and akonadi/itemview.h for the header file.

    This change also requires a change in the CMakeLists.txt file in the top level directory and in the one from the source directory.

    In the file from the top level directory add the following line find_package (KdepimLibs REQUIRED)

    and change

    include_directories( ${KDE4_INCLUDES} ${QT_INCLUDES} )

    into

    include_directories( ${KDE4_INCLUDES} ${KDEPIMLIBS_INCLUDE_DIRS} ${QT_INCLUDES} )

    In the file from the source directory the line target_link_libraries(detacher ${KDE4_KDEUI_LIBS})

    has to be changed to

    target_link_libraries(detacher ${KDE4_KDEUI_LIBS} ${KDEPIMLIBS_AKONADI_LIBS})

    Initialization

    Since the application will depend on Akonadi running, we can ensure this by starting it if it is not. This is handled by the Akonadi::Control class.

    In detacher.h we add another slot called delayedInit() which will perform this initialization. A slot so we can delay its executing using a single shot timer, a technique called "Delayed Initialization", i.e. letting the application create and show its GUI as fast as possible and do any probably time consuming initialization after that.

    <syntaxhighlight lang="cpp-qt"> private slots:

       void fileNew();
       void optionsPreferences();
       void delayedInit();
    

    In detacher.cpp we need two new include directives: <syntaxhighlight lang="cpp-qt">

    1. include <QtCore/QTimer>
    1. include <akonadi/control.h>

    and the slot's implementation <syntaxhighlight lang="cpp-qt"> void Detacher::delayedInit() {

       if ( !Akonadi::Control::start( this ) ) {
           qApp->exit( -1 );
           return;
       }
    

    }

    If the application fails to start Akonadi, it simply quits. A real application should probably tell the user about that though.

    Since we want the slot to be executed delayed, add the following line at the end of the class' constructor

    <syntaxhighlight lang="cpp-qt"> QTimer::singleShot( 0, this, SLOT( delayedInit() ) );

    Lets add a new public method to the view class. In detacherview.h add

    <syntaxhighlight lang="cpp-qt"> void createModels();

    and for now with an empty body in detacherview.cpp (we will get to the implementation shortly) <syntaxhighlight lang="cpp-qt"> void DetacherView::createModels() { }

    and call it from Detacher::delayedInit() after the Akonadi start succeeded

    <syntaxhighlight lang="cpp-qt"> void Detacher::delayedInit() {

       if ( !Akonadi::Control::start( this ) ) {
           qApp->exit( -1 );
           return;
       }
    
       m_view->createModels();
    

    }

    Connecting Views to Akonadi

    The actual data connection between our views and Akonadi is conveniently handled by specialized models which are also provided by the KDE client library for Akonadi.

    Actually, the data type the application will be working on, MIME messages, has an even further specialized model in a type specific sub library.

    To properly link this additional library change the source directory's CMakeLists.txt to this target_link_libraries(detacher ${KDE4_KDEUI_LIBS} ${KDEPIMLIBS_AKONADI_LIBS} ${KDEPIMLIBS_AKONADI_KMIME_LIBS})

    In 'detacherview.cpp add the following include directives

    <syntaxhighlight lang="cpp-qt">

    1. include <akonadi/collectionfilterproxymodel.h>
    2. include <akonadi/collectionmodel.h>
    3. include <akonadi/kmime/messagemodel.h>

    With that we can now properly implement the createModels() method:

    <syntaxhighlight lang="cpp-qt"> void DetacherView::createModels() {

       Akonadi::CollectionModel *collectionModel = new Akonadi::CollectionModel( this );
    
       Akonadi::CollectionFilterProxyModel *filterModel = new Akonadi::CollectionFilterProxyModel( this );
       filterModel->setSourceModel( collectionModel );
       filterModel->addMimeTypeFilter( QLatin1String( "message/rfc822" ) );
    
       Akonadi::ItemModel *itemModel = new Akonadi::MessageModel( this );
    
       ui_detacherview_base.folderView->setModel( filterModel );
       ui_detacherview_base.messageView->setModel( itemModel );
    
       connect( ui_detacherview_base.folderView, SIGNAL( currentChanged( Akonadi::Collection ) ),
                itemModel, SLOT( setCollection( Akonadi::Collection ) ) );
    

    }

    The first line creates a CollectionModel which will get all "folders" from Akonadi and keep this data updated as long as the application is running.

    However, since this includes collections for other data types as well, we need to filter for the data type we are interested in, MIME messages or in terms of MIME type message/rfc822. This kind of filtering is conveniently supplied in the form of a proxy model called CollectionFilterProxyModel.

    The next model, MessageModel is an ItemModel specialized in dealing with our data type, messages.

    Setting the models on the respective view almost completes the setup process, the only thing left is to connect the CollectionView to the MessageModel so it changes its data depending on which folder gets selected.

    At this stage the application is already capable of showing all your mail folders and headers of all your e-mails!

    Getting at the Attachments

    This task can be split into two steps:

    • Getting the message from Akonadi
    • Getting the attachments from the message

    Getting the message from Akonadi

    While we could have instructed the MessageModel to get all data for each of its entries, the proper way is to retrieve it only for the items that get selected. Moreover we want to do this asynchronously because we don't want to block the application even is a message is really huge.

    The KDE client library for Akonadi offers this kind of functionality through a job-based API, in this case ItemFetchJob.

    Using this is quite simple. First we add a new include and a class forward declaration for detacherview.h

    <syntaxhighlight lang="cpp-qt">

    1. include <akonadi/item.h>

    class KJob;

    In the private member section add an Item member: <syntaxhighlight lang="cpp-qt"> private:

       Ui::detacherview_base ui_detacherview_base;
    
       Akonadi::Item mItem;
    

    and two new slots in the private slots section:

    <syntaxhighlight lang="cpp-qt"> private slots:

       void switchColors();
       void settingsChanged();
    
       void itemChanged( const Akonadi::Item &item );
       void itemFetchDone( KJob *job );
    

    In the source file detacherview.cpp two new includes are required <syntaxhighlight lang="cpp-qt">

    1. include <akonadi/itemfetchjob.h>
    2. include <akonadi/itemfetchscope.h>

    for the implementation of the two new slots <syntaxhighlight lang="cpp-qt"> void DetacherView::itemChanged( const Akonadi::Item &item ) {

       // clear attachment list
       ui_detacherview_base.attachmentList->clear();
    
       // re-initialize the member we use for referencing the current item
       mItem = Akonadi::Item();
    
       // create fetch job and let it get the whole message
       Akonadi::ItemFetchJob *fetchJob = new Akonadi::ItemFetchJob( item, this );
       fetchJob->fetchScope().fetchFullPayload();
    
       connect( fetchJob, SIGNAL( result( KJob* ) ), SLOT( itemFetchDone( KJob* ) ) );
    

    }

    void DetacherView::itemFetchDone( KJob *job ) {

       Akonadi::ItemFetchJob *fetchJob = static_cast<Akonadi::ItemFetchJob*>( job );
       if ( job->error() ) {
           kError() << job->errorString();
           return;
       }
    
       if ( fetchJob->items().isEmpty() ) {
           kWarning() << "Job did not retrieve any items";
           return;
       }
    
       mItem = fetchJob->items().first();
       if ( !mItem.isValid() ) {
           kWarning() << "Item not valid";
           return;
       }
    

    }

    To trigger the item fetching we connect the first new slot to a signal of the MessageView. In DetacherView::createModels() add another connect statement:

    <syntaxhighlight lang="cpp-qt"> connect( ui_detacherview_base.messageView, SIGNAL( currentChanged( Akonadi::Item ) ),

            SLOT( itemChanged( Akonadi::Item ) ) );
    

    Getting the attachments from the message

    With the item now fully available, we can proceed to check whether the message has any attachments and if it has display them in the right most widget of our GUI.

    MIME messages in KDE are handled by the kmime library.

    For the application this means two more includes and a typedef:

    <syntaxhighlight lang="cpp-qt">

    1. include <kmime/kmime_message.h>
    2. include <boost/shared_ptr.hpp>

    typedef boost::shared_ptr<KMime::Message> MessagePtr;

    KMime::Message is the data type and we need the boost::shared_ptr to provide us with the value based behavior required by the item's payload methods.

    Equipped with this new tools we can extend DetacherView::itemFetchDone() by adding the following code at its end:

    <syntaxhighlight lang="cpp-qt"> if ( !mItem.hasPayload<MessagePtr>() ) {

       kWarning() << "Item does not have message payload";
       return;
    

    }

    const MessagePtr message = mItem.payload<MessagePtr>(); const KMime::Content::List attachments = message->attachments();

    foreach ( KMime::Content *attachment, attachments ) {

       const QString fileName = attachment->contentDisposition()->filename();
       if ( fileName.isEmpty() )
           continue;
    
       ui_detacherview_base.attachmentList->addItem( fileName );
    

    }

    Tip
    Exercise: Instead of using a QListView and simple strings, a model working on the single item would make the application a lot cleaner.


    Detaching an Attachment

    This task can again be split into sub tasks:

    • Saving the selected attachment into a file
    • Removing the selected attachment from the message

    Saving Attachment into File

    First we need a new slot in the private slots section of detacherview.h

    <syntaxhighlight lang="cpp-qt"> void detachAttachment();

    To implement the first sub task, saving the selected attachment into a file, the following new includes are needed in detacherview.cpp <syntaxhighlight lang="cpp-qt">

    1. include <kaction.h>
    2. include <kfiledialog.h>
    3. include <kstandardaction.h>

    In the class' constructor create and connect an action and make it available as the attachment list widget's context menu: <syntaxhighlight lang="cpp-qt"> KAction *detachAction = KStandardAction::cut( this, SLOT( detachAttachment() ), this ); detachAction->setText( i18nc( "@action:button remove an attachment from an email",

                                 "Detach..." ) );
    

    ui_detacherview_base.attachmentList->addAction( detachAction ); ui_detacherview_base.attachmentList->setContextMenuPolicy( Qt::ActionsContextMenu );

    Note
    Abusing a KDE standard action like this is not recommendable for real applications. For the scope of this tutorial we overlook this as it provides a quick way to setup an action.


    In case the i18nc function or the text used in it are unexpected, see the Semantic Markup Tutorial.

    Saving the attachment means we need to ask for a saving location, probably including a filename override and get the data from the message.

    This can be implemented like this <syntaxhighlight lang="cpp-qt"> void DetacherView::detachAttachment() {

       const QList<QListWidgetItem*> items = ui_detacherview_base.attachmentList->selectedItems();
    
       if ( items.isEmpty() ) {
           kDebug() << "No attachment selected";
           return;
       }
    
       if ( !mItem.hasPayload<MessagePtr>() ) {
           kWarning() << "Item no longer has a payload";
           return;
       }
    
       // get the selected list item's text. it is the attachment's filename
       const QString fileName = items.first()->text();
    
       // ask for a saving location, using the attachment's filename as a
       // suggestion
       KFileDialog dialog( KUrl(), QString(), this );
       dialog.setMode( KFile::Files | KFile::LocalOnly );
       dialog.setOperationMode( KFileDialog::Saving );
       dialog.setConfirmOverwrite( true );
       dialog.setSelection( fileName );
    
       if ( dialog.exec() != QDialog::Accepted ) {
           kDebug() << "Saving cancelled. Aborting detaching";
           return;
       }
    
       const QString saveFileName = dialog.selectedFile();
       if ( saveFileName.isEmpty() ) {
           kDebug() << "Empty target file name. Aborting detaching";
           return;
       }
    
       // find the corresponding attachment data structure
       const MessagePtr message = mItem.payload<MessagePtr>();
       const KMime::Content::List attachments = message->attachments();
    
       KMime::Content *selectedAttachment = 0;
       foreach ( KMime::Content *attachment, attachments ) {
           if ( fileName == attachment->contentDisposition()->filename() ) {
               selectedAttachment = attachment;
               break;
           }
       }
    
       if ( selectedAttachment == 0 ) {
           kWarning() << "Selected attachment file name no longer available in message. Aborting detaching";
           return;
       }
    
       QFile file( saveFileName );
       if ( !file.open( QIODevice::WriteOnly ) ) {
           kError() << "Cannot open target file for writing. Aborting detaching.";
           return;
       }
    
       file.write( selectedAttachment->decodedContent() );
       file.close();
    

    }

    Note
    Ideally we would have a direct mapping of file name to attachment pointer, e.g. when using a model working on the Akonadi item.


    Removing the Attachment

    After successfully saving the attachment we can proceed with removing the attachment from the message data and finally update the item in Akonadi to make it a permanent change.

    For the last step another job class is needed: ItemModifyJob <syntaxhighlight lang="cpp-qt">

    1. include <akonadi/itemmodifyjob.h>

    and can be implemented by appending the following code to DetacherView::detachAttachment()

    <syntaxhighlight lang="cpp-qt"> // remove attachment from message message->removeContent( selectedAttachment, true );

    // and from the listwidget delete items.first();

    // prepare Akonadi update Akonadi::Item item( mItem ); item.setPayload<MessagePtr>( message );

    Akonadi::ItemModifyJob *modifyJob = new Akonadi::ItemModifyJob( item, this ); if ( !modifyJob->exec() ) {

       kError() << modifyJob->errorString();
       return;
    

    }