]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/LyXFileDialog.cpp
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / LyXFileDialog.cpp
1 /**
2  * \file LyXFileDialog.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  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "LyXFileDialog.h"
14
15 #include "qt_helpers.h"
16
17 #include "support/lstrings.h"
18
19 #include <QApplication>
20 #include <QToolButton>
21 #include <QHBoxLayout>
22
23 using namespace std;
24 using namespace lyx::support;
25
26 namespace lyx {
27
28 /// return the Qt form of the label
29 static QString getLabel(QString const & qstr)
30 {
31         // FIXME UNICODE (or "qt-ify")
32         string str = fromqstr(qstr);
33         string label;
34         string sc = split(str, label, '|');
35         if (sc.length() < 2)
36                 return toqstr(label);
37         size_t pos = label.find(sc[1]);
38         if (pos != string::npos)
39                 label.insert(pos, 1, '&');
40         return toqstr(label);
41 }
42
43
44 LyXFileDialog::LyXFileDialog(QString const & title,
45                              QString const & path,
46                              QStringList const & filters,
47                              FileDialog::Button const & b1,
48                              FileDialog::Button const & b2)
49                                  // FIXME replace that with guiApp->currentView()
50         : QFileDialog(qApp->focusWidget(), title, path)
51 {
52         setFilters(filters);
53 #if QT_VERSION < 0x040304
54         // FIXME: workaround for a bug in qt which makes LyX crash
55         // with hidden paths (bug 4513). Fixed as of Qt 4.3.4
56         QDir dir(path);
57         if (path.contains("/."))
58                 dir.setFilter(QDir::Hidden);
59         setDirectory(dir);
60 #endif
61         setWindowTitle(title);
62
63         QList<QHBoxLayout *> layout = findChildren<QHBoxLayout *>();
64
65         if (!b1.first.isEmpty()) {
66                 b1_dir_ = b1.second;
67                 QToolButton * tb = new QToolButton(this);
68                 connect(tb, SIGNAL(clicked()), this, SLOT(button1Clicked()));
69                 tb->setText(getLabel(b1.first));
70                 layout.at(0)->addWidget(tb);
71         }
72
73         if (!b2.first.isEmpty()) {
74                 b2_dir_ = b2.second;
75                 QToolButton * tb = new QToolButton(this);
76                 connect(tb, SIGNAL(clicked()), this, SLOT(button2Clicked()));
77                 tb->setText(getLabel(b2.first));
78                 layout.at(0)->addWidget(tb);
79         }
80 }
81
82
83 void LyXFileDialog::button1Clicked()
84 {
85         setDirectory(b1_dir_);
86 }
87
88
89 void LyXFileDialog::button2Clicked()
90 {
91         setDirectory(b2_dir_);
92 }
93
94 } // namespace lyx
95
96 #include "moc_LyXFileDialog.cpp"