]> git.lyx.org Git - lyx.git/blob - src/insets/insetparent.C
Copyright notices
[lyx.git] / src / insets / insetparent.C
1 /**
2  * \file insetparent.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11
12 // Created by asierra 970813
13
14 #include <config.h>
15
16
17 #ifdef __GNUG__
18 #pragma implementation
19 #endif
20
21 #include "insetparent.h"
22 #include "support/filetools.h"
23 #include "BufferView.h"
24 #include "frontends/LyXView.h"
25 #include "support/LOstream.h"
26 #include "funcrequest.h"
27 #include "buffer.h"
28 #include "gettext.h"
29
30 using std::ostream;
31
32
33 InsetParent::InsetParent(InsetCommandParams const & p, Buffer const & bf, bool)
34         : InsetCommand(p)
35 {
36         string const fn = p.getContents();
37         setContents(MakeAbsPath(fn, bf.filePath()));
38 }
39
40
41 string const InsetParent::getScreenLabel(Buffer const *) const
42 {
43         return string(_("Parent:")) + getContents();
44 }
45
46
47 void InsetParent::edit(BufferView * bv, int, int, mouse_button::state)
48 {    
49         bv->owner()->dispatch(FuncRequest(LFUN_CHILDOPEN, getContents()));
50 }
51
52
53 void InsetParent::edit(BufferView * bv, bool)
54 {
55         edit(bv, 0, 0, mouse_button::none);
56 }
57
58
59 // LaTeX must just ignore this command
60 int InsetParent::latex(Buffer const * buf, ostream & os,
61                        bool fragile, bool free_spc) const
62 {
63         os << "%%#{lyx}";
64         InsetCommand::latex(buf, os, fragile, free_spc);
65         return 0;
66 }