~ubuntu-branches/ubuntu/karmic/kdevelop/karmic

« back to all changes in this revision

Viewing changes to kdevdesigner/designer/filechooser.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Thomas
  • Date: 2009-05-25 19:34:26 UTC
  • mfrom: (1.1.11 upstream) (2.3.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090525193426-hdntv90rvflyew8g
Tags: 4:3.9.93-1ubuntu1
* Merge from Debian experimental, remaining changes:
  - Conflict/replace -kde4 packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**********************************************************************
2
 
** Copyright (C) 2001 Trolltech AS.  All rights reserved.
3
 
**
4
 
** This file is part of Qt Designer.
5
 
**
6
 
** This file may be distributed and/or modified under the terms of the
7
 
** GNU General Public License version 2 as published by the Free Software
8
 
** Foundation and appearing in the file LICENSE.GPL included in the
9
 
** packaging of this file.
10
 
**
11
 
** Licensees holding valid Qt Enterprise Edition or Qt Professional Edition
12
 
** licenses may use this file in accordance with the Qt Commercial License
13
 
** Agreement provided with the Software.
14
 
**
15
 
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16
 
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17
 
**
18
 
** See http://www.trolltech.com/gpl/ for GPL licensing information.
19
 
** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for
20
 
**   information about Qt Commercial License Agreements.
21
 
**
22
 
** Contact info@trolltech.com if any conditions of this licensing are
23
 
** not clear to you.
24
 
**
25
 
**********************************************************************/
26
 
 
27
 
#ifndef FILECHOOSER_H
28
 
#define FILECHOOSER_H
29
 
 
30
 
#include <qwidget.h>
31
 
 
32
 
class QLineEdit;
33
 
class QPushButton;
34
 
 
35
 
class FileChooser : public QWidget
36
 
{
37
 
    Q_OBJECT
38
 
 
39
 
    Q_ENUMS( Mode )
40
 
    Q_PROPERTY( Mode mode READ mode WRITE setMode )
41
 
    Q_PROPERTY( QString fileName READ fileName WRITE setFileName )
42
 
 
43
 
public:
44
 
    FileChooser( QWidget *parent = 0, const char *name = 0);
45
 
 
46
 
    enum Mode { File, Directory };
47
 
 
48
 
    QString fileName() const;
49
 
    Mode mode() const;
50
 
 
51
 
public slots:
52
 
    void setFileName( const QString &fn );
53
 
    void setMode( Mode m );
54
 
 
55
 
signals:
56
 
    void fileNameChanged( const QString & );
57
 
 
58
 
private slots:
59
 
    void chooseFile();
60
 
 
61
 
private:
62
 
    QLineEdit *lineEdit;
63
 
    QPushButton *button;
64
 
    Mode md;
65
 
 
66
 
};
67
 
 
68
 
#endif