]> git.lyx.org Git - lyx.git/blob - src/lyxcursor.h
white-space changes, removed definitions.h several enum changes because of this,...
[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         ///
24         LyXParagraph::size_type pos;
25         ///
26         int x;
27         ///
28         int x_fix;
29         ///
30         long y;
31         ///
32         Row * row;
33 };
34
35 #endif