]> git.lyx.org Git - lyx.git/blob - src/insets/InsetIndex.h
Fix GRAPHICS_EDIT of InsetGraphics
[lyx.git] / src / insets / InsetIndex.h
1 // -*- C++ -*-
2 /**
3  * \file InsetIndex.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSET_INDEX_H
13 #define INSET_INDEX_H
14
15
16 #include "InsetCollapsable.h"
17 #include "InsetCommand.h"
18
19
20 namespace lyx {
21
22 /** Used to insert index labels
23   */
24 class InsetIndex : public InsetCollapsable {
25 public:
26         ///
27         InsetIndex(Buffer const &);
28 private:
29         ///
30         EDITABLE editable() const { return IS_EDITABLE; }
31         ///
32         InsetCode lyxCode() const { return INDEX_CODE; }
33         ///
34         docstring name() const { return from_ascii("Index"); }
35         ///
36         void write(std::ostream & os) const;
37         ///
38         int docbook(odocstream &, OutputParams const &) const;
39         /// should paragraph indendation be omitted in any case?
40         bool neverIndent() const { return true; }
41         ///
42         void addToToc(ParConstIterator const &) const;
43         ///
44         Inset * clone() const { return new InsetIndex(*this); }
45 };
46
47
48 class InsetPrintIndex : public InsetCommand {
49 public:
50         ///
51         InsetPrintIndex(InsetCommandParams const &);
52
53         ///
54         static ParamInfo const & findInfo(std::string const &);
55         ///
56         static std::string defaultCommand() { return "printindex"; };
57         ///
58         static bool isCompatibleCommand(std::string const & s) 
59                 { return s == "printindex"; }
60 private:
61         /// Updates needed features for this inset.
62         void validate(LaTeXFeatures & features) const;
63         ///
64         EDITABLE editable() const { return NOT_EDITABLE; }
65         ///
66         InsetCode lyxCode() const;
67         ///
68         DisplayType display() const { return AlignCenter; }
69         ///
70         docstring screenLabel() const;
71         ///
72         Inset * clone() const { return new InsetPrintIndex(*this); }
73 };
74
75
76 } // namespace lyx
77
78 #endif