]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.h
More 'standard conformant blurb' nonsense.
[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         void resizeCurrentBuffer();
47         ///
48         void update();
49         /**
50          * Repaint pixmap. Used for when we've made a visible
51          * change but don't need the full update() logic
52          */
53         ///
54         bool newFile(string const &, string const &, bool);
55         ///
56         bool loadLyXFile(string const &, bool);
57         ///
58         void workAreaResize();
59         ///
60         void updateScrollbar();
61         ///
62         void scrollDocView(int value);
63         /**
64          * Wheel mouse scroll, move by multiples of text->defaultRowHeight().
65          */
66         void scroll(int lines);
67         ///
68         void workAreaKeyPress(LyXKeySymPtr key, key_modifier::state state);
69         ///
70         void selectionRequested();
71         ///
72         void selectionLost();
73         ///
74         void cursorToggle();
75         ///
76         bool available() const;
77         /// get the change at the cursor position
78         Change const getCurrentChange();
79         ///
80         void beforeChange(LyXText *);
81         ///
82         void savePosition(unsigned int i);
83         ///
84         void restorePosition(unsigned int i);
85         ///
86         bool isSavedPosition(unsigned int i);
87         ///
88         void switchKeyMap();
89         ///
90         void insetUnlock();
91         ///
92         void center();
93         ///
94         bool insertInset(InsetOld * inset, string const & lout = string());
95         ///
96         void updateInset();
97         /// a function should be executed from the workarea
98         bool workAreaDispatch(FuncRequest const & ev);
99         /// a function should be executed
100         bool dispatch(FuncRequest const & ev);
101 private:
102         /// An error list (replaces the error insets)
103         ErrorList errorlist_;
104         /// add an error to the list
105         void addError(ErrorItem const &);
106         /// buffer errors signal connection
107         boost::signals::connection errorConnection_;
108         /// buffer messages signal connection
109         boost::signals::connection messageConnection_;
110         /// buffer busy status signal connection
111         boost::signals::connection busyConnection_;
112         /// buffer title changed signal connection
113         boost::signals::connection titleConnection_;
114         /// buffer reset timers signal connection
115         boost::signals::connection timerConnection_;
116         /// buffer readonly status changed signal connection
117         boost::signals::connection readonlyConnection_;
118         /// buffer closing signal connection
119         boost::signals::connection closingConnection_;
120         /// connect to signals in the given buffer
121         void connectBuffer(Buffer & buf);
122         /// disconnect from signals in the given buffer
123         void disconnectBuffer();
124         /// track changes for the document
125         void trackChanges();
126         /// notify readonly status
127         void showReadonly(bool);
128
129         ///
130         friend class BufferView;
131
132         ///
133         BufferView * bv_;
134         ///
135         LyXView * owner_;
136         ///
137         Buffer * buffer_;
138         ///
139         boost::scoped_ptr<LyXScreen> screen_;
140         ///
141         boost::scoped_ptr<WorkArea> workarea_;
142         ///
143         Timeout cursor_timeout;
144         ///
145         void stuffClipboard(string const &) const;
146         ///
147         bool using_xterm_cursor;
148         ///
149         struct Position {
150                 /// Filename
151                 string filename;
152                 /// Cursor paragraph Id
153                 int par_id;
154                 /// Cursor position
155                 lyx::pos_type par_pos;
156                 ///
157                 Position() : par_id(0), par_pos(0) {}
158                 ///
159                 Position(string const & f, int id, lyx::pos_type pos)
160                         : filename(f), par_id(id), par_pos(pos) {}
161         };
162         ///
163         std::vector<Position> saved_positions;
164         /// Get next inset of this class from current cursor position
165         InsetOld * getInsetByCode(InsetOld::Code code);
166         ///
167         void MenuInsertLyXFile(string const & filen);
168         /// our workarea
169         WorkArea & workarea() const;
170 };
171 #endif // BUFFERVIEW_PIMPL_H