~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to vcs/subversion/svn_fileselectdlg_commit.h

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright (C) 2007 Dukju Ahn (dukjuahn@gmail.com)
3
 
 *
4
 
 *  This program is free software; you can redistribute it and/or
5
 
 *  modify it under the terms of the GNU General Public
6
 
 *  License as published by the Free Software Foundation; either
7
 
 *  version 2 of the License, or (at your option) any later version.
8
 
 *
9
 
 *  This program is distributed in the hope that it will be useful,
10
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 
 *  Library General Public License for more details.
13
 
 *
14
 
 *  You should have received a copy of the GNU General Public License
15
 
 *  along with this program; see the file COPYING.LIB.  If not, write to
16
 
 *  the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
 
 *  Boston, MA 02111-1307, USA.
18
 
 *
19
 
 */
20
 
 
21
 
#ifndef _svnfileselectdlgcommit_
22
 
#define _svnfileselectdlgcommit_
23
 
 
24
 
#include "svn_commitdlgbase.h"
25
 
#include <qdialog.h>
26
 
#include <kurl.h>
27
 
 
28
 
class QString;
29
 
class KURL;
30
 
class QListView;
31
 
class subversionPart;
32
 
 
33
 
class SVNFileSelectDlgCommit : public SvnCommitDlgBase{
34
 
        
35
 
Q_OBJECT
36
 
                
37
 
public:
38
 
        SVNFileSelectDlgCommit( KURL::List&, subversionPart* part, QWidget* parent = 0 );
39
 
        ~SVNFileSelectDlgCommit();
40
 
        void insertItem( QString status, KURL url );
41
 
        KURL::List checkedUrls();
42
 
        bool recursive();
43
 
        bool keepLocks();
44
 
        
45
 
public slots:
46
 
        int exec();     
47
 
protected:
48
 
        QListView* listView();
49
 
        subversionPart *m_part;
50
 
};
51
 
 
52
 
#endif