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

« back to all changes in this revision

Viewing changes to parts/quickopen/quickopenfiledialog.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) 2003 Roberto Raggi (roberto@kdevelop.org)
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 QUICKOPENFILEDIALOG_H
22
 
#define QUICKOPENFILEDIALOG_H
23
 
 
24
 
#include "quickopendialog.h"
25
 
#include <qstringlist.h>
26
 
 
27
 
#include <kurl.h>
28
 
 
29
 
class QuickOpenPart;
30
 
class KCompletion;
31
 
 
32
 
class QuickOpenFileDialog : public QuickOpenDialog
33
 
{
34
 
    Q_OBJECT
35
 
public:
36
 
    QuickOpenFileDialog(QuickOpenPart* part, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0 );
37
 
    QuickOpenFileDialog(QuickOpenPart* part, const KURL::List &, QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0 );
38
 
    virtual ~QuickOpenFileDialog();
39
 
 
40
 
public slots:
41
 
    virtual void slotExecuted( QListBoxItem* );
42
 
    virtual void slotReturnPressed();
43
 
 
44
 
private:
45
 
    bool m_hasFullPaths;
46
 
};
47
 
 
48
 
#endif
49