home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lyx-0.13.2.tar.gz / lyx-0.13.2.tar / lyx-0.13.2 / src / lyxcursor.h < prev    next >
C/C++ Source or Header  |  1998-04-23  |  518b  |  34 lines

  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
  34.