* qt_helpers.cpp:
[lyx.git] / src / BufferView.h
blob6c2b53fcb6a0ec820171acb0009885ab45d88571
1 // -*- C++ -*-
2 /**
3 * \file BufferView.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Alfredo Braustein
8 * \author Lars Gullik Bjønnes
9 * \author John Levon
10 * \author Jürgen Vigna
12 * Full author contact details are available in file CREDITS.
15 #ifndef BUFFER_VIEW_H
16 #define BUFFER_VIEW_H
18 #include "update_flags.h"
20 #include "support/strfwd.h"
21 #include "support/types.h"
23 namespace lyx {
25 namespace support { class FileName; }
27 namespace frontend { class Painter; }
28 namespace frontend { class GuiBufferViewDelegate; }
30 class Buffer;
31 class Change;
32 class CoordCache;
33 class Cursor;
34 class DocIterator;
35 class FuncRequest;
36 class FuncStatus;
37 class Intl;
38 class Inset;
39 class ParIterator;
40 class ParagraphMetrics;
41 class Point;
42 class Text;
43 class TextMetrics;
45 enum CursorStatus {
46 CUR_INSIDE,
47 CUR_ABOVE,
48 CUR_BELOW
51 /// Scrollbar Parameters.
52 struct ScrollbarParameters
54 ScrollbarParameters()
55 : min(0), max(0), position(0), single_step(1), page_step(1)
57 /// Minimum scrollbar position in pixels.
58 int min;
59 /// Maximum scrollbar position in pixels.
60 int max;
61 /// Current position in the document in pixels.
62 int position;
63 /// Line-scroll amount in pixels.
64 int single_step;
65 /// Page-scroll amount in pixels.
66 int page_step;
69 /// Screen view of a Buffer.
70 /**
71 * A BufferView encapsulates a view onto a particular
72 * buffer, and allows access to operate upon it. A view
73 * is a sliding window of the entire document rendering.
74 * It is the official interface between the LyX core and
75 * the frontend WorkArea.
77 * \sa WorkArea
78 * \sa Buffer
79 * \sa CoordCache
81 class BufferView {
82 public:
83 ///
84 explicit BufferView(Buffer & buffer);
85 ///
86 ~BufferView();
88 /// return the buffer being viewed.
89 Buffer & buffer();
90 Buffer const & buffer() const;
92 ///
93 void setFullScreen(bool full_screen) { full_screen_ = full_screen; }
95 /// right margin
96 int rightMargin() const;
98 /// left margin
99 int leftMargin() const;
101 /// \return true if the BufferView is at the top of the document.
102 bool isTopScreen() const;
104 /// \return true if the BufferView is at the bottom of the document.
105 bool isBottomScreen() const;
107 /// perform pending metrics updates.
108 /** \c Update::FitCursor means first to do a FitCursor, and to
109 * force an update if screen position changes.
110 * \c Update::Force means to force an update in any case.
111 * \retval true if a screen redraw is needed
113 void processUpdateFlags(Update::flags flags);
115 /// move the screen to fit the cursor.
116 /// Only to be called with good y coordinates (after a bv::metrics)
117 bool fitCursor();
118 /// reset the scrollbar to reflect current view position.
119 void updateScrollbar();
120 /// return the Scrollbar Parameters.
121 ScrollbarParameters const & scrollbarParameters() const;
122 /// \return Tool tip for the given position.
123 docstring toolTip(int x, int y) const;
124 /// \return the context menu for the given position.
125 docstring contextMenu(int x, int y) const;
127 /// Save the current position as bookmark.
128 /// if idx == 0, save to temp_bookmark
129 void saveBookmark(unsigned int idx);
130 /// goto a specified position, try top_id first, and then bottom_pit.
131 /// \return true if success
132 bool moveToPosition(
133 pit_type bottom_pit, ///< Paragraph pit, used when par_id is zero or invalid.
134 pos_type bottom_pos, ///< Paragraph pit, used when par_id is zero or invalid.
135 int top_id, ///< Paragraph ID, \sa Paragraph
136 pos_type top_pos ///< Position in the \c Paragraph
138 /// return the current change at the cursor.
139 Change const getCurrentChange() const;
141 /// move cursor to the named label.
142 void gotoLabel(docstring const & label);
144 /// set the cursor based on the given TeX source row.
145 void setCursorFromRow(int row);
147 /// set cursor to the given inset. Return true if found.
148 bool setCursorFromInset(Inset const *);
149 /// Recenters the BufferView such that the passed cursor
150 /// is in the center.
151 void recenter();
152 /// Ensure that the BufferView cursor is visible.
153 /// This method will automatically scroll and update the BufferView
154 /// if needed.
155 void showCursor();
156 /// Ensure the passed cursor \p dit is visible.
157 /// This method will automatically scroll and update the BufferView
158 /// if needed.
159 /// \param recenter Whether the cursor should be centered on screen
160 void showCursor(DocIterator const & dit, bool recenter = false);
161 /// Scroll to the cursor.
162 void scrollToCursor();
163 /// Scroll to the cursor.
164 /// \param recenter Whether the cursor should be centered on screen
165 bool scrollToCursor(DocIterator const & dit, bool recenter);
166 /// LFUN_SCROLL Helper.
167 void lfunScroll(FuncRequest const & cmd);
168 /// scroll down document by the given number of pixels.
169 int scrollDown(int pixels);
170 /// scroll up document by the given number of pixels.
171 int scrollUp(int pixels);
172 /// scroll document by the given number of pixels.
173 int scroll(int pixels);
174 /// Scroll the view by a number of pixels.
175 void scrollDocView(int pixels);
176 /// Set the cursor position based on the scrollbar one.
177 void setCursorFromScrollbar();
179 /// return the pixel width of the document view.
180 int workWidth() const;
181 /// return the pixel height of the document view.
182 int workHeight() const;
184 /// return the inline completion postfix.
185 docstring const & inlineCompletion() const;
186 /// return the number of unique characters in the inline completion.
187 size_t const & inlineCompletionUniqueChars() const;
188 /// return the position in the buffer of the inline completion postfix.
189 DocIterator const & inlineCompletionPos() const;
190 /// set the inline completion postfix and its position in the buffer.
191 /// Updates the updateFlags in \c cur.
192 void setInlineCompletion(Cursor & cur, DocIterator const & pos,
193 docstring const & completion, size_t uniqueChars = 0);
195 /// translate and insert a character, using the correct keymap.
196 void translateAndInsert(char_type c, Text * t, Cursor & cur);
198 /// \return true if we've made a decision
199 bool getStatus(FuncRequest const & cmd, FuncStatus & flag);
200 /// execute the given function.
201 /// \return true if the function has been processed.
202 bool dispatch(FuncRequest const & argument);
204 /// request an X11 selection.
205 /// \return the selected string.
206 docstring const requestSelection();
207 /// clear the X11 selection.
208 void clearSelection();
210 /// resize the BufferView.
211 /// \sa WorkArea
212 void resize(int width, int height);
214 /// dispatch method helper for \c WorkArea
215 /// \sa WorkArea
216 void mouseEventDispatch(FuncRequest const & ev);
218 /// access to anchor.
219 pit_type anchor_ref() const;
222 CursorStatus cursorStatus(DocIterator const & dit) const;
223 /// access to full cursor.
224 Cursor & cursor();
225 /// access to full cursor.
226 Cursor const & cursor() const;
227 /// sets cursor.
228 /// This will also open all relevant collapsable insets.
229 void setCursor(DocIterator const &);
230 /// Check deleteEmptyParagraphMechanism and update metrics if needed.
231 /// \retval true if an update was needed.
232 bool checkDepm(Cursor & cur, Cursor & old);
233 /// sets cursor.
234 /// This is used when handling LFUN_MOUSE_PRESS.
235 bool mouseSetCursor(Cursor & cur, bool select = false);
237 /// sets the selection.
238 /* When \c backwards == false, set anchor
239 * to \c cur and cursor to \c cur + \c length. When \c
240 * backwards == true, set anchor to \c cur and cursor to \c
241 * cur + \c length.
243 void putSelectionAt(DocIterator const & cur,
244 int length, bool backwards);
246 /// update the internal \c ViewMetricsInfo.
247 void updateMetrics();
250 TextMetrics const & textMetrics(Text const * t) const;
251 TextMetrics & textMetrics(Text const * t);
253 ParagraphMetrics const & parMetrics(Text const *, pit_type) const;
256 CoordCache & coordCache();
258 CoordCache const & coordCache() const;
261 Point getPos(DocIterator const & dit, bool boundary) const;
262 /// is the paragraph of the cursor visible ?
263 bool paragraphVisible(DocIterator const & dit) const;
264 /// is the cursor currently visible in the view
265 bool cursorInView(Point const & p, int h) const;
266 /// get the position and height of the cursor
267 void cursorPosAndHeight(Point & p, int & h) const;
271 void draw(frontend::Painter & pain);
273 /// get this view's keyboard map handler.
274 Intl & getIntl();
276 Intl const & getIntl() const;
279 // Messages to the GUI
281 /// This signal is emitted when some message shows up.
282 void message(docstring const & msg);
284 /// This signal is emitted when some dialog needs to be shown.
285 void showDialog(std::string const & name);
287 /// This signal is emitted when some dialog needs to be shown with
288 /// some data.
289 void showDialog(std::string const & name, std::string const & data,
290 Inset * inset = 0);
292 /// This signal is emitted when some dialogs needs to be updated.
293 void updateDialog(std::string const & name, std::string const & data);
296 void setGuiDelegate(frontend::GuiBufferViewDelegate *);
299 docstring contentsOfPlaintextFile(support::FileName const & f);
300 // Insert plain text file (if filename is empty, prompt for one)
301 void insertPlaintextFile(support::FileName const & f, bool asParagraph);
303 void insertLyXFile(support::FileName const & f);
304 /// save temporary bookmark for jump back navigation
305 void bookmarkEditPosition();
307 private:
308 /// noncopyable
309 BufferView(BufferView const &);
310 void operator=(BufferView const &);
312 // the position relative to (0, baseline) of outermost paragraph
313 Point coordOffset(DocIterator const & dit, bool boundary) const;
314 /// Update current paragraph metrics.
315 /// \return true if no further update is needed.
316 bool singleParUpdate();
318 /// The minimal size of the document that is visible. Used
319 /// when it is allowed to scroll below the document.
320 int minVisiblePart();
322 /// Search recursively for the the innermost inset that covers (x, y) position.
323 /// \retval 0 if no inset is found.
324 Inset const * getCoveringInset(
325 Text const & text, //< The Text where we start searching.
326 int x, //< x-coordinate on screen
327 int y //< y-coordinate on screen
328 ) const;
331 int width_;
333 int height_;
335 bool full_screen_;
337 Buffer & buffer_;
339 struct Private;
340 Private * const d;
343 /// some space for drawing the 'nested' markers (in pixel)
344 inline int nestMargin() { return 15; }
346 /// margin for changebar
347 inline int changebarMargin() { return 12; }
349 } // namespace lyx
351 #endif // BUFFERVIEW_H