]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiSendto.cpp
On Linux show in crash message box the backtrace
[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"))
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         
77         // Save the current selection if any
78         Format const * current_format = 0;
79         int const line = formatLW->currentRow();
80         if (line >= 0 && line <= formatLW->count()
81             && formatLW->selectedItems().size() > 0)
82                 current_format = all_formats_[line];
83
84         // Check whether the current contents of the browser will be
85         // changed by loading the contents of formats
86         vector<string> keys;
87         keys.resize(all_formats_.size());
88
89         vector<string>::iterator result = keys.begin();
90         vector<Format const *>::const_iterator it  = all_formats_.begin();
91         vector<Format const *>::const_iterator end = all_formats_.end();
92
93         int current_line = -1;
94         for (int ln = 0; it != end; ++it, ++result, ++ln) {
95                 *result = (*it)->prettyname();
96                 if (current_format 
97                     && (*it)->prettyname() == current_format->prettyname())
98                         current_line = ln;
99         }
100
101         // Reload the browser
102         formatLW->clear();
103
104         for (vector<string>::const_iterator it = keys.begin();
105              it != keys.end(); ++it) {
106                 formatLW->addItem(qt_(*it));
107         }
108
109         // Restore the selection
110         if (current_line > -1)
111                 formatLW->setCurrentItem(formatLW->item(current_line));
112 }
113
114
115 void GuiSendTo::applyView()
116 {
117         int const line = formatLW->currentRow();
118         QString const command = commandCO->currentText().trimmed();
119
120         if (commandCO->findText(command) == -1)
121                 commandCO->insertItem(0, command);
122
123         if (line < 0 || line > formatLW->count())
124                 return;
125
126         format_ = all_formats_[line];
127         command_ = command;
128 }
129
130
131 bool GuiSendTo::isValid()
132 {
133         int const line = formatLW->currentRow();
134
135         if (line < 0 || line > int(formatLW->count()))
136                 return false;
137
138         return (formatLW->selectedItems().size() > 0
139                 && formatLW->count() != 0);
140 }
141
142
143 bool GuiSendTo::initialiseParams(string const &)
144 {
145         format_ = 0;
146         paramsToDialog(format_, command_);
147         return true;
148 }
149
150
151 void GuiSendTo::paramsToDialog(Format const * /*format*/, QString const & command)
152 {
153         if (!command.isEmpty())
154                 commandCO->addItem(command);
155
156         bc().setValid(isValid());
157 }
158
159
160 void GuiSendTo::dispatchParams()
161 {
162         if (!format_ || format_->name().empty())
163                 return;
164
165         string data = format_->name();
166         if (!command_.isEmpty())
167                 data += " " + fromqstr(command_);
168
169         FuncCode const lfun = command_.isEmpty() ?
170                 LFUN_BUFFER_EXPORT : getLfun();
171
172         dispatch(FuncRequest(lfun, data));
173 }
174
175 Dialog * createGuiSendTo(GuiView & lv) { return new GuiSendTo(lv); }
176
177
178 } // namespace frontend
179 } // namespace lyx
180
181 #include "moc_GuiSendto.cpp"