]> git.lyx.org Git - lyx.git/blob - src/insets/updatableinset.C
paint cleanups as sent to list
[lyx.git] / src / insets / updatableinset.C
1 /**
2  * \file updatableinset.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  * \author Jürgen Vigna
8  * \author Lars Gullik Bjønnes
9  * \author Matthias Ettrich
10  *
11  * Full author contact details are available in file CREDITS
12  */
13
14 #include <config.h>
15
16 #include "updatableinset.h"
17 #include "BufferView.h"
18 #include "funcrequest.h"
19 #include "debug.h"
20 #include "lyxfont.h"
21 #include "WordLangTuple.h"
22 #include "lyxtext.h"
23 #include "support/lstrings.h"
24
25
26 // some stuff for inset locking
27
28 UpdatableInset::UpdatableInset()
29         : Inset(), cursor_visible_(false), block_drawing_(false)
30 {}
31
32
33 UpdatableInset::UpdatableInset(UpdatableInset const & in, bool same_id)
34         : Inset(in, same_id), cursor_visible_(false), block_drawing_(false)
35 {}
36
37
38 void UpdatableInset::insetUnlock(BufferView *)
39 {
40         lyxerr[Debug::INFO] << "Inset Unlock" << std::endl;
41 }
42
43
44 // An updatable inset is highly editable by definition
45 Inset::EDITABLE UpdatableInset::editable() const
46 {
47         return HIGHLY_EDITABLE;
48 }
49
50
51 void UpdatableInset::toggleInsetCursor(BufferView *)
52 {}
53
54
55 void UpdatableInset::showInsetCursor(BufferView *, bool)
56 {}
57
58
59 void UpdatableInset::hideInsetCursor(BufferView *)
60 {}
61
62
63 void UpdatableInset::fitInsetCursor(BufferView *) const
64 {}
65
66
67 void UpdatableInset::edit(BufferView *, int, int, mouse_button::state)
68 {}
69
70
71 void UpdatableInset::edit(BufferView *, bool)
72 {}
73
74
75 void UpdatableInset::draw(BufferView *, LyXFont const &,
76                           int /* baseline */, float & x) const
77 {
78         x += float(scx);
79         // ATTENTION: don't do the following here!!!
80         //    top_x = int(x);
81         //    top_baseline = baseline;
82 }
83
84
85 void UpdatableInset::scroll(BufferView * bv, float s) const
86 {
87         LyXFont font;
88
89         if (!s) {
90                 scx = 0;
91                 return;
92         }
93
94         int const workW = bv->workWidth();
95         int const tmp_top_x = top_x - scx;
96
97         if (tmp_top_x > 0 &&
98             (tmp_top_x + width(bv, font)) < workW)
99                 return;
100         if (s > 0 && top_x > 0)
101                 return;
102
103         // int mx_scx=abs((width(bv,font) - bv->workWidth())/2);
104         //int const save_scx = scx;
105
106         scx = int(s * workW / 2);
107         // if (!display())
108         // scx += 20;
109
110         if ((tmp_top_x + scx + width(bv, font)) < (workW / 2)) {
111                 scx += (workW / 2) - (tmp_top_x + scx + width(bv, font));
112         }
113
114         // bv->updateInset(const_cast<UpdatableInset *>(this), false);
115 }
116
117 void UpdatableInset::scroll(BufferView * bv, int offset) const
118 {
119         if (offset > 0) {
120                 if (!scx && top_x >= 20)
121                         return;
122                 if ((top_x + offset) > 20)
123                         scx = 0;
124                 // scx += offset - (top_x - scx + offset - 20);
125                 else
126                         scx += offset;
127         } else {
128                 LyXFont const font;
129                 if (!scx && (top_x + width(bv, font)) < (bv->workWidth() - 20))
130                         return;
131                 if ((top_x - scx + offset + width(bv, font)) < (bv->workWidth() - 20)) {
132                         scx = bv->workWidth() - width(bv, font) - top_x + scx - 20;
133                 } else {
134                         scx += offset;
135                 }
136         }
137 //      bv->updateInset(const_cast<UpdatableInset *>(this), false);
138 }
139
140
141 ///  An updatable inset could handle lyx editing commands
142 Inset::RESULT UpdatableInset::localDispatch(FuncRequest const & ev)
143 {
144         if (ev.action == LFUN_MOUSE_RELEASE)
145                 return (editable() == IS_EDITABLE) ? DISPATCHED : UNDISPATCHED;
146
147         if (!ev.argument.empty() && ev.action == LFUN_SCROLL_INSET) {
148                 if (ev.argument.find('.') != ev.argument.npos) {
149                         float const xx = static_cast<float>(strToDbl(ev.argument));
150                         scroll(ev.view(), xx);
151                 } else {
152                         int const xx = strToInt(ev.argument);
153                         scroll(ev.view(), xx);
154                 }
155                 ev.view()->updateInset(this, false);
156
157                 return DISPATCHED;
158         }
159         return UNDISPATCHED;
160 }
161
162
163 int UpdatableInset::getMaxWidth(BufferView * bv, UpdatableInset const *) const
164 {
165         int w;
166         if (owner()) {
167                 w = static_cast<UpdatableInset*>
168                         (owner())->getMaxWidth(bv, this);
169         } else {
170                 w = bv->text->workWidth(*bv, const_cast<UpdatableInset *>(this));
171         }
172         if (w < 0) {
173                 return -1;
174         }
175         // check for margins left/right and extra right margin "const 5"
176         if ((w - ((2 * TEXT_TO_INSET_OFFSET) + 5)) >= 0)
177                 w -= (2 * TEXT_TO_INSET_OFFSET) + 5;
178         if (topx_set && owner()) {
179                 w -= top_x;
180                 w += owner()->x();
181         } else if (owner()) {
182                 // this is needed as otherwise we might have a too large inset if
183                 // its top_x afterwards changes to LeftMargin so we try to put at
184                 // least the default margin as top_x
185                 w -= 20;
186         }
187         if (w < 10) {
188                 w = 10;
189         }
190         return w;
191 }
192
193
194 LyXCursor const & Inset::cursor(BufferView * bv) const
195 {
196         if (owner())
197                 return owner()->getLyXText(bv, false)->cursor;
198         return bv->text->cursor;
199 }
200
201
202 WordLangTuple const
203 UpdatableInset::selectNextWordToSpellcheck(BufferView *bv, float & value) const
204 {
205         // we have to unlock ourself in this function by default!
206         bv->unlockInset(const_cast<UpdatableInset *>(this));
207         value = 0;
208         return WordLangTuple();
209 }
210
211
212 bool UpdatableInset::nextChange(BufferView * bv, lyx::pos_type &)
213 {
214         // we have to unlock ourself in this function by default!
215         bv->unlockInset(const_cast<UpdatableInset *>(this));
216         return false;
217 }
218
219  
220 bool UpdatableInset::searchForward(BufferView * bv, string const &,
221                                    bool, bool)
222 {
223         // we have to unlock ourself in this function by default!
224         bv->unlockInset(const_cast<UpdatableInset *>(this));
225         return false;
226 }
227
228
229 bool UpdatableInset::searchBackward(BufferView * bv, string const &,
230                                     bool, bool)
231 {
232         // we have to unlock ourself in this function by default!
233         bv->unlockInset(const_cast<UpdatableInset *>(this));
234         return false;
235 }