]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlSendto.cpp
fix scrolling bug: 3320 and 3652, maybe not perfect
[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         : Dialog::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         kernel().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         Buffer const & buffer = kernel().buffer();
65
66         if (buffer.isLatex())
67                 exports.push_back("latex");
68         else if (buffer.isDocBook())
69                 exports.push_back("docbook");
70         else if (buffer.isLiterate())
71                 exports.push_back("literate");
72
73         // Loop over these native formats and ascertain what formats we
74         // can convert to
75         vector<Format const *> to;
76
77         vector<string>::const_iterator ex_it  = exports.begin();
78         vector<string>::const_iterator ex_end = exports.end();
79         for (; ex_it != ex_end; ++ex_it) {
80                 // Start off with the native export format.
81                 // "formats" is LyX's list of recognised formats
82                 to.push_back(formats.getFormat(*ex_it));
83
84                 Formats::const_iterator fo_it  = formats.begin();
85                 Formats::const_iterator fo_end = formats.end();
86                 for (; fo_it != fo_end; ++fo_it) {
87                         // we need to hide the default graphic export formats
88                         // from the external menu, because we need them only
89                         // for the internal lyx-view and external latex run
90                         string const name = fo_it->name();
91                         if (name != "eps" && name != "xpm" && name != "png" &&
92                             theConverters().isReachable(*ex_it, name))
93                                 to.push_back(&(*fo_it));
94                 }
95         }
96
97         // Remove repeated formats.
98         std::sort(to.begin(), to.end());
99         to.erase(std::unique(to.begin(), to.end()), to.end());
100
101         return to;
102 }
103
104
105 void ControlSendto::setFormat(Format const * fmt)
106 {
107         format_ = fmt;
108 }
109
110
111 void ControlSendto::setCommand(string const & cmd)
112 {
113         command_ = trim(cmd);
114 }
115
116 } // namespace frontend
117 } // namespace lyx