]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlEmbeddedFiles.cpp
make lyx compile
[lyx.git] / src / frontends / controllers / ControlEmbeddedFiles.cpp
1 /**
2  * \file ControlEmbeddedFiles.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Bo Peng
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "ControlEmbeddedFiles.h"
14
15 #include "Buffer.h"
16
17 #include "FuncRequest.h"
18 #include "gettext.h"
19 #include "debug.h"
20 #include "Format.h"
21 #include "LyXRC.h"
22
23 #include "frontend_helpers.h"
24 #include "frontends/LyXView.h"
25
26 #include "support/FileFilterList.h"
27 #include "support/convert.h"
28
29 using std::string;
30
31 namespace lyx {
32
33 using support::FileFilterList;
34
35 namespace frontend {
36
37 ControlEmbeddedFiles::ControlEmbeddedFiles(Dialog & parent)
38         : Dialog::Controller(parent)
39 {}
40
41
42 EmbeddedFiles & ControlEmbeddedFiles::embeddedFiles()
43 {
44         return kernel().buffer().embeddedFiles();
45 }
46
47
48 bool ControlEmbeddedFiles::initialiseParams(string const &)
49 {
50         return true;
51 }
52
53
54 void ControlEmbeddedFiles::updateEmbeddedFiles()
55 {
56         // copy buffer embeddedFiles to a local copy
57         kernel().buffer().embeddedFiles().update();
58 }
59
60
61 void ControlEmbeddedFiles::dispatchParams()
62 {
63         // lyx view will only be updated if we do something to the main window. :-)
64         kernel().dispatch(FuncRequest(LFUN_MESSAGE, message_));
65 }
66
67
68 void ControlEmbeddedFiles::goTo(EmbeddedFile const & item)
69 {
70         int id = item.parID();
71         if (id != 0) {
72                 string const tmp = convert<string>(item.parID());
73                 kernel().lyxview().dispatch(FuncRequest(LFUN_PARAGRAPH_GOTO, tmp));
74         }
75 }
76
77
78 void ControlEmbeddedFiles::view(EmbeddedFile const & item)
79 {
80         formats.view(kernel().buffer(), item, formats.getFormatFromFile(item));
81 }
82
83
84 docstring const ControlEmbeddedFiles::browseFile()
85 {
86         std::pair<docstring, docstring> dir1(_("Documents|#o#O"),
87                                   lyx::from_utf8(lyxrc.document_path));
88         FileFilterList const filter(_("All file (*.*)"));
89         return browseRelFile(docstring(), lyx::from_utf8(kernel().bufferFilepath()),
90                              _("Select a file to embed"),
91                              filter, false, dir1);
92 }
93
94
95 bool ControlEmbeddedFiles::extract(EmbeddedFile const & item)
96 {
97         return item.extract(&kernel().buffer());
98 }
99
100
101 } // namespace frontend
102 } // namespace lyx