~ubuntu-branches/ubuntu/raring/skanlite/raring

« back to all changes in this revision

Viewing changes to SaveLocation.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer
  • Date: 2012-01-06 20:18:11 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120106201811-46qnlezawwe1vspu
Tags: 0.8-1ubuntu1
* Merge from Debian experimental, remaining changes:
  - Do not suggest skanlite-dbg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ============================================================
2
 
* Date        : 2010-07-07
3
 
* Description : Save location settings dialog.
4
 
*
5
 
* Copyright (C) 2008 by Kare Sars <kare dot sars at iki dot fi>
6
 
*
7
 
* This program is free software; you can redistribute it and/or
8
 
* modify it under the terms of the GNU General Public License as
9
 
* published by the Free Software Foundation; either version 2 of
10
 
* the License or (at your option) version 3 or any later version
11
 
* accepted by the membership of KDE e.V. (or its successor approved
12
 
*  by the membership of KDE e.V.), which shall act as a proxy
13
 
* defined in Section 14 of version 3 of the license.
14
 
*
15
 
* This program is distributed in the hope that it will be useful,
16
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
* GNU General Public License for more details.
19
 
*
20
 
* You should have received a copy of the GNU General Public License.
21
 
* along with this program.  If not, see <http://www.gnu.org/licenses/>
22
 
*
23
 
* ============================================================ */
24
 
 
25
 
#ifndef SAVE_LOCATION_H
26
 
#define SAVE_LOCATION_H
27
 
 
28
 
#include "ui_SaveLocation.h"
29
 
 
30
 
#include <KUrl>
31
 
 
32
 
#include <KDialog>
33
 
 
34
 
class SaveLocation : public KDialog, public Ui_SaveLocation
35
 
{
36
 
    Q_OBJECT
37
 
    public:
38
 
        SaveLocation(QWidget *parent = 0);
39
 
        ~SaveLocation();
40
 
        
41
 
    private Q_SLOTS:
42
 
        void update();
43
 
        void getDir(void);
44
 
};
45
 
 
46
 
#endif
47
 
 
48