]> git.lyx.org Git - lyx.git/blob - src/BufferView_pimpl.h
7dea067f9345c6368a99155c3a0a9a9bc8484c28
[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 loadLyXFile(string const &, bool);
59         ///
60         void repaint();
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 toggleToggle();
99         ///
100         void center();
101         ///
102         bool insertInset(Inset * inset, string const & lout = string());
103         ///
104         void updateInset(Inset * inset);
105         /// a function should be executed from the workarea
106         bool workAreaDispatch(FuncRequest const & ev);
107         /// a function should be executed
108         bool dispatch(FuncRequest const & ev);
109 private:
110         /// An error list (replaces the error insets)
111         ErrorList errorlist_;
112
113         /// track changes for the document
114         void trackChanges();
115
116         ///
117         friend class BufferView;
118
119         ///
120         BufferView * bv_;
121         ///
122         LyXView * owner_;
123         ///
124         Buffer * buffer_;
125         ///
126         boost::scoped_ptr<LyXScreen> screen_;
127         ///
128         boost::scoped_ptr<WorkArea> workarea_;
129         ///
130         Timeout cursor_timeout;
131         ///
132         void stuffClipboard(string const &) const;
133         ///
134         bool using_xterm_cursor;
135         ///
136         struct Position {
137                 /// Filename
138                 string filename;
139                 /// Cursor paragraph Id
140                 int par_id;
141                 /// Cursor position
142                 lyx::pos_type par_pos;
143                 ///
144                 Position() : par_id(0), par_pos(0) {}
145                 ///
146                 Position(string const & f, int id, lyx::pos_type pos)
147                         : filename(f), par_id(id), par_pos(pos) {}
148         };
149         ///
150         std::vector<Position> saved_positions;
151         /// Get next inset of this class from current cursor position
152         Inset * getInsetByCode(Inset::Code code);
153         ///
154         void MenuInsertLyXFile(string const & filen);
155         /// our workarea
156         WorkArea & workarea() const;
157 };
158 #endif // BUFFERVIEW_PIMPL_H