]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FileDialog_private.C
namespace grfx -> lyx::graphics
[lyx.git] / src / frontends / qt2 / FileDialog_private.C
1 /**
2  * \file FileDialog_private.C
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
14 #include "QtLyXView.h"
15 #include "debug.h"
16 #include "funcrequest.h"
17 #include "lyxfunc.h"
18 #include "FileDialog_private.h"
19 #include "qt_helpers.h"
20
21 #include "support/lstrings.h"
22
23 #include <qapplication.h>
24 #include <qfiledialog.h>
25 #include <qtoolbutton.h>
26
27 using namespace lyx::support;
28
29 namespace {
30
31 /// return the Qt form of the label
32 string const getLabel(string const & str) {
33         string label;
34         string sc(split(str, label, '|'));
35         if (sc.length() < 2)
36                 return label;
37         string::size_type pos = label.find(sc[1]);
38         if (pos == string::npos)
39                 return label;
40         label.insert(pos, 1, '&');
41         return label;
42 }
43
44 } // namespace anon
45
46
47 LyXFileDialog::LyXFileDialog(string const & p, string const & m,
48                              string const & t,
49                 FileDialog::Button const & b1, FileDialog::Button const & b2)
50         : QFileDialog(toqstr(p), toqstr(m),
51                       qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(), toqstr(t), true),
52           b1_(0), b2_(0)
53 {
54         setCaption(toqstr(t));
55
56         if (!b1.first.empty()) {
57                 b1_dir_ = b1.second;
58                 b1_ = new QToolButton(this);
59                 connect(b1_, SIGNAL(clicked()), this, SLOT(buttonClicked()));
60                 b1_->setText(toqstr(getLabel(b1.first)));
61                 addToolButton(b1_, true);
62         }
63
64         if (!b2.first.empty()) {
65                 b2_dir_ = b2.second;
66                 b2_ = new QToolButton(this);
67                 connect(b2_, SIGNAL(clicked()), this, SLOT(buttonClicked()));
68                 b2_->setText(toqstr(getLabel(b2.first)));
69                 addToolButton(b2_);
70         }
71 }
72
73
74 void LyXFileDialog::buttonClicked()
75 {
76         if (sender() == b1_)
77                 setDir(toqstr(b1_dir_));
78         else if (sender() == b2_)
79                 setDir(toqstr(b2_dir_));
80 }