OSDN Git Service

29bdd5c2aafc397bc9ce31519778847336adfd34
[qt-creator-jp/qt-creator-jp.git] / src / libs / qmleditorwidgets / filewidget.h
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34
35 #ifndef FILEWIDGET_H
36 #define FILEWIDGET_H
37
38 #include <qmleditorwidgets_global.h>
39
40 #include <QtGui/QWidget>
41
42 #include <QtCore/QUrl>
43
44 QT_BEGIN_NAMESPACE
45 class QLabel;
46 class QToolButton;
47 class QLineEdit;
48 class QComboBox;
49 QT_END_NAMESPACE
50
51 namespace QmlEditorWidgets {
52
53 class QMLEDITORWIDGETS_EXPORT FileWidget : public QWidget
54 {
55     Q_OBJECT
56
57     Q_PROPERTY(QString text READ text WRITE setText)
58     Q_PROPERTY(QString fileName READ fileName WRITE setFileNameStr NOTIFY fileNameChanged)
59     Q_PROPERTY(QString filter READ filter WRITE setFilter)
60     Q_PROPERTY(bool showComboBox READ showComboBox WRITE setShowComboBox)
61     Q_PROPERTY(QUrl path READ path WRITE setPath)
62
63 public:
64
65     FileWidget(QWidget *parent = 0);
66     ~FileWidget();
67
68     QString fileName() const
69     { return m_fileName.toString(); }
70
71     void setText(const QString &/*text*/)
72     {
73
74     }
75
76     void setPath(const QUrl &url) { m_path = url; setupComboBox(); }
77
78     QUrl path() const { return m_path; }
79
80     QString text() const
81     {
82         return QString();
83     }
84
85     void setFilter(const QString &filter)
86     {
87         m_filter = filter;
88     }
89
90     QString filter() const
91     {
92         return m_filter;
93     }
94
95     void setShowComboBox(bool show);
96
97     bool showComboBox() const
98     { return m_showComboBox; }
99
100 public slots:
101     void setFileName(const QUrl &fileName);
102     void setFileNameStr(const QString &fileName);
103     void onButtonReleased();
104     void lineEditChanged();
105     void comboBoxChanged();
106
107 signals:
108     void fileNameChanged(const QUrl &fileName);
109     void itemNodeChanged();
110
111 protected:
112
113 private:
114
115     void setupComboBox();
116
117     QToolButton *m_pushButton;
118     QLineEdit *m_lineEdit;
119     QComboBox *m_comboBox;
120     QUrl m_fileName;
121     QUrl m_path;
122     QString m_filter;
123     bool m_showComboBox;
124     bool m_lock;
125
126 };
127
128 } //QmlEditorWidgets
129
130 #endif
131