~ubuntu-branches/ubuntu/karmic/kdepim/karmic-backports

« back to all changes in this revision

Viewing changes to akonadi/resources/shared/singlefileresourceconfigdialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2009-07-10 06:34:50 UTC
  • mfrom: (1.1.40 upstream)
  • Revision ID: james.westby@ubuntu.com-20090710063450-neojgew2fh0n3y0u
Tags: 4:4.2.96-0ubuntu1
* New upstream release
* Bump kde build-deps to 4.2.96

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
    Copyright (c) 2008 Bertjan Broeksema <b.broeksema@kdemail.org>
3
 
    Copyright (c) 2008 Volker Krause <vkrause@kde.org>
4
 
 
5
 
    This library is free software; you can redistribute it and/or modify it
6
 
    under the terms of the GNU Library General Public License as published by
7
 
    the Free Software Foundation; either version 2 of the License, or (at your
8
 
    option) any later version.
9
 
 
10
 
    This library is distributed in the hope that it will be useful, but WITHOUT
11
 
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12
 
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
13
 
    License for more details.
14
 
 
15
 
    You should have received a copy of the GNU Library General Public License
16
 
    along with this library; see the file COPYING.LIB.  If not, write to the
17
 
    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18
 
    02110-1301, USA.
19
 
*/
20
 
 
21
 
#ifndef AKONADI_SINGLEFILERESOURCECONFIGDIALOG_H
22
 
#define AKONADI_SINGLEFILERESOURCECONFIGDIALOG_H
23
 
 
24
 
#include "singlefileresourceconfigdialogbase.h"
25
 
 
26
 
#include <KDE/KConfigDialogManager>
27
 
 
28
 
namespace Akonadi {
29
 
 
30
 
/**
31
 
 * Configuration dialog for single file resources.
32
 
 */
33
 
template <typename Settings>
34
 
class SingleFileResourceConfigDialog : public SingleFileResourceConfigDialogBase
35
 
{
36
 
  public:
37
 
    explicit SingleFileResourceConfigDialog( WId windowId ) :
38
 
      SingleFileResourceConfigDialogBase( windowId )
39
 
    {
40
 
      ui.kcfg_Path->setUrl( KUrl( Settings::self()->path() ) );
41
 
      mManager = new KConfigDialogManager( this, Settings::self() );
42
 
      mManager->updateWidgets();
43
 
    }
44
 
 
45
 
  protected:
46
 
    void save()
47
 
    {
48
 
      mManager->updateSettings();
49
 
      Settings::self()->setPath( ui.kcfg_Path->url().url() );
50
 
      Settings::self()->writeConfig();
51
 
    }
52
 
};
53
 
 
54
 
}
55
 
 
56
 
#endif