mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
a040c0bc6f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@314 a592a061-630c-0410-9148-cb99ea01b6c8
36 lines
549 B
C++
36 lines
549 B
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright (C) 1995 Matthias Ettrich
|
|
*
|
|
* ====================================================== */
|
|
|
|
#ifndef LYXCURSOR_H
|
|
#define LYXCURSOR_H
|
|
|
|
#include "lyxparagraph.h"
|
|
|
|
struct Row;
|
|
|
|
/** All these variavles should be explained. Matthias?
|
|
*/
|
|
struct LyXCursor {
|
|
///
|
|
LyXParagraph * par;
|
|
///
|
|
LyXParagraph::size_type pos;
|
|
///
|
|
int x;
|
|
///
|
|
int x_fix;
|
|
///
|
|
long y;
|
|
///
|
|
Row * row;
|
|
};
|
|
|
|
#endif
|