]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlEmbeddedFiles.cpp
fix thinko
[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         kernel().buffer().embeddingChanged();
59 }
60
61
62 void ControlEmbeddedFiles::dispatchParams()
63 {
64         // lyx view will only be updated if we do something to the main window. :-)
65         kernel().dispatch(FuncRequest(LFUN_MESSAGE, message_));
66 }
67
68
69 void ControlEmbeddedFiles::goTo(EmbeddedFile const & item)
70 {
71         int id = item.parID();
72         if (id != 0) {
73                 string const tmp = convert<string>(item.parID());
74                 kernel().lyxview().dispatch(FuncRequest(LFUN_PARAGRAPH_GOTO, tmp));
75         }
76 }
77
78
79 void ControlEmbeddedFiles::view(EmbeddedFile const & item)
80 {
81         formats.view(kernel().buffer(), item, formats.getFormatFromFile(item));
82 }
83
84
85 docstring const ControlEmbeddedFiles::browseFile()
86 {
87         std::pair<docstring, docstring> dir1(_("Documents|#o#O"),
88                                   lyx::from_utf8(lyxrc.document_path));
89         FileFilterList const filter(_("All file (*.*)"));
90         return browseRelFile(docstring(), lyx::from_utf8(kernel().bufferFilepath()),
91                              _("Select a file to embed"),
92                              filter, false, dir1);
93 }
94
95
96 bool ControlEmbeddedFiles::extract(EmbeddedFile const & item)
97 {
98         return item.extract(&kernel().buffer());
99 }
100
101
102 } // namespace frontend
103 } // namespace lyx