]> git.lyx.org Git - lyx.git/blob - src/insets/InsetLabel.h
Tell updateBuffer whether an inset is deleted.
[lyx.git] / src / insets / InsetLabel.h
1 // -*- C++ -*-
2 /**
3  * \file InsetLabel.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_LABEL_H
13 #define INSET_LABEL_H
14
15 #include "InsetCommand.h"
16
17
18 namespace lyx {
19
20 class Counter;
21
22 class InsetLabel : public InsetCommand
23 {
24 public:
25         ///
26         InsetLabel(Buffer * buf, InsetCommandParams const &);
27
28         ///
29         docstring const & activeCounter() const { return active_counter_; }
30         ///
31         docstring const & counterValue() const { return counter_value_; }
32         ///
33         docstring const & prettyCounter() const { return pretty_counter_; }
34         /// Updates only the label string, doesn't handle undo nor references.
35         void updateLabel(docstring const & new_label, bool const active = true);
36         /// Updates the label and the references to it.
37         /// Will also handle undo/redo if \p cursor is passed.
38         void updateLabelAndRefs(docstring const & new_label, Cursor * cursor = 0);
39
40         /// \name Public functions inherited from Inset class
41         //@{
42         /// verify label and update references.
43         void initView();
44         ///
45         bool isLabeled() const { return true; }
46         ///
47         bool hasSettings() const { return true; }
48         ///
49         InsetCode lyxCode() const { return LABEL_CODE; }
50         ///
51         void latex(otexstream & os, OutputParams const & runparams_in) const;
52         ///
53         int plaintext(odocstringstream & ods, OutputParams const & op,
54                       size_t max_length = INT_MAX) const;
55         ///
56         int docbook(odocstream &, OutputParams const &) const;
57         ///
58         docstring xhtml(XHTMLStream &, OutputParams const &) const;
59         ///
60         void updateBuffer(ParIterator const & it, UpdateType, bool const deleted = false);
61         ///
62         void addToToc(DocIterator const & di, bool output_active,
63                                   UpdateType utype, TocBackend & backend) const;
64         /// Is the content of this inset part of the immediate (visible) text sequence?
65         bool isPartOfTextSequence() const { return false; }
66         //@}
67
68         /// \name Static public methods obligated for InsetCommand derived classes
69         //@{
70         ///
71         static ParamInfo const & findInfo(std::string const &);
72         ///
73         static std::string defaultCommand() { return "label"; }
74         ///
75         static bool isCompatibleCommand(std::string const & s)
76                 { return s == "label"; }
77         //@}
78
79         //FIXME: private
80         /// \name Private functions inherited from InsetCommand class
81         //@{
82         ///
83         docstring screenLabel() const;
84         //@}
85
86 private:
87         /// \name Private functions inherited from Inset class
88         //@{
89         ///
90         Inset * clone() const { return new InsetLabel(*this); }
91         ///
92         bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const;
93         ///
94         void doDispatch(Cursor & cur, FuncRequest & cmd);
95         //@}
96
97         ///
98         void uniqueLabel(docstring & label) const;
99         ///
100         void updateReferences(docstring const & old_label,
101                 docstring const & new_label);
102         ///
103         docstring screen_label_;
104         ///
105         docstring active_counter_;
106         ///
107         docstring counter_value_;
108         ///
109         docstring pretty_counter_;
110 };
111
112
113 } // namespace lyx
114
115 #endif