]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.h
dfa0674a65995af0ed8b2f2d9cb025af01765ccc
[lyx.git] / src / BufferView_pimpl.h
1 // -*- C++ -*-
2 /**
3  * \file BufferView_pimpl.h
4  * Copyright 2002 the LyX Team
5  * Read the file COPYING
6  *
7  * \author various
8  */
9
10 #ifndef BUFFERVIEW_PIMPL_H
11 #define BUFFERVIEW_PIMPL_H
12
13 #include "errorlist.h"
14 #include "BufferView.h"
15 #include "frontends/Timeout.h"
16 #include "frontends/key_state.h"
17 #include "frontends/LyXKeySym.h"
18 #include "support/types.h"
19
20 #include <boost/scoped_ptr.hpp>
21 #include <boost/signals/trackable.hpp>
22
23
24 class Change;
25 class LyXView;
26 class WorkArea;
27 class LyXScreen;
28 class FuncRequest;
29
30 ///
31 struct BufferView::Pimpl : public boost::signals::trackable {
32         ///
33         Pimpl(BufferView * i, LyXView * o,
34               int xpos, int ypos, int width, int height);
35         ///
36         Painter & painter() const;
37         /// return the screen for this bview
38         LyXScreen & screen() const;
39         ///
40         void buffer(Buffer *);
41         /// Return true if the cursor was fitted.
42         bool fitCursor();
43         ///
44         void redoCurrentBuffer();
45         ///
46         int resizeCurrentBuffer();
47         ///
48         void update();
49         //
50         void update(LyXText *, BufferView::UpdateCodes);
51         /// update the toplevel lyx text
52         void update(BufferView::UpdateCodes);
53         /**
54          * Repaint pixmap. Used for when we've made a visible
55          * change but don't need the full update() logic
56          */
57         ///
58         bool newFile(string const &, string const &, bool);
59         ///
60         bool loadLyXFile(string const &, bool);
61         ///
62         void workAreaResize();
63         ///
64         void updateScrollbar();
65         ///
66         void scrollDocView(int value);
67         /**
68          * Wheel mouse scroll, move by multiples of text->defaultRowHeight().
69          */
70         void scroll(int lines);
71         ///
72         void workAreaKeyPress(LyXKeySymPtr key, key_modifier::state state);
73         ///
74         void selectionRequested();
75         ///
76         void selectionLost();
77         ///
78         void cursorToggle();
79         ///
80         bool available() const;
81         /// get the change at the cursor position
82         Change const getCurrentChange();
83         ///
84         void beforeChange(LyXText *);
85         ///
86         void savePosition(unsigned int i);
87         ///
88         void restorePosition(unsigned int i);
89         ///
90         bool isSavedPosition(unsigned int i);
91         ///
92         void switchKeyMap();
93         ///
94         void insetUnlock();
95         ///
96         void toggleSelection(bool = true);
97         ///
98         void center();
99         ///
100         bool insertInset(InsetOld * inset, string const & lout = string());
101         ///
102         void updateInset(InsetOld * inset);
103         /// a function should be executed from the workarea
104         bool workAreaDispatch(FuncRequest const & ev);
105         /// a function should be executed
106         bool dispatch(FuncRequest const & ev);
107 private:
108         /// An error list (replaces the error insets)
109         ErrorList errorlist_;
110         /// add an error to the list
111         void addError(ErrorItem const &);
112         /// buffer errors signal connection
113         boost::signals::connection errorConnection_;
114         /// buffer messages signal connection
115         boost::signals::connection messageConnection_;
116         /// buffer busy status signal connection
117         boost::signals::connection busyConnection_;
118         /// buffer title changed signal connection
119         boost::signals::connection titleConnection_;
120         /// buffer reset timers signal connection
121         boost::signals::connection timerConnection_;
122         /// buffer readonly status changed signal connection
123         boost::signals::connection readonlyConnection_;
124         /// buffer closing signal connection
125         boost::signals::connection closingConnection_;
126         /// connect to signals in the given buffer
127         void connectBuffer(Buffer & buf);
128         /// disconnect from signals in the given buffer
129         void disconnectBuffer();
130         /// track changes for the document
131         void trackChanges();
132         /// notify readonly status
133         void showReadonly(bool);
134
135         ///
136         friend class BufferView;
137
138         ///
139         BufferView * bv_;
140         ///
141         LyXView * owner_;
142         ///
143         Buffer * buffer_;
144         ///
145         boost::scoped_ptr<LyXScreen> screen_;
146         ///
147         boost::scoped_ptr<WorkArea> workarea_;
148         ///
149         Timeout cursor_timeout;
150         ///
151         void stuffClipboard(string const &) const;
152         ///
153         bool using_xterm_cursor;
154         ///
155         struct Position {
156                 /// Filename
157                 string filename;
158                 /// Cursor paragraph Id
159                 int par_id;
160                 /// Cursor position
161                 lyx::pos_type par_pos;
162                 ///
163                 Position() : par_id(0), par_pos(0) {}
164                 ///
165                 Position(string const & f, int id, lyx::pos_type pos)
166                         : filename(f), par_id(id), par_pos(pos) {}
167         };
168         ///
169         std::vector<Position> saved_positions;
170         /// Get next inset of this class from current cursor position
171         InsetOld * getInsetByCode(InsetOld::Code code);
172         ///
173         void MenuInsertLyXFile(string const & filen);
174         /// our workarea
175         WorkArea & workarea() const;
176 };
177 #endif // BUFFERVIEW_PIMPL_H