This commit was manufactured by cvs2svn to create tag
[lyx.git] / src / lyxcursor.h
blob12a25b08188b48681c53556e34a0a15a46fa57e3
1 // -*- C++ -*-
2 /* This file is part of
3 * ======================================================
4 *
5 * LyX, The Document Processor
6 *
7 * Copyright (C) 1995 Matthias Ettrich
9 *======================================================*/
11 #ifndef LYXCURSOR_H
12 #define LYXCURSOR_H
14 #include "lyxparagraph.h"
16 struct Row;
18 /** All these variavles should be explained. Matthias?
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;
40 #endif