This commit was manufactured by cvs2svn to create branch 'LyX-Team'.
[lyx.git] / src / lyxcursor.h
blob322dd38dc9375edd268cfaff51d5d01db2c73c87
1 // -*- C++ -*-
2 /* This file is part of
3 * ======================================================
4 *
5 * LyX, The Document Processor
6 *
7 * Copyright (C) 1995 Matthias Ettrich
9 *======================================================*/
10 #ifndef _LYXCURSOR_H
11 #define _LYXCURSOR_H
13 class LyXParagraph;
14 struct Row;
16 /** All these variavles should be explained. Matthias?
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;
33 #endif