2003-12-15 11:36:19 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2007-04-26 04:41:58 +00:00
|
|
|
* \file CursorSlice.h
|
2003-12-15 11:36:19 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Lars Gullik Bjønnes
|
2004-01-13 12:28:35 +00:00
|
|
|
* \author Matthias Ettrich
|
|
|
|
* \author John Levon
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author André Pönitz
|
2004-01-13 12:28:35 +00:00
|
|
|
* \author Dekel Tsur
|
2008-11-14 15:58:50 +00:00
|
|
|
* \author Jü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
|
|
|
|
|
2004-01-13 12:28:35 +00:00
|
|
|
#include "support/types.h"
|
2007-11-01 22:17:22 +00:00
|
|
|
#include "support/strfwd.h"
|
2007-04-29 13:39:47 +00:00
|
|
|
#include "insets/Inset.h"
|
2004-01-13 12:28:35 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
class Inset;
|
2007-04-26 16:06:39 +00:00
|
|
|
class MathData;
|
2007-04-29 23:33:02 +00:00
|
|
|
class Text;
|
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
|
2007-04-29 23:33:02 +00:00
|
|
|
// that of MathData and Text should vanish. They are conceptually the
|
2003-12-15 11:36:19 +00:00
|
|
|
// same (now...)
|
|
|
|
|
2007-06-09 12:39:46 +00:00
|
|
|
class CursorSlice {
|
2003-12-15 11:36:19 +00:00
|
|
|
public:
|
2007-05-25 23:17:24 +00:00
|
|
|
/// Those needs inset_ access.
|
|
|
|
///@{
|
|
|
|
friend class DocIterator;
|
|
|
|
friend class StableDocIterator;
|
|
|
|
///@}
|
|
|
|
|
2003-12-15 11:36:19 +00:00
|
|
|
/// type for cell number in inset
|
|
|
|
typedef size_t idx_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();
|
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
explicit CursorSlice(Inset &);
|
2003-12-15 11:36:19 +00:00
|
|
|
|
2008-02-11 08:03:03 +00:00
|
|
|
/// comparison operators.
|
|
|
|
//@{
|
|
|
|
friend bool operator==(CursorSlice const &, CursorSlice const &);
|
|
|
|
friend bool operator!=(CursorSlice const &, CursorSlice const &);
|
|
|
|
friend bool operator<(CursorSlice const &, CursorSlice const &);
|
|
|
|
friend bool operator>(CursorSlice const &, CursorSlice const &);
|
|
|
|
friend bool operator<=(CursorSlice const &, CursorSlice const &);
|
|
|
|
//@}
|
|
|
|
|
2004-01-16 10:55:19 +00:00
|
|
|
/// the current inset
|
2007-04-29 13:39:47 +00:00
|
|
|
Inset & 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_; }
|
2007-08-13 13:36:19 +00:00
|
|
|
/// return the last paragraph offset within the ParagraphList
|
2007-06-09 12:39:46 +00:00
|
|
|
pit_type lastpit() const;
|
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
|
2007-08-23 20:55:34 +00:00
|
|
|
Text * text() const { return inset_->getText(idx_); }
|
2005-07-06 07:28:16 +00:00
|
|
|
/// paragraph in this cell
|
2007-08-23 20:55:34 +00:00
|
|
|
Paragraph & 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
|
2007-04-26 16:06:39 +00:00
|
|
|
MathData & cell() const;
|
2003-12-15 11:36:19 +00:00
|
|
|
|
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 &);
|
2007-08-13 13:36:19 +00:00
|
|
|
/// move to next position
|
|
|
|
void forwardPos();
|
|
|
|
/// move to previous position
|
|
|
|
void backwardPos();
|
2007-08-23 21:35:40 +00:00
|
|
|
/// move to next cell
|
|
|
|
void forwardIdx();
|
|
|
|
/// move to previous cell
|
|
|
|
void backwardIdx();
|
2007-08-13 13:36:19 +00:00
|
|
|
/// are we at the end of this slice
|
|
|
|
bool at_end() const;
|
|
|
|
/// are we at the start of this slice
|
|
|
|
bool at_begin() const;
|
|
|
|
|
2007-05-25 23:17:24 +00:00
|
|
|
private:
|
|
|
|
|
2004-03-18 16:41:45 +00:00
|
|
|
/// pointer to 'owning' inset. This is some kind of cache.
|
2007-04-29 13:39:47 +00:00
|
|
|
Inset * inset_;
|
2007-05-25 23:17:24 +00:00
|
|
|
|
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_;
|
2003-12-15 11:36:19 +00:00
|
|
|
/// position in this cell
|
|
|
|
pos_type pos_;
|
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2003-12-15 11:36:19 +00:00
|
|
|
#endif
|