]> git.lyx.org Git - lyx.git/blob - src/insets/insetparent.h
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insetparent.h
1 // -*- C++ -*-
2 /* This file is part of*
3  * ====================================================== 
4  *
5  *           LyX, The Document Processor
6  *       
7  *           Copyright 1997-2000 LyX Team
8  * 
9  * ====================================================== */
10
11 #ifndef INSET_PARENT_H
12 #define INSET_PARENT_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "insetcommand.h"
19 #include "gettext.h"
20
21 class Buffer;
22
23 /** Reference to the parent document.
24
25   Useful to load a parent document from a child document and to
26   share parent's properties between preambleless children. 
27  */
28 class InsetParent : public InsetCommand {
29 public:
30         /// Non-standard LyX macro
31         InsetParent() : InsetCommand("lyxparent") {}
32         ///
33         explicit
34         InsetParent(string const & fn, Buffer * owner = 0);
35         /// 
36         int Latex(std::ostream &, bool fragile, bool free_spc) const;
37         ///
38         Inset * Clone() const { return new InsetParent(getContents()); }
39         ///
40         string getScreenLabel() const;
41         ///
42         void Edit(BufferView *, int, int, unsigned int);
43         ///
44         EDITABLE Editable() const {
45                 return IS_EDITABLE;
46         }
47         ///
48         Inset::Code LyxCode() const { return Inset::PARENT_CODE; }
49         ///
50         void setParent(string fn) { setContents(fn); }
51 };
52 #endif