]> git.lyx.org Git - lyx.git/blob - src/lyxcursor.h
9699f7561474d73198eb6b7127ff66e2c8619be3
[lyx.git] / src / lyxcursor.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  * 
5  *           LyX, The Document Processor
6  *       
7  *           Copyright 1995 Matthias Ettrich
8  *           Copyright 1995-2000 The LyX Team.
9  *
10  * ====================================================== */
11
12 #ifndef LYXCURSOR_H
13 #define LYXCURSOR_H
14
15 #include "lyxparagraph.h"
16
17 struct Row;
18
19 /** All these variavles should be explained. Matthias?
20  */
21 struct LyXCursor {
22         ///
23         LyXParagraph * par;
24         ///
25         LyXParagraph::size_type pos;
26         ///
27         int x;
28         ///
29         int x_fix;
30         ///
31         unsigned long y;
32         ///
33         Row * row;
34 };
35
36 #endif