]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlSendto.cpp
next one
[lyx.git] / src / frontends / controllers / ControlSendto.cpp
1 /**
2  * \file ControlSendto.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  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "ControlSendto.h"
14
15 #include "Buffer.h"
16 #include "Converter.h"
17 #include "Format.h"
18 #include "FuncRequest.h"
19 #include "LyXRC.h"
20
21 #include "support/filetools.h"
22 #include "support/lstrings.h"
23
24 using std::vector;
25 using std::string;
26
27 namespace lyx {
28
29 using support::trim;
30
31 namespace frontend {
32
33
34 ControlSendto::ControlSendto(Dialog & parent)
35         : Controller(parent)
36 {}
37
38
39 bool ControlSendto::initialiseParams(std::string const &)
40 {
41         format_ = 0;
42         command_ = lyxrc.custom_export_command;
43         return true;
44 }
45
46
47 void ControlSendto::dispatchParams()
48 {
49         if (command_.empty() || !format_ || format_->name().empty())
50                 return;
51
52         string const data = format_->name() + " " + command_;
53         dispatch(FuncRequest(getLfun(), data));
54 }
55
56
57 vector<Format const *> const ControlSendto::allFormats() const
58 {
59         // What formats can we output natively?
60         vector<string> exports;
61         exports.push_back("lyx");
62         exports.push_back("text");
63
64         if (buffer().isLatex())
65                 exports.push_back("latex");
66         else if (buffer().isDocBook())
67                 exports.push_back("docbook");
68         else if (buffer().isLiterate())
69                 exports.push_back("literate");
70
71         // Loop over these native formats and ascertain what formats we
72         // can convert to
73         vector<Format const *> to;
74
75         vector<string>::const_iterator ex_it  = exports.begin();
76         vector<string>::const_iterator ex_end = exports.end();
77         for (; ex_it != ex_end; ++ex_it) {
78                 // Start off with the native export format.
79                 // "formats" is LyX's list of recognised formats
80                 to.push_back(formats.getFormat(*ex_it));
81
82                 Formats::const_iterator fo_it  = formats.begin();
83                 Formats::const_iterator fo_end = formats.end();
84                 for (; fo_it != fo_end; ++fo_it) {
85                         // we need to hide the default graphic export formats
86                         // from the external menu, because we need them only
87                         // for the internal lyx-view and external latex run
88                         string const name = fo_it->name();
89                         if (name != "eps" && name != "xpm" && name != "png" &&
90                             theConverters().isReachable(*ex_it, name))
91                                 to.push_back(&(*fo_it));
92                 }
93         }
94
95         // Remove repeated formats.
96         std::sort(to.begin(), to.end());
97         to.erase(std::unique(to.begin(), to.end()), to.end());
98
99         return to;
100 }
101
102
103 void ControlSendto::setFormat(Format const * fmt)
104 {
105         format_ = fmt;
106 }
107
108
109 void ControlSendto::setCommand(string const & cmd)
110 {
111         command_ = trim(cmd);
112 }
113
114 } // namespace frontend
115 } // namespace lyx