]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiSendto.cpp
Fix Unicode use in Format's prettyname
[lyx.git] / src / frontends / qt4 / GuiSendto.cpp
1 /**
2  * \file GuiSendto.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  * \author Jürgen Spitzmüller
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "GuiSendto.h"
15 #include "qt_helpers.h"
16
17 #include "Buffer.h"
18 #include "BufferParams.h"
19 #include "Format.h"
20 #include "FuncRequest.h"
21
22 #include "support/filetools.h"
23 #include "support/gettext.h"
24 #include "support/qstring_helpers.h"
25
26 #include <algorithm>
27
28 #include <QLineEdit>
29 #include <QListWidget>
30 #include <QPushButton>
31
32 using namespace std;
33 using namespace lyx::support;
34
35 namespace lyx {
36 namespace frontend {
37
38
39 GuiSendTo::GuiSendTo(GuiView & lv)
40         : GuiDialog(lv, "sendto", qt_("Export or Send Document")), format_(0)
41 {
42         setupUi(this);
43
44         connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
45         connect(applyPB, SIGNAL(clicked()), this, SLOT(slotApply()));
46         connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
47
48         connect(formatLW, SIGNAL(itemClicked(QListWidgetItem *)),
49                 this, SLOT(slotFormatHighlighted(QListWidgetItem *)));
50         connect(formatLW, SIGNAL(itemActivated(QListWidgetItem *)),
51                 this, SLOT(slotFormatSelected(QListWidgetItem *)));
52         connect(formatLW, SIGNAL(itemClicked(QListWidgetItem *)),
53                 this, SLOT(changed_adaptor()));
54         connect(formatLW, SIGNAL(itemSelectionChanged()),
55                 this, SLOT(changed_adaptor()));
56         connect(commandCO, SIGNAL(editTextChanged(QString)),
57                 this, SLOT(changed_adaptor()));
58
59         bc().setPolicy(ButtonPolicy::OkApplyCancelPolicy);
60         bc().setOK(okPB);
61         bc().setApply(applyPB);
62         bc().setCancel(closePB);
63 }
64
65
66 void GuiSendTo::changed_adaptor()
67 {
68         changed();
69 }
70
71
72 void GuiSendTo::updateContents()
73 {
74         all_formats_ = buffer().params().exportableFormats(false);
75         sort(all_formats_.begin(), all_formats_.end(), Format::formatSorter);
76         // Save the current selection if any
77         Format const * current_format = nullptr;
78         int const line = formatLW->currentRow();
79         if (line >= 0 && static_cast<unsigned int>(line) < all_formats_.size()
80             && formatLW->selectedItems().size() > 0)
81                 current_format = all_formats_[line];
82         // Reset the list widget
83         formatLW->clear();
84         for (Format const * f : all_formats_) {
85                 formatLW->addItem(toqstr(translateIfPossible(f->prettyname())));
86                 // Restore the selection
87                 if (current_format && f->prettyname() == current_format->prettyname())
88                         formatLW->setCurrentRow(formatLW->count() - 1);
89         }
90 }
91
92
93 void GuiSendTo::applyView()
94 {
95         int const line = formatLW->currentRow();
96         QString const command = commandCO->currentText().trimmed();
97
98         if (commandCO->findText(command) == -1)
99                 commandCO->insertItem(0, command);
100
101         if (line < 0 || line > formatLW->count())
102                 return;
103
104         format_ = all_formats_[line];
105         command_ = command;
106 }
107
108
109 bool GuiSendTo::isValid()
110 {
111         int const line = formatLW->currentRow();
112
113         if (line < 0 || line > int(formatLW->count()))
114                 return false;
115
116         return (formatLW->selectedItems().size() > 0
117                 && formatLW->count() != 0);
118 }
119
120
121 bool GuiSendTo::initialiseParams(string const &)
122 {
123         format_ = 0;
124         paramsToDialog(format_, command_);
125         return true;
126 }
127
128
129 void GuiSendTo::paramsToDialog(Format const * /*format*/, QString const & command)
130 {
131         if (!command.isEmpty())
132                 commandCO->addItem(command);
133
134         bc().setValid(isValid());
135 }
136
137
138 void GuiSendTo::dispatchParams()
139 {
140         if (!format_ || format_->name().empty())
141                 return;
142
143         string data = format_->name();
144         if (!command_.isEmpty())
145                 data += " " + fromqstr(command_);
146
147         FuncCode const lfun = command_.isEmpty() ?
148                 LFUN_BUFFER_EXPORT : getLfun();
149
150         dispatch(FuncRequest(lfun, data));
151 }
152
153 Dialog * createGuiSendTo(GuiView & lv) { return new GuiSendTo(lv); }
154
155
156 } // namespace frontend
157 } // namespace lyx
158
159 #include "moc_GuiSendto.cpp"