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
|
|
|
|
|
|
2005-07-18 11:00:15 +00:00
|
|
|
|
#include "insets/insetbase.h"
|
2004-01-13 12:28:35 +00:00
|
|
|
|
#include "support/types.h"
|
|
|
|
|
|
2004-03-18 16:41:45 +00:00
|
|
|
|
#include <cstddef>
|
|
|
|
|
#include <iosfwd>
|
|
|
|
|
|
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;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
|
|
|
|
/// This encapsulates a single slice of a document iterator as used e.g.
|
|
|
|
|
/// for cursors.
|
|
|
|
|
|
2005-07-15 22:10:25 +00:00
|
|
|
|
// After IU, the distinction of MathInset and InsetOld as well as
|
2003-12-15 11:36:19 +00:00
|
|
|
|
// 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-11-24 21:53:46 +00:00
|
|
|
|
typedef lyx::pit_type pit_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();
|
|
|
|
|
///
|
2004-03-18 12:53:43 +00:00
|
|
|
|
explicit CursorSlice(InsetBase &);
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
2004-01-16 10:55:19 +00:00
|
|
|
|
/// the current inset
|
2004-03-18 12:53:43 +00:00
|
|
|
|
InsetBase & inset() const { return *inset_; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
/// return the cell this cursor is in
|
2004-03-25 09:16:36 +00:00
|
|
|
|
idx_type idx() const { return idx_; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
/// return the cell this cursor is in
|
2004-03-25 09:16:36 +00:00
|
|
|
|
idx_type & idx() { return idx_; }
|
2004-01-26 10:13:15 +00:00
|
|
|
|
/// return the last cell in this inset
|
|
|
|
|
idx_type lastidx() const { return nargs() - 1; }
|
2004-11-30 01:59:49 +00:00
|
|
|
|
/// return the offset of the paragraph this cursor is in
|
2004-11-24 21:53:46 +00:00
|
|
|
|
pit_type pit() const { return pit_; }
|
2004-11-30 01:59:49 +00:00
|
|
|
|
/// set the offset of the paragraph this cursor is in
|
2004-11-24 21:53:46 +00:00
|
|
|
|
pit_type & pit() { return pit_; }
|
2004-03-18 16:41:45 +00:00
|
|
|
|
/// increments the paragraph this cursor is in
|
|
|
|
|
void incrementPar();
|
2005-06-30 18:02:39 +00:00
|
|
|
|
/// decrements the paragraph this cursor is in
|
2004-03-18 16:41:45 +00:00
|
|
|
|
void decrementPar();
|
2004-01-13 12:28:35 +00:00
|
|
|
|
/// return the position within the paragraph
|
2004-03-25 09:16:36 +00:00
|
|
|
|
pos_type pos() const { return pos_; }
|
2004-01-15 17:34:44 +00:00
|
|
|
|
/// return the position within the paragraph
|
2004-03-25 09:16:36 +00:00
|
|
|
|
pos_type & pos() { return pos_; }
|
2004-01-15 17:34:44 +00:00
|
|
|
|
/// 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
|
2005-07-18 11:00:15 +00:00
|
|
|
|
size_t nargs() const { return inset_->nargs(); }
|
|
|
|
|
/// return the number of columns (1 in non-grid-like insets)
|
|
|
|
|
size_t ncols() const { return inset_->ncols(); }
|
|
|
|
|
/// return the number of rows (1 in non-grid-like insets)
|
|
|
|
|
size_t nrows() const { return inset_->nrows(); }
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/*!
|
|
|
|
|
* \return the grid row of the current cell.
|
|
|
|
|
* This does only make sense in grid like insets.
|
|
|
|
|
*/
|
2004-01-15 17:34:44 +00:00
|
|
|
|
row_type row() const;
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/*!
|
|
|
|
|
* \return the grid column of the current cell.
|
|
|
|
|
* This does only make sense in grid like insets.
|
|
|
|
|
*/
|
2004-01-15 17:34:44 +00:00
|
|
|
|
col_type col() const;
|
2004-01-13 12:28:35 +00:00
|
|
|
|
|
2003-12-15 11:36:19 +00:00
|
|
|
|
///
|
|
|
|
|
/// texted specific stuff
|
|
|
|
|
///
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/// returns text corresponding to this position
|
2005-07-18 11:00:15 +00:00
|
|
|
|
LyXText * text() { return inset_->getText(idx_); }
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/// returns text corresponding to this position
|
2005-07-18 11:00:15 +00:00
|
|
|
|
LyXText const * text() const { return inset_->getText(idx_); }
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/// paragraph in this cell
|
2004-01-20 14:25:24 +00:00
|
|
|
|
Paragraph & paragraph();
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/// paragraph in this cell
|
2004-01-20 14:25:24 +00:00
|
|
|
|
Paragraph const & paragraph() const;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
/// mathed specific stuff
|
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
|
/// returns the owning inset if it is a InsetMath, else 0
|
|
|
|
|
InsetMath * asInsetMath() const { return inset_->asInsetMath(); }
|
2003-12-15 11:36:19 +00:00
|
|
|
|
/// returns cell corresponding to this position
|
|
|
|
|
MathArray & cell() const;
|
|
|
|
|
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/// write some debug information to \p os
|
2003-12-15 11:36:19 +00:00
|
|
|
|
friend std::ostream & operator<<(std::ostream &, CursorSlice const &);
|
|
|
|
|
public:
|
2004-03-18 16:41:45 +00:00
|
|
|
|
/// pointer to 'owning' inset. This is some kind of cache.
|
2003-12-15 11:36:19 +00:00
|
|
|
|
InsetBase * inset_;
|
2004-03-18 16:41:45 +00:00
|
|
|
|
private:
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/*!
|
|
|
|
|
* Cell index of a position in this inset.
|
|
|
|
|
* This is the primary cell information also for grid like insets,
|
|
|
|
|
* although we have the convenience functions row() and col() for
|
2005-07-18 11:00:15 +00:00
|
|
|
|
* those * and column changes every time the number of columns ornumber
|
|
|
|
|
* of rows changes. Normally the cursor should stay in the same cell,
|
2005-07-06 07:28:16 +00:00
|
|
|
|
* so these changes should typically be performed like the following:
|
|
|
|
|
* \code
|
|
|
|
|
* row_type const r = cur.row();
|
|
|
|
|
* col_type const c = cur.col();
|
|
|
|
|
* // change nrows() and/or ncols()
|
|
|
|
|
* cur.idx = index(r, c);
|
|
|
|
|
* \endcode
|
|
|
|
|
*/
|
2003-12-15 11:36:19 +00:00
|
|
|
|
idx_type idx_;
|
|
|
|
|
/// paragraph in this cell (used by texted)
|
2004-11-24 21:53:46 +00:00
|
|
|
|
pit_type pit_;
|
2005-07-06 07:28:16 +00:00
|
|
|
|
/// true if 'pit' was properly initialized
|
2004-03-18 16:41:45 +00:00
|
|
|
|
bool pit_valid_;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
/// position in this cell
|
|
|
|
|
pos_type pos_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// 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 &);
|
2004-04-07 13:15:34 +00:00
|
|
|
|
/// test for order
|
|
|
|
|
bool operator<=(CursorSlice const &, CursorSlice const &);
|
2003-12-15 11:36:19 +00:00
|
|
|
|
|
|
|
|
|
#endif
|