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