~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/digikam/digikamfirstrun.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.3.2 upstream) (37 hardy)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080717202539-1bw3w3nrsso7yj4z
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* ============================================================
2
 
 * Author: Renchi Raju <renchi@pooh.tam.uiuc.edu>
3
 
 *         Gilles Caulier <caulier dot gilles at free.fr>
4
 
 * Date  : 2003-02-01
5
 
 * Description : 
6
 
 * 
7
 
 * Copyright 2003-2004 by Renchi Raju
 
2
 *
 
3
 * This file is a part of digiKam project
 
4
 * http://www.digikam.org
 
5
 *
 
6
 * Date        : 2003-02-01
 
7
 * Description : dialog displayed at the first digiKam run
 
8
 *
 
9
 * Copyright (C) 2003-2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
 
10
 * Copyright (C) 2006-2007 by Gilles Caulier  <caulier dot gilles at gmail dot com>
8
11
 *
9
12
 * This program is free software; you can redistribute it
10
13
 * and/or modify it under the terms of the GNU General
11
14
 * Public License as published by the Free Software Foundation;
12
15
 * either version 2, or (at your option)
13
16
 * any later version.
14
 
 * 
 
17
 *
15
18
 * This program is distributed in the hope that it will be useful,
16
19
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
20
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
21
 * GNU General Public License for more details.
19
 
 * 
 
22
 *
20
23
 * ============================================================ */
21
24
 
22
25
#ifndef DIGIKAMFIRSTRUN_H
23
26
#define DIGIKAMFIRSTRUN_H
24
27
 
25
 
// Qt includes.
 
28
// KDE includes.
26
29
 
27
30
#include <kdialogbase.h>
 
31
 
 
32
// Local includes.
 
33
 
28
34
#include "digikam_export.h"
 
35
 
29
36
class KConfig;
30
37
class KURLRequester;
31
 
class DigikamFirstFirstRunWidget;
 
38
 
 
39
namespace Digikam
 
40
{
 
41
 
 
42
class FirstRunWidget;
32
43
 
33
44
class DIGIKAM_EXPORT DigikamFirstRun : public KDialogBase
34
45
{
35
46
    Q_OBJECT
36
47
 
37
48
public:
38
 
    DigikamFirstRun( KConfig* config,
39
 
                     QWidget* parent = 0,
40
 
                     const char* name = 0,
41
 
                     bool modal = true,
42
 
                     WFlags fl = WDestructiveClose );
 
49
 
 
50
    DigikamFirstRun(KConfig* config, QWidget* parent = 0, const char* name = 0,
 
51
                     bool modal = true, WFlags fl = WDestructiveClose);
43
52
    ~DigikamFirstRun();
44
53
 
45
 
private:
46
 
    KConfig*     config_;
47
 
    DigikamFirstFirstRunWidget *ui;
48
 
 
49
54
protected slots:
 
55
    
50
56
    void slotOk();
 
57
 
 
58
private:
 
59
 
 
60
    KConfig        *m_config;
 
61
    FirstRunWidget *m_ui;
51
62
};
52
63
 
 
64
}  // namespace Digikam
 
65
 
53
66
#endif // DIGIKAMFIRSTRUN_H