]> git.lyx.org Git - lyx.git/blob - src/insets/InsetCollapsable.h
Remove all BufferParam arguments in InsetXXX methods (since insets know about their...
[lyx.git] / src / insets / InsetCollapsable.h
1 // -*- C++ -*-
2 /**
3  * \file InsetCollapsable.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Alejandro Aguilar Sierra
8  * \author Jürgen Vigna
9  * \author Lars Gullik Bjønnes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef INSETCOLLAPSABLE_H
15 #define INSETCOLLAPSABLE_H
16
17 #include "Inset.h"
18 #include "InsetText.h"
19
20 #include "Box.h"
21 #include "TextClass.h"
22
23 namespace lyx {
24
25 class CursorSlice;
26 class InsetLayout;
27
28 namespace frontend { class Painter; }
29
30 /** A collapsable text inset
31
32 */
33 class InsetCollapsable : public InsetText {
34 public:
35         ///
36         InsetCollapsable(Buffer const &, InsetText::UsePlain = InsetText::PlainLayout);
37         ///
38         InsetCollapsable(InsetCollapsable const & rhs);
39         ///
40         InsetCollapsable * asInsetCollapsable() { return this; }
41         ///
42         InsetCollapsable const * asInsetCollapsable() const { return this; }
43         ///
44         docstring toolTip(BufferView const & bv, int x, int y) const;
45         ///
46         docstring name() const { return from_ascii("Collapsable"); }
47         ///
48         InsetLayout const & getLayout() const { return *layout_; } 
49         ///
50         void setLayout();
51         /// (Re-)set the character style parameters from \p tc according
52         /// to name()
53         void setLayout(DocumentClass const * const tc);
54         ///
55         virtual bool usePlainLayout() { return true; }
56         ///
57         void read(Lexer &);
58         ///
59         void write(std::ostream &) const;
60         ///
61         void metrics(MetricsInfo &, Dimension &) const;
62         ///
63         void draw(PainterInfo & pi, int x, int y) const;
64
65         /// return x,y of given position relative to the inset's baseline
66         void cursorPos(BufferView const & bv, CursorSlice const & sl,
67                 bool boundary, int & x, int & y) const;
68         /// Returns true if (mouse) action is over the inset's button.
69         /// Always returns false when the inset does not have a
70         /// button.
71         bool hitButton(FuncRequest const &) const;
72         ///
73         docstring const getNewLabel(docstring const & l) const;
74         ///
75         bool editable() const;
76         ///
77         bool hasSettings() const { return true; }
78         /// can we go further down on mouse click?
79         bool descendable() const;
80         ///
81         void setLabel(docstring const & l);
82         ///
83         virtual void setButtonLabel() {}
84         ///
85         virtual docstring const buttonLabel(BufferView const &) const
86                 { return labelstring_; }
87         ///
88         bool isOpen(BufferView const & bv) const 
89                 { return geometry(bv) != ButtonOnly; }
90         ///
91         CollapseStatus status(BufferView const & bv) const;
92         /** Of the old CollapseStatus we only keep the values  
93          *  Open and Collapsed.
94          * We define a list of possible inset decoration
95          * styles, and a list of possible (concrete, visual)
96          * inset geometries. Relationships between them
97          * (geometries in body of table):
98          *
99          *               \       CollapseStatus:
100          *   Decoration:  \ Open                Collapsed
101          *   -------------+-------------------------------
102          *   Classic      | *) TopButton, <--x) ButtonOnly
103          *                | LeftButton
104          *   Minimalistic | NoButton            ButtonOnly
105          *   Conglomerate | SubLabel            Corners
106          *   ---------------------------------------------
107          *   *) toggled by openinlined_
108          *   x) toggled by auto_open_
109          */
110
111         /// Default looks
112         virtual InsetLayout::InsetDecoration decoration() const;
113         ///
114         enum Geometry {
115                 TopButton,
116                 ButtonOnly,
117                 NoButton,
118                 LeftButton,
119                 SubLabel,
120                 Corners
121         };
122         /// Returns the geometry based on CollapseStatus
123         /// (status_), auto_open_[BufferView] and openinlined_,
124         /// and of course decoration().
125         Geometry geometry(BufferView const & bv) const;
126         /// Returns the geometry disregarding auto_open_
127         Geometry geometry() const;
128         /// Allow spellchecking, except for insets with latex_language
129         bool allowSpellCheck() const { return !forceLTR(); }
130         ///
131         bool allowMultiPar() const;
132         ///
133         bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
134         ///
135         void setStatus(Cursor & cur, CollapseStatus st);
136         ///
137         bool setMouseHover(bool mouse_hover);
138         ///
139         ColorCode backgroundColor() const { return getLayout().bgcolor(); }
140         ///
141         ColorCode labelColor() const { return getLayout().labelfont().color(); }
142         ///
143         int latex(odocstream &, OutputParams const &) const;
144         ///
145         int docbook(odocstream &, OutputParams const &) const;
146         /// It will rarely be right to call this from subclasses, due
147         /// to the fact that it steps counters, etc. Instead, call
148         /// InsetText::xhtml().
149         docstring xhtml(odocstream &, OutputParams const &) const;
150         ///
151         void validate(LaTeXFeatures &) const;
152         ///
153         InsetCode lyxCode() const { return COLLAPSABLE_CODE; }
154
155         /// Allow multiple blanks
156         virtual bool isFreeSpacing() const { return getLayout().isFreeSpacing(); }
157         /// Don't eliminate empty paragraphs
158         virtual bool allowEmpty() const { return getLayout().isKeepEmpty(); }
159         /// Force inset into LTR environment if surroundings are RTL?
160         virtual bool forceLTR() const { return getLayout().isForceLtr(); }
161         ///
162         virtual bool usePlainLayout() const { return true; }
163         /// Is this inset's layout defined in the document's textclass?
164         /// May be wrong after textclass change or paste from another document
165         bool undefined() const;
166         /// the string that is passed to the TOC
167         void tocString(odocstream &) const;
168         ///
169         virtual docstring contextMenu(BufferView const & bv, int x, int y) const;
170 protected:
171         ///
172         void doDispatch(Cursor & cur, FuncRequest & cmd);
173         ///
174         void edit(Cursor & cur, bool front, 
175                 EntryDirection entry_from = ENTRY_DIRECTION_IGNORE);
176         ///
177         Inset * editXY(Cursor & cur, int x, int y);
178         ///
179         docstring floatName(std::string const & type) const;
180         ///
181         virtual void resetParagraphsFont();
182         ///
183         mutable CollapseStatus status_;
184 private:
185         /// cache for the layout_. Make sure it is in sync with the document class!
186         InsetLayout const * layout_;
187         ///
188         Dimension dimensionCollapsed(BufferView const & bv) const;
189         ///
190         /// should paragraphs be forced to use the empty layout?
191         virtual bool forcePlainLayout(idx_type = 0) const 
192                 { return getLayout().forcePlainLayout(); }
193         /// should the user be allowed to customize alignment, etc.?
194         virtual bool allowParagraphCustomization(idx_type = 0) const 
195                 { return getLayout().allowParagraphCustomization(); }
196         docstring labelstring_;
197         ///
198         mutable Box button_dim;
199         /// a substatus of the Open status, determined automatically in metrics
200         mutable bool openinlined_;
201         /// the inset will automatically open when the cursor is inside. This is
202         /// dependent on the bufferview, compare with MathMacro::editing_.
203         mutable std::map<BufferView const *, bool> auto_open_;
204         /// changes color when mouse enters/leaves this inset
205         bool mouse_hover_;
206 };
207
208 } // namespace lyx
209
210 #endif