]> git.lyx.org Git - lyx.git/blob - src/lyxcursor.h
322dd38dc9375edd268cfaff51d5d01db2c73c87
[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 #ifndef _LYXCURSOR_H
11 #define _LYXCURSOR_H
12
13 class LyXParagraph;
14 struct Row;
15
16 /** All these variavles should be explained. Matthias?
17  */
18 struct LyXCursor {
19         ///
20         LyXParagraph *par;
21         ///
22         int pos;
23         ///
24         int x;
25         ///
26         int x_fix;
27         ///
28         long y;
29         ///
30         Row *row;
31 };
32
33 #endif