2003-12-15 11:36:19 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file cursor_slice.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
2004-01-13 12:28:35 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Matthias Ettrich
|
|
|
|
|
* \author John Levon
|
2003-12-15 11:36:19 +00:00
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2004-01-13 12:28:35 +00:00
|
|
|
|
* \author Dekel Tsur
|
|
|
|
|
* \author J<EFBFBD>rgen Vigna
|
2003-12-15 11:36:19 +00:00
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef CURSORSLICE_H
|
|
|
|
|
#define CURSORSLICE_H
|
|
|
|
|
|
|
|
|
|
#include <cstddef>
|
2004-01-20 14:25:24 +00:00
|
|
|
|
#include <iosfwd>
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
2004-01-13 12:28:35 +00:00
|
|
|
|
#include "support/types.h"
|
|
|
|
|
|
2004-01-15 11:58:35 +00:00
|
|
|
|
class BufferView;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
class InsetBase;
|
|
|
|
|
class MathInset;
|
|
|
|
|
class MathArray;
|
2004-01-15 11:58:35 +00:00
|
|
|
|
class LyXText;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
class Paragraph;
|
2004-01-15 11:58:35 +00:00
|
|
|
|
class UpdatableInset;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// This encapsulates a single slice of a document iterator as used e.g.
|
|
|
|
|
/// for cursors.
|
|
|
|
|
|
|
|
|
|
// After IU, the distinction of MathInset and UpdatableInset as well as
|
|
|
|
|
// that of MathArray and LyXText should vanish. They are conceptually the
|
|
|
|
|
// same (now...)
|
|
|
|
|
|
|
|
|
|
class CursorSlice {
|
|
|
|
|
public:
|
|
|
|
|
/// type for cell number in inset
|
|
|
|
|
typedef size_t idx_type;
|
|
|
|
|
/// type for paragraph numbers positions within a cell
|
2004-01-13 12:28:35 +00:00
|
|
|
|
typedef lyx::paroffset_type par_type;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
/// type for cursor positions within a cell
|
2004-01-13 12:28:35 +00:00
|
|
|
|
typedef lyx::pos_type pos_type;
|
2004-01-15 17:34:44 +00:00
|
|
|
|
/// type for row indices
|
|
|
|
|
typedef size_t row_type;
|
|
|
|
|
/// type for col indices
|
|
|
|
|
typedef size_t col_type;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
CursorSlice();
|
|
|
|
|
///
|
|
|
|
|
explicit CursorSlice(InsetBase *);
|
|
|
|
|
|
2004-01-16 10:55:19 +00:00
|
|
|
|
/// the current inset
|
|
|
|
|
InsetBase * inset() const { return inset_; }
|
2004-01-13 12:28:35 +00:00
|
|
|
|
/// set the paragraph that contains this cursor
|
2004-01-13 18:08:13 +00:00
|
|
|
|
void idx(idx_type idx);
|
2004-01-26 10:13:15 +00:00
|
|
|
|
/// return the cell this cursor is in
|
2004-01-13 18:08:13 +00:00
|
|
|
|
idx_type idx() const;
|
2004-01-26 10:13:15 +00:00
|
|
|
|
/// return the cell this cursor is in
|
2004-01-15 17:34:44 +00:00
|
|
|
|
idx_type & idx();
|
2004-01-26 10:13:15 +00:00
|
|
|
|
/// return the last cell in this inset
|
|
|
|
|
idx_type lastidx() const { return nargs() - 1; }
|
2004-01-13 18:08:13 +00:00
|
|
|
|
/// set the paragraph that contains this cursor
|
|
|
|
|
void par(par_type par);
|
2004-01-13 12:28:35 +00:00
|
|
|
|
/// return the paragraph this cursor is in
|
|
|
|
|
par_type par() const;
|
2004-01-15 17:34:44 +00:00
|
|
|
|
/// return the paragraph this cursor is in
|
|
|
|
|
par_type & par();
|
2004-01-13 12:28:35 +00:00
|
|
|
|
/// set the position within the paragraph
|
2004-01-13 18:08:13 +00:00
|
|
|
|
void pos(pos_type pos);
|
2004-01-13 12:28:35 +00:00
|
|
|
|
/// return the position within the paragraph
|
|
|
|
|
pos_type pos() const;
|
2004-01-15 17:34:44 +00:00
|
|
|
|
/// return the position within the paragraph
|
|
|
|
|
pos_type & pos();
|
|
|
|
|
/// return the last position within the paragraph
|
|
|
|
|
pos_type lastpos() const;
|
2004-01-16 10:55:19 +00:00
|
|
|
|
/// return the number of embedded cells
|
|
|
|
|
size_t nargs() const;
|
|
|
|
|
/// return the number of embedded cells
|
|
|
|
|
size_t ncols() const;
|
|
|
|
|
/// return the number of embedded cells
|
|
|
|
|
size_t nrows() const;
|
2004-01-15 17:34:44 +00:00
|
|
|
|
/// return the grid row of the current cell
|
|
|
|
|
row_type row() const;
|
|
|
|
|
/// return the grid row of the current cell
|
|
|
|
|
col_type col() const;
|
2004-01-13 12:28:35 +00:00
|
|
|
|
|
|
|
|
|
/// FIXME
|
|
|
|
|
void boundary(bool b);
|
|
|
|
|
/// FIXME
|
|
|
|
|
bool boundary() const;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
///
|
|
|
|
|
/// texted specific stuff
|
|
|
|
|
///
|
|
|
|
|
///
|
|
|
|
|
LyXText * text() const;
|
|
|
|
|
///
|
|
|
|
|
UpdatableInset * asUpdatableInset() const;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
///
|
|
|
|
|
Paragraph & paragraph();
|
|
|
|
|
///
|
|
|
|
|
Paragraph const & paragraph() const;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
/// mathed specific stuff
|
|
|
|
|
///
|
|
|
|
|
/// returns cell corresponding to this position
|
|
|
|
|
MathArray & cell() const;
|
|
|
|
|
/// gets screen position of the thing
|
2004-01-15 11:58:35 +00:00
|
|
|
|
void getScreenPos(int & x, int & y) const;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
///
|
|
|
|
|
MathInset * asMathInset() const;
|
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
friend std::ostream & operator<<(std::ostream &, CursorSlice const &);
|
|
|
|
|
public:
|
|
|
|
|
/// pointer to an inset
|
|
|
|
|
InsetBase * inset_;
|
|
|
|
|
/// cell index of a position in this inset
|
|
|
|
|
idx_type idx_;
|
|
|
|
|
/// paragraph in this cell (used by texted)
|
|
|
|
|
par_type par_;
|
|
|
|
|
/// position in this cell
|
|
|
|
|
pos_type pos_;
|
2004-01-13 12:28:35 +00:00
|
|
|
|
/**
|
|
|
|
|
* When the cursor position is i, is the cursor is after the i-th char
|
|
|
|
|
* or before the i+1-th char ? Normally, these two interpretations are
|
|
|
|
|
* equivalent, except when the fonts of the i-th and i+1-th char
|
|
|
|
|
* differ.
|
|
|
|
|
* We use boundary_ to distinguish between the two options:
|
|
|
|
|
* If boundary_=true, then the cursor is after the i-th char
|
|
|
|
|
* and if boundary_=false, then the cursor is before the i+1-th char.
|
|
|
|
|
*
|
|
|
|
|
* We currently use the boundary only when the language direction of
|
|
|
|
|
* the i-th char is different than the one of the i+1-th char.
|
|
|
|
|
* In this case it is important to distinguish between the two
|
|
|
|
|
* cursor interpretations, in order to give a reasonable behavior to
|
|
|
|
|
* the user.
|
|
|
|
|
*/
|
|
|
|
|
bool boundary_;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// test for equality
|
|
|
|
|
bool operator==(CursorSlice const &, CursorSlice const &);
|
|
|
|
|
/// test for inequality
|
|
|
|
|
bool operator!=(CursorSlice const &, CursorSlice const &);
|
|
|
|
|
/// test for order
|
|
|
|
|
bool operator<(CursorSlice const &, CursorSlice const &);
|
2004-01-13 12:28:35 +00:00
|
|
|
|
/// test for order
|
|
|
|
|
bool operator>(CursorSlice const &, CursorSlice const &);
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
|
|
|
|
#endif
|