]> git.lyx.org Git - lyx.git/blob - src/BufferView.h
2865989f9be09f08f368b5f4b8cae08cecdffbe6
[lyx.git] / src / BufferView.h
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.
6  *
7  * \author Alfredo Braustein
8  * \author Lars Gullik Bjønnes
9  * \author John Levon
10  * \author Jürgen Vigna
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef BUFFER_VIEW_H
16 #define BUFFER_VIEW_H
17
18 #include <boost/utility.hpp>
19
20 #include <string>
21
22 class Buffer;
23 class Change;
24 class Encoding;
25 class ErrorList;
26 class FuncRequest;
27 class InsetOld;
28 class Language;
29 class LCursor;
30 class LyXText;
31 class LyXScreen;
32 class LyXView;
33 class Painter;
34 class TeXErrors;
35 class UpdatableInset;
36
37
38 /**
39  * A buffer view encapsulates a view onto a particular
40  * buffer, and allows access to operate upon it. A view
41  * is a sliding window of the entire document rendering.
42  *
43  * Eventually we will allow several views onto a single
44  * buffer, but not yet.
45  */
46 class BufferView : boost::noncopyable {
47 public:
48         /**
49          * Create a view with the given owner main window,
50          * of the given dimensions.
51          */
52         BufferView(LyXView * owner, int x, int y, int w, int h);
53
54         ~BufferView();
55
56         /// set the buffer we are viewing
57         void buffer(Buffer * b);
58         /// return the buffer being viewed
59         Buffer * buffer() const;
60
61         /// return the painter object for drawing onto the view
62         Painter & painter() const;
63         /// return the screen object for handling re-drawing
64         LyXScreen & screen() const;
65         /// return the owning main view
66         LyXView * owner() const;
67
68         /// return the visible top y
69         int top_y() const;
70
71         /// set the visible top y
72         void top_y(int);
73
74         /// resize event has happened
75         void resize();
76
77         /// reload the contained buffer
78         void reload();
79         /// create a new buffer based on template
80         bool newFile(std::string const & fname, std::string const & tname,
81                      bool named = true);
82         /// load a buffer into the view
83         bool loadLyXFile(std::string const & name, bool tolastfiles = true);
84
85         /// fit the user cursor within the visible view
86         bool fitCursor();
87         /// perform pending painting updates
88         void update();
89         /// reset the scrollbar to reflect current view position
90         void updateScrollbar();
91         /// FIXME
92         void redoCurrentBuffer();
93
94         /// FIXME
95         bool available() const;
96
97         /// Save the current position as bookmark i
98         void savePosition(unsigned int i);
99         /// Restore the position from bookmark i
100         void restorePosition(unsigned int i);
101         /// does the given bookmark have a saved position ?
102         bool isSavedPosition(unsigned int i);
103
104         /// return the current change at the cursor
105         Change const getCurrentChange();
106
107         /**
108          * This holds the mapping between buffer paragraphs and screen rows.
109          * This should be private...but not yet. (Lgb)
110          */
111         LyXText * text;
112         /// return the lyxtext we are using
113         LyXText * getLyXText() const;
114
115         /// update paragraph dialogs
116         void updateParagraphDialog();
117
118         /// return the current encoding at the cursor
119         Encoding const * getEncoding() const;
120
121         /// return the parent language of the given inset
122         Language const * getParentLanguage(InsetOld * inset) const;
123
124         /// replace the currently selected word
125         void replaceWord(std::string const & replacestring);
126
127         /// move cursor to the named label
128         void gotoLabel(std::string const & label);
129
130         /// undo last action
131         void undo();
132         /// redo last action
133         void redo();
134
135         /// get the stored error list
136         ErrorList const & getErrorList() const;
137         /// show the error list to the user
138         void showErrorList(std::string const &) const;
139         /// set the cursor based on the given TeX source row
140         void setCursorFromRow(int row);
141
142         /**
143          * Insert an inset into the buffer.
144          * Place it in a layout of lout,
145          */
146         bool insertInset(InsetOld * inset, std::string const & lout = std::string());
147
148         /// Inserts a lyx file at cursor position. return false if it fails
149         bool insertLyXFile(std::string const & file);
150
151         /// FIXME
152         bool fitLockedInsetCursor(int x, int y, int asc, int desc);
153
154         /// hide the cursor if it is visible
155         void hideCursor();
156
157         /// center the document view around the cursor
158         void center();
159         /// scroll document by the given number of lines of default height
160         void scroll(int lines);
161         /// Scroll the view by a number of pixels
162         void scrollDocView(int);
163
164         /// return the pixel width of the document view
165         int workWidth() const;
166         /// return the pixel height of the document view
167         int workHeight() const;
168
169         /// switch between primary and secondary keymaps for RTL entry
170         void switchKeyMap();
171
172         /// FIXME
173         bool ChangeRefsIfUnique(std::string const & from, std::string const & to);
174
175         /// get the contents of the window system clipboard
176         std::string const getClipboard() const;
177         /// fill the window system clipboard
178         void stuffClipboard(std::string const &) const;
179         /// tell the window system we have a selection
180         void haveSelection(bool sel);
181
182         /// execute the given function
183         bool dispatch(FuncRequest const & argument);
184         
185         /// set target x position of cursor
186         void x_target(int x);
187         /// return target x position of cursor
188         int x_target() const;
189
190         /// access to cursor
191         LCursor & cursor();
192         /// access to cursor
193         LCursor const & cursor() const;
194         ///
195         UpdatableInset * innerInset() const;
196
197 private:
198         struct Pimpl;
199         friend struct BufferView::Pimpl;
200
201         Pimpl * pimpl_;
202
203         /**
204          * The target x position of the cursor. This is used for when
205          * we have text like :
206          *
207          * blah blah blah blah| blah blah blah
208          * blah blah blah
209          * blah blah blah blah blah blah
210          *
211          * When we move onto row 3, we would like to be vertically aligned
212          * with where we were in row 1, despite the fact that row 2 is
213          * shorter than x()
214          */
215         int x_target_;
216
217 };
218
219 #endif // BUFFERVIEW_H