]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/FileDialog.cpp
Add missing initialization
[lyx.git] / src / frontends / qt4 / FileDialog.cpp
1 /**
2  * \file qt4/FileDialog.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  * \author Jean-Marc Lasgouttes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "FileDialog.h"
15
16 #include "LyXFileDialog.h"
17 #include "qt_helpers.h"
18
19 #include "support/debug.h"
20 #include "support/FileName.h"
21 #include "support/filetools.h"
22 #include "support/gettext.h"
23 #include "support/os.h"
24
25 #include <string>
26
27 /** when this is defined, the code will use
28  * QFileDialog::getOpenFileName and friends to create filedialogs.
29  * Effects:
30  * - the dialog does not use the quick directory buttons (Button
31  *   parameters);
32  * - with Qt/Mac or Qt/Win, the dialogs native to the environment are used.
33  * - with Qt/Win and Qt <= 4.3.0, there was a number of bugs with our own
34  *   file dialog (http://www.lyx.org/trac/ticket/3907).
35  *
36  * Therefore there is a tradeoff in enabling or disabling this (JMarc)
37  */
38 #if defined(Q_OS_MAC) || defined(Q_OS_WIN)
39 #define USE_NATIVE_FILEDIALOG 1
40 #endif
41
42 #ifdef USE_NATIVE_FILEDIALOG
43 #include <QApplication>
44 #endif
45
46 namespace lyx {
47
48 using namespace support;
49
50
51 class FileDialog::Private {
52 public:
53         Button b1;
54         Button b2;
55 };
56
57
58 FileDialog::FileDialog(QString const & t)
59         : private_(new FileDialog::Private), title_(t)
60 {}
61
62
63 FileDialog::~FileDialog()
64 {
65         delete private_;
66 }
67
68
69 void FileDialog::setButton1(QString const & label, QString const & dir)
70 {
71         private_->b1.first = label;
72         private_->b1.second = dir;
73 }
74
75
76 void FileDialog::setButton2(QString const & label, QString const & dir)
77 {
78         private_->b2.first = label;
79         private_->b2.second = dir;
80 }
81
82
83 FileDialog::Result FileDialog::save(QString const & path,
84         QStringList const & filters, QString const & suggested,
85         QString * selectedFilter)
86 {
87         LYXERR(Debug::GUI, "Select with path \"" << path
88                            << "\", mask \"" << filters.join(";;")
89                            << "\", suggested \"" << suggested << '"');
90
91         FileDialog::Result result;
92         result.first = FileDialog::Chosen;
93
94 #ifdef USE_NATIVE_FILEDIALOG
95         QString const startsWith = makeAbsPath(suggested, path);
96         QString const name = 
97                 QFileDialog::getSaveFileName(qApp->focusWidget(),
98                 title_, startsWith, filters.join(";;"),
99                 selectedFilter, QFileDialog::DontConfirmOverwrite);
100         if (name.isNull())
101                 result.first = FileDialog::Later;
102         else
103                 result.second = toqstr(os::internal_path(fromqstr(name)));
104 #else
105         LyXFileDialog dlg(title_, path, filters, private_->b1, private_->b2);
106         dlg.setFileMode(QFileDialog::AnyFile);
107         dlg.setAcceptMode(QFileDialog::AcceptSave);
108         dlg.setConfirmOverwrite(false);
109         if (selectedFilter != 0 && !selectedFilter->isEmpty())
110                 dlg.selectNameFilter(*selectedFilter);
111
112         if (!suggested.isEmpty())
113                 dlg.selectFile(suggested);
114
115         LYXERR(Debug::GUI, "Synchronous FileDialog: ");
116         int res = dlg.exec();
117         LYXERR(Debug::GUI, "result " << res);
118         if (res == QDialog::Accepted)
119                 result.second = internalPath(dlg.selectedFiles()[0]);
120         else
121                 result.first = FileDialog::Later;
122         if (selectedFilter != 0)
123                 *selectedFilter = dlg.selectedNameFilter();
124         dlg.hide();
125 #endif
126         return result;
127 }
128
129
130 FileDialog::Result FileDialog::save(QString const & path,
131         QStringList const & filters, QString const & suggested)
132 {
133         return save(path, filters, suggested, 0);
134 }
135
136
137 FileDialog::Result FileDialog::open(QString const & path,
138         QStringList const & filters, QString const & suggested)
139 {
140         LYXERR(Debug::GUI, "Select with path \"" << path
141                            << "\", mask \"" << filters.join(";;")
142                            << "\", suggested \"" << suggested << '"');
143         FileDialog::Result result;
144         result.first = FileDialog::Chosen;
145
146 #ifdef USE_NATIVE_FILEDIALOG
147         QString const startsWith = makeAbsPath(suggested, path);
148         QString const file = QFileDialog::getOpenFileName(qApp->focusWidget(),
149                 title_, startsWith, filters.join(";;"));
150         if (file.isNull())
151                 result.first = FileDialog::Later;
152         else
153                 result.second = internalPath(file);
154 #else
155         LyXFileDialog dlg(title_, path, filters, private_->b1, private_->b2);
156
157         if (!suggested.isEmpty())
158                 dlg.selectFile(suggested);
159
160         LYXERR(Debug::GUI, "Synchronous FileDialog: ");
161         int res = dlg.exec();
162         LYXERR(Debug::GUI, "result " << res);
163         if (res == QDialog::Accepted)
164                 result.second = internalPath(dlg.selectedFiles()[0]);
165         else
166                 result.first = FileDialog::Later;
167         dlg.hide();
168 #endif
169         return result;
170 }
171
172
173 FileDialog::Result FileDialog::opendir(QString const & path,
174         QString const & suggested)
175 {
176         LYXERR(Debug::GUI, "Select with path \"" << path
177                            << "\", suggested \"" << suggested << '"');
178         FileDialog::Result result;
179         result.first = FileDialog::Chosen;
180
181 #ifdef USE_NATIVE_FILEDIALOG
182         QString const startsWith = toqstr(makeAbsPath(fromqstr(suggested),
183                 fromqstr(path)).absFileName());
184         QString const dir = QFileDialog::getExistingDirectory(qApp->focusWidget(),
185                 title_, startsWith);
186         if (dir.isNull())
187                 result.first = FileDialog::Later;
188         else
189                 result.second = toqstr(os::internal_path(fromqstr(dir)));
190 #else
191         LyXFileDialog dlg(title_, path, QStringList(qt_("Directories")),
192                 private_->b1, private_->b2);
193
194         dlg.setFileMode(QFileDialog::DirectoryOnly);
195
196         if (!suggested.isEmpty())
197                 dlg.selectFile(suggested);
198
199         LYXERR(Debug::GUI, "Synchronous FileDialog: ");
200         int res = dlg.exec();
201         LYXERR(Debug::GUI, "result " << res);
202         if (res == QDialog::Accepted)
203                 result.second = internalPath(dlg.selectedFiles()[0]);
204         else
205                 result.first = FileDialog::Later;
206         dlg.hide();
207 #endif
208         return result;
209 }
210
211
212 } // namespace lyx