~ubuntu-branches/ubuntu/quantal/kdepim/quantal

« back to all changes in this revision

Viewing changes to nepomuk_email_feeder/configdialog.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mto: This revision was merged to the branch mainline in revision 193.
  • Revision ID: package-import@ubuntu.com-20111215141751-bmhdpiwl23wd9w26
Tags: upstream-4.7.90
ImportĀ upstreamĀ versionĀ 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
    Copyright (c) 2006 Volker Krause <vkrause@kde.org>
3
 
    Copyright (c) 2008 Sebastian Trueg <trueg@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 CONFIGDIALOG_H
22
 
#define CONFIGDIALOG_H
23
 
 
24
 
#include "ui_configdialog.h"
25
 
#include <KDialog>
26
 
 
27
 
class KConfigDialogManager;
28
 
 
29
 
class ConfigDialog : public KDialog
30
 
{
31
 
  Q_OBJECT
32
 
  public:
33
 
    explicit ConfigDialog( WId windowId, QWidget* parent = 0 );
34
 
 
35
 
  private slots:
36
 
    void save();
37
 
 
38
 
  private:
39
 
    KConfigDialogManager *m_manager;
40
 
    Ui::ConfigDialog ui;
41
 
};
42
 
 
43
 
#endif