2003-09-17 16:44:51 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2007-04-26 14:56:30 +00:00
|
|
|
* \file Cursor.h
|
2003-09-17 16:44:51 +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 André Pönitz
|
2003-09-17 16:44:51 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2013-07-01 16:52:06 +00:00
|
|
|
/*
|
2016-12-20 11:14:21 +00:00
|
|
|
First some explanation about what a Cursor really is, from local to
|
|
|
|
global.
|
2013-07-01 16:52:06 +00:00
|
|
|
|
|
|
|
* a CursorSlice indicates the position of the cursor at local level.
|
2016-12-20 11:14:21 +00:00
|
|
|
It contains in particular:
|
2013-07-01 16:52:06 +00:00
|
|
|
* idx(): the cell that contains the cursor (for Tabular or math
|
|
|
|
arrays). Always 0 for 'plain' insets
|
2016-12-20 11:14:21 +00:00
|
|
|
* pit(): the index of the current paragraph (only for text)
|
2013-07-01 16:52:06 +00:00
|
|
|
* pos(): the position in the current paragraph (or in the math
|
2016-12-20 11:14:21 +00:00
|
|
|
equation in mathed).
|
|
|
|
* inset(): the inset in which the cursor is. For a InsetTabular,
|
|
|
|
this is the tabular itself, not the cell inset (which is an
|
|
|
|
InsetTableCell).
|
2013-07-01 16:52:06 +00:00
|
|
|
|
|
|
|
* a DocIterator indicated the position of the cursor in the document.
|
|
|
|
It knows about the current buffer (buffer() method) and contains a
|
|
|
|
vector of CursorSlices that describes the nesting of insets up to the
|
|
|
|
point of interest. Note that operator<< has been implemented, so that
|
|
|
|
one can send a DocIterator to a stream to see its value. Try it, it is
|
|
|
|
very helpful to understand the cursor layout.
|
|
|
|
* when using idx/pit/pos on a DocIterator, one gets the information
|
|
|
|
from the inner slice (this slice can be accessed as top())
|
|
|
|
* inMathed() returns true when the cursor is in a math formula
|
|
|
|
* inTexted() returns true when the cursor is in text
|
|
|
|
* innerTextSlice() returns the deepest slice that is text (useful
|
|
|
|
when one is in a math equation and looks for the enclosing text)
|
|
|
|
|
2016-12-20 11:14:21 +00:00
|
|
|
* A CursorData is a descendant of Dociterator that contains
|
2013-07-01 16:52:06 +00:00
|
|
|
* a second DocIterator object, the anchor, that is useful when
|
|
|
|
selecting.
|
2016-12-20 11:14:21 +00:00
|
|
|
* some other data that describes current selection, cursor font, etc.
|
|
|
|
|
|
|
|
This class is mostly used only for undo and contains the Cursor
|
|
|
|
elements that are not GUI-related. In LyX 2.0, Cursor was directly
|
|
|
|
deriving from DocIterator
|
2013-07-01 16:52:06 +00:00
|
|
|
|
|
|
|
* A Cursor is a descendant of CursorData that contains interesting
|
|
|
|
display-related information, in particular targetX(), the horizontal
|
|
|
|
position of the cursor in pixels.
|
|
|
|
*/
|
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#ifndef LCURSOR_H
|
|
|
|
#define LCURSOR_H
|
2003-09-17 16:44:51 +00:00
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "DispatchResult.h"
|
|
|
|
#include "DocIterator.h"
|
2007-09-02 13:35:48 +00:00
|
|
|
#include "Font.h"
|
2007-10-18 11:51:17 +00:00
|
|
|
#include "Undo.h"
|
2003-09-17 16:44:51 +00:00
|
|
|
|
2008-10-18 13:48:12 +00:00
|
|
|
#include "mathed/MathParser_flags.h"
|
2008-10-17 21:40:11 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
2004-04-08 15:03:33 +00:00
|
|
|
class Buffer;
|
2004-03-18 12:53:43 +00:00
|
|
|
class BufferView;
|
2004-02-20 17:19:53 +00:00
|
|
|
class FuncStatus;
|
2003-09-18 11:21:53 +00:00
|
|
|
class FuncRequest;
|
2006-12-19 14:09:47 +00:00
|
|
|
class Row;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
// these should go
|
2006-09-16 18:11:38 +00:00
|
|
|
class InsetMathUnknown;
|
2004-03-18 12:53:43 +00:00
|
|
|
class Encoding;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
2012-07-15 16:16:09 +00:00
|
|
|
/**
|
|
|
|
* This class describes the position of a cursor within a document,
|
|
|
|
* but does not contain any detail about the view. It is currently
|
|
|
|
* only used to save cursor position in Undo, but culd be extended to
|
|
|
|
* handle the methods that only need this data.
|
|
|
|
**/
|
|
|
|
class CursorData : public DocIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
CursorData();
|
|
|
|
///
|
|
|
|
explicit CursorData(Buffer * buffer);
|
|
|
|
///
|
|
|
|
explicit CursorData(DocIterator const & dit);
|
2015-03-10 14:53:25 +00:00
|
|
|
/// output
|
|
|
|
friend std::ostream & operator<<(std::ostream & os, CursorData const & cur);
|
|
|
|
friend LyXErr & operator<<(LyXErr & os, CursorData const & cur);
|
|
|
|
|
2012-07-15 16:16:09 +00:00
|
|
|
protected:
|
|
|
|
/// the anchor position
|
|
|
|
DocIterator anchor_;
|
|
|
|
/// do we have a selection?
|
|
|
|
bool selection_;
|
|
|
|
/// are we on the way to get one?
|
|
|
|
bool mark_;
|
|
|
|
/// are we in word-selection mode? This is set when double clicking.
|
|
|
|
bool word_selection_;
|
|
|
|
|
|
|
|
// FIXME: make them protected.
|
|
|
|
public:
|
|
|
|
/// the current font settings
|
|
|
|
Font current_font;
|
|
|
|
/// the current font
|
|
|
|
Font real_current_font;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
//
|
|
|
|
// math specific stuff that could be promoted to "global" later
|
|
|
|
//
|
|
|
|
/// do we allow autocorrection
|
|
|
|
bool autocorrect_;
|
|
|
|
/// are we entering a macro name?
|
|
|
|
bool macromode_;
|
|
|
|
};
|
|
|
|
|
2004-02-04 12:24:01 +00:00
|
|
|
|
2004-03-08 21:14:45 +00:00
|
|
|
/// The cursor class describes the position of a cursor within a document.
|
2012-07-15 16:16:09 +00:00
|
|
|
class Cursor : public CursorData
|
2008-09-24 21:27:41 +00:00
|
|
|
{
|
2003-09-17 16:44:51 +00:00
|
|
|
public:
|
2004-01-16 12:36:23 +00:00
|
|
|
/// create the cursor of a BufferView
|
2007-04-26 14:56:30 +00:00
|
|
|
explicit Cursor(BufferView & bv);
|
2004-03-18 12:53:43 +00:00
|
|
|
|
2009-11-13 14:32:51 +00:00
|
|
|
/// returns true if we made a decision
|
|
|
|
bool getStatus(FuncRequest const & cmd, FuncStatus & flag) const;
|
2003-11-06 10:30:43 +00:00
|
|
|
/// dispatch from innermost inset upwards
|
2004-08-13 14:56:06 +00:00
|
|
|
void dispatch(FuncRequest const & cmd);
|
|
|
|
/// get the resut of the last dispatch
|
2010-04-15 17:14:59 +00:00
|
|
|
DispatchResult const & result() const;
|
2004-01-26 10:13:15 +00:00
|
|
|
/// add a new cursor slice
|
2007-04-29 13:39:47 +00:00
|
|
|
void push(Inset & inset);
|
2007-11-05 19:41:16 +00:00
|
|
|
/// add a new cursor slice, place cursor at front (move backwards)
|
|
|
|
void pushBackward(Inset & inset);
|
2003-11-10 09:06:48 +00:00
|
|
|
/// pop one level off the cursor
|
2003-11-04 12:36:59 +00:00
|
|
|
void pop();
|
2007-11-05 19:41:16 +00:00
|
|
|
/// pop one slice off the cursor stack and go backwards
|
|
|
|
bool popBackward();
|
|
|
|
/// pop one slice off the cursor stack and go forward
|
|
|
|
bool popForward();
|
2005-05-06 20:00:31 +00:00
|
|
|
/// make sure we are outside of given inset
|
2007-04-29 13:39:47 +00:00
|
|
|
void leaveInset(Inset const & inset);
|
2012-07-15 16:16:09 +00:00
|
|
|
/// set the cursor data
|
|
|
|
void setCursorData(CursorData const & data);
|
2004-03-01 17:12:09 +00:00
|
|
|
/// sets cursor part
|
2016-09-04 21:17:32 +00:00
|
|
|
/// this (intentionally) does neither touch anchor nor selection status
|
2004-08-14 19:55:00 +00:00
|
|
|
void setCursor(DocIterator const & it);
|
2016-09-04 21:17:32 +00:00
|
|
|
/// set the cursor to dit normalised against the anchor, and set selection.
|
|
|
|
void setCursorSelectionTo(DocIterator dit);
|
2010-01-06 16:59:12 +00:00
|
|
|
/// sets the cursor to the normalized selection anchor
|
2009-04-05 20:16:32 +00:00
|
|
|
void setCursorToAnchor();
|
2004-01-16 12:36:23 +00:00
|
|
|
|
2007-09-02 13:35:48 +00:00
|
|
|
///
|
|
|
|
void setCurrentFont();
|
|
|
|
|
2004-01-20 14:25:24 +00:00
|
|
|
//
|
|
|
|
// selection
|
|
|
|
//
|
|
|
|
/// selection active?
|
|
|
|
bool selection() const { return selection_; }
|
2016-02-28 16:36:29 +00:00
|
|
|
/// set selection; this is lower level than (set|clear)Selection
|
|
|
|
void selection(bool sel) { selection_ = sel; }
|
2008-08-09 01:58:57 +00:00
|
|
|
/// do we have a multicell selection?
|
2008-08-09 16:29:25 +00:00
|
|
|
bool selIsMultiCell() const
|
2008-08-09 01:58:57 +00:00
|
|
|
{ return selection_ && selBegin().idx() != selEnd().idx(); }
|
2008-08-09 16:29:25 +00:00
|
|
|
/// do we have a multiline selection?
|
|
|
|
bool selIsMultiLine() const
|
|
|
|
{ return selection_ && selBegin().pit() != selEnd().pit(); }
|
2009-12-18 14:18:10 +00:00
|
|
|
///
|
|
|
|
void setWordSelection(bool set) { word_selection_ = set; }
|
|
|
|
///
|
|
|
|
bool wordSelection() { return word_selection_; }
|
2004-01-20 14:25:24 +00:00
|
|
|
/// did we place the anchor?
|
|
|
|
bool mark() const { return mark_; }
|
|
|
|
/// did we place the anchor?
|
2008-09-24 21:27:41 +00:00
|
|
|
void setMark(bool mark) { mark_ = mark; }
|
2004-01-20 14:25:24 +00:00
|
|
|
///
|
|
|
|
void setSelection();
|
2004-01-26 10:13:15 +00:00
|
|
|
/// set selection at given position
|
2006-10-21 11:29:34 +00:00
|
|
|
void setSelection(DocIterator const & where, int n);
|
2004-01-20 14:25:24 +00:00
|
|
|
///
|
|
|
|
void clearSelection();
|
2004-01-26 10:13:15 +00:00
|
|
|
/// access start of selection
|
2004-04-07 13:15:34 +00:00
|
|
|
CursorSlice selBegin() const;
|
2004-01-26 10:13:15 +00:00
|
|
|
/// access end of selection
|
2004-04-07 13:15:34 +00:00
|
|
|
CursorSlice selEnd() const;
|
2004-03-25 09:16:36 +00:00
|
|
|
/// access start of selection
|
2004-03-31 19:11:56 +00:00
|
|
|
DocIterator selectionBegin() const;
|
2013-02-22 09:50:30 +00:00
|
|
|
/// access end of selection
|
2004-03-31 19:11:56 +00:00
|
|
|
DocIterator selectionEnd() const;
|
2008-09-12 10:42:23 +00:00
|
|
|
/**
|
|
|
|
* Update the selection status and save permanent
|
|
|
|
* selection if needed.
|
|
|
|
* @param selecting the new selection status
|
|
|
|
* @return whether the selection status has changed
|
|
|
|
*/
|
2006-10-22 11:46:36 +00:00
|
|
|
bool selHandle(bool selecting);
|
2007-06-14 20:32:28 +00:00
|
|
|
///
|
2010-12-11 11:45:19 +00:00
|
|
|
docstring selectionAsString(bool with_label) const;
|
2004-01-26 10:13:15 +00:00
|
|
|
///
|
2008-08-13 13:46:19 +00:00
|
|
|
docstring currentState() const;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
|
|
|
/// auto-correct mode
|
|
|
|
bool autocorrect() const { return autocorrect_; }
|
|
|
|
/// auto-correct mode
|
|
|
|
bool & autocorrect() { return autocorrect_; }
|
|
|
|
/// are we entering a macro name?
|
|
|
|
bool macromode() const { return macromode_; }
|
|
|
|
/// are we entering a macro name?
|
|
|
|
bool & macromode() { return macromode_; }
|
2015-12-04 22:26:16 +00:00
|
|
|
|
|
|
|
/// returns true when all insets in cursor stack are in cache
|
|
|
|
bool inCoordCache() const;
|
2003-11-10 09:06:48 +00:00
|
|
|
/// returns x,y position
|
|
|
|
void getPos(int & x, int & y) const;
|
2008-02-10 19:52:45 +00:00
|
|
|
/// return logical positions between which the cursor is situated
|
|
|
|
/**
|
|
|
|
* If the cursor is at the edge of a row, the position which is "over the
|
|
|
|
* edge" will be returned as -1.
|
|
|
|
*/
|
2015-09-14 20:13:39 +00:00
|
|
|
void getSurroundingPos(pos_type & left_pos, pos_type & right_pos) const;
|
2006-12-19 13:39:46 +00:00
|
|
|
/// the row in the paragraph we're in
|
|
|
|
Row const & textRow() const;
|
2004-01-16 13:35:10 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
// common part
|
|
|
|
//
|
2008-05-04 20:17:59 +00:00
|
|
|
/// move visually one step to the right
|
|
|
|
/**
|
|
|
|
* @note: This method may move into an inset unless skip_inset == true.
|
|
|
|
* @note: This method may move into a new paragraph.
|
|
|
|
* @note: This method may move out of the current slice.
|
|
|
|
* @return: true if moved, false if not moved
|
|
|
|
*/
|
|
|
|
bool posVisRight(bool skip_inset = false);
|
|
|
|
/// move visually one step to the left
|
|
|
|
/**
|
|
|
|
* @note: This method may move into an inset unless skip_inset == true.
|
|
|
|
* @note: This method may move into a new paragraph.
|
|
|
|
* @note: This method may move out of the current slice.
|
|
|
|
* @return: true if moved, false if not moved
|
|
|
|
*/
|
|
|
|
bool posVisLeft(bool skip_inset = false);
|
2008-02-10 19:52:45 +00:00
|
|
|
/// move visually to next/previous row
|
|
|
|
/**
|
|
|
|
* Assuming we were to keep moving left (right) from the current cursor
|
|
|
|
* position, place the cursor at the rightmost (leftmost) edge of the
|
|
|
|
* new row to which we would move according to visual-mode cursor movement.
|
|
|
|
* This could be either the next or the previous row, depending on the
|
|
|
|
* direction in which we're moving, and whether we're in an LTR or RTL
|
|
|
|
* paragraph.
|
|
|
|
* @note: The new position may even be in a new paragraph.
|
|
|
|
* @note: This method will not move out of the current slice.
|
|
|
|
* @return: false if not moved (no more rows to move to in given direction)
|
|
|
|
* @return: true if moved
|
|
|
|
*/
|
|
|
|
bool posVisToNewRow(bool movingLeft);
|
|
|
|
/// move to right or left extremity of the current row
|
|
|
|
void posVisToRowExtremity(bool left);
|
2015-07-16 09:55:45 +00:00
|
|
|
/// Should interpretation of the arrow keys be reversed?
|
|
|
|
bool reverseDirectionNeeded() const;
|
2004-01-16 13:35:10 +00:00
|
|
|
|
2004-02-11 14:45:44 +00:00
|
|
|
/// insert an inset
|
2007-04-29 13:39:47 +00:00
|
|
|
void insert(Inset *);
|
2004-02-11 14:45:44 +00:00
|
|
|
/// insert a single char
|
2006-10-21 00:16:43 +00:00
|
|
|
void insert(char_type c);
|
2004-02-11 14:45:44 +00:00
|
|
|
/// insert a string
|
2006-10-22 10:15:23 +00:00
|
|
|
void insert(docstring const & str);
|
2004-02-11 14:45:44 +00:00
|
|
|
|
2007-05-29 20:53:32 +00:00
|
|
|
/// FIXME: rename to something sensible showing difference to x_target()
|
|
|
|
/// in pixels from left of screen, set to current position if unset
|
2004-11-30 01:59:49 +00:00
|
|
|
int targetX() const;
|
2007-05-29 20:53:32 +00:00
|
|
|
/// set the targetX to x
|
|
|
|
void setTargetX(int x);
|
|
|
|
/// return targetX or -1 if unset
|
2004-01-20 14:25:24 +00:00
|
|
|
int x_target() const;
|
2007-05-29 20:53:32 +00:00
|
|
|
/// set targetX to current position
|
2004-11-30 01:59:49 +00:00
|
|
|
void setTargetX();
|
2007-05-29 20:53:32 +00:00
|
|
|
/// clear targetX, i.e. set it to -1
|
2004-01-30 11:41:12 +00:00
|
|
|
void clearTargetX();
|
2007-05-29 20:53:32 +00:00
|
|
|
/// set offset to actual position - targetX
|
|
|
|
void updateTextTargetOffset();
|
|
|
|
/// distance between actual and targeted position during last up/down in text
|
|
|
|
int textTargetOffset() const;
|
2004-01-20 14:25:24 +00:00
|
|
|
|
2004-04-07 13:15:34 +00:00
|
|
|
/// access to normalized selection anchor
|
2010-04-15 17:49:15 +00:00
|
|
|
CursorSlice normalAnchor() const;
|
2010-04-15 18:16:07 +00:00
|
|
|
/// access to real selection anchor
|
2016-04-16 22:40:47 +00:00
|
|
|
DocIterator const & realAnchor() const { return anchor_; }
|
|
|
|
DocIterator & realAnchor() { return anchor_; }
|
2004-01-13 18:08:13 +00:00
|
|
|
/// sets anchor to cursor position
|
2004-04-03 08:37:12 +00:00
|
|
|
void resetAnchor();
|
2004-01-16 12:36:23 +00:00
|
|
|
/// access to owning BufferView
|
2004-04-03 08:37:12 +00:00
|
|
|
BufferView & bv() const;
|
2004-03-01 17:12:09 +00:00
|
|
|
/// get some interesting description of top position
|
2006-10-22 10:15:23 +00:00
|
|
|
void info(odocstream & os) const;
|
2004-01-26 10:13:15 +00:00
|
|
|
/// are we in math mode (2), text mode (1) or unsure (0)?
|
|
|
|
int currentMode();
|
2009-10-29 22:46:04 +00:00
|
|
|
/// reset cursor bottom to the beginning of the top inset
|
2004-03-19 16:36:52 +00:00
|
|
|
// (sort of 'chroot' environment...)
|
2009-10-29 22:46:04 +00:00
|
|
|
void reset();
|
2004-02-13 07:30:59 +00:00
|
|
|
/// for spellchecking
|
|
|
|
void replaceWord(std::string const & replacestring);
|
2005-05-09 17:29:22 +00:00
|
|
|
/**
|
|
|
|
* the event was not (yet) dispatched.
|
|
|
|
*
|
|
|
|
* Should only be called by an inset's doDispatch() method. It means:
|
|
|
|
* I, the doDispatch() method of InsetFoo, hereby declare that I am
|
|
|
|
* not able to handle that request and trust my parent will do the
|
|
|
|
* Right Thing (even if my getStatus partner said that I can do it).
|
|
|
|
* It is sort of a kludge that should be used only rarely...
|
|
|
|
*/
|
2011-01-10 09:38:20 +00:00
|
|
|
void undispatched() const;
|
2004-03-27 12:46:30 +00:00
|
|
|
/// the event was already dispatched
|
2011-01-10 09:38:20 +00:00
|
|
|
void dispatched() const;
|
2010-07-09 14:37:00 +00:00
|
|
|
/// Set which screen update should be done
|
2011-01-10 09:38:20 +00:00
|
|
|
void screenUpdateFlags(Update::flags f) const;
|
2010-07-09 14:37:00 +00:00
|
|
|
/// Forces an updateBuffer() call
|
2011-01-10 09:38:20 +00:00
|
|
|
void forceBufferUpdate() const;
|
2010-07-09 14:37:00 +00:00
|
|
|
/// Removes any pending updateBuffer() call
|
2011-01-10 09:38:20 +00:00
|
|
|
void clearBufferUpdate() const;
|
2010-07-09 14:37:00 +00:00
|
|
|
/// Do we need to call updateBuffer()?
|
|
|
|
bool needBufferUpdate() const;
|
2005-05-09 17:29:22 +00:00
|
|
|
/**
|
|
|
|
* don't call update() when done
|
|
|
|
*
|
|
|
|
* Should only be called by an inset's doDispatch() method. It means:
|
|
|
|
* I handled that request and I can reassure you that the screen does
|
|
|
|
* not need to be re-drawn and all entries in the coord cache stay
|
|
|
|
* valid (and there are no other things to put in the coord cache).
|
|
|
|
* This is a fairly rare event as well and only some optimization.
|
2010-07-08 20:04:35 +00:00
|
|
|
* Not using noScreenUpdate() should never be wrong.
|
2005-05-09 17:29:22 +00:00
|
|
|
*/
|
2011-01-10 09:38:20 +00:00
|
|
|
void noScreenUpdate() const;
|
2007-08-19 13:40:09 +00:00
|
|
|
/// fix cursor in circumstances that should never happen.
|
2015-02-09 23:42:35 +00:00
|
|
|
/// \retval true if a fix occurred.
|
2007-08-19 13:40:09 +00:00
|
|
|
bool fixIfBroken();
|
2012-07-17 20:26:44 +00:00
|
|
|
/// Repopulate the slices insets from bottom to top. Useful
|
|
|
|
/// for stable iterators or Undo data.
|
|
|
|
void sanitize();
|
2004-01-20 14:25:24 +00:00
|
|
|
|
2007-10-18 11:51:17 +00:00
|
|
|
///
|
|
|
|
bool textUndo();
|
|
|
|
///
|
|
|
|
bool textRedo();
|
|
|
|
|
|
|
|
/// makes sure the next operation will be stored
|
2008-08-13 13:46:19 +00:00
|
|
|
void finishUndo() const;
|
2007-10-18 11:51:17 +00:00
|
|
|
|
2008-08-15 19:24:56 +00:00
|
|
|
/// open a new group of undo operations. Groups can be nested.
|
|
|
|
void beginUndoGroup() const;
|
|
|
|
|
|
|
|
/// end the current undo group
|
|
|
|
void endUndoGroup() const;
|
|
|
|
|
2007-10-18 11:51:17 +00:00
|
|
|
/// The general case: prepare undo for an arbitrary range.
|
2015-03-12 14:57:29 +00:00
|
|
|
void recordUndo(pit_type from, pit_type to) const;
|
2007-10-18 11:51:17 +00:00
|
|
|
|
|
|
|
/// Convenience: prepare undo for the range between 'from' and cursor.
|
2015-03-12 14:57:29 +00:00
|
|
|
void recordUndo(pit_type from) const;
|
2007-10-18 11:51:17 +00:00
|
|
|
|
|
|
|
/// Convenience: prepare undo for the single paragraph or cell
|
|
|
|
/// containing the cursor
|
2008-08-13 13:46:19 +00:00
|
|
|
void recordUndo(UndoKind kind = ATOMIC_UNDO) const;
|
2007-10-18 11:51:17 +00:00
|
|
|
|
|
|
|
/// Convenience: prepare undo for the inset containing the cursor
|
2015-03-12 14:57:29 +00:00
|
|
|
void recordUndoInset(Inset const * inset = 0) const;
|
2007-10-18 11:51:17 +00:00
|
|
|
|
|
|
|
/// Convenience: prepare undo for the whole buffer
|
2015-01-17 19:38:22 +00:00
|
|
|
void recordUndoFullBuffer() const;
|
|
|
|
|
|
|
|
/// Convenience: prepare undo for buffer parameters
|
|
|
|
void recordUndoBufferParams() const;
|
2007-10-18 11:51:17 +00:00
|
|
|
|
2008-03-12 00:59:29 +00:00
|
|
|
/// Convenience: prepare undo for the selected paragraphs or cells
|
2008-08-13 13:46:19 +00:00
|
|
|
void recordUndoSelection() const;
|
2007-10-18 11:51:17 +00:00
|
|
|
|
2008-01-12 21:38:51 +00:00
|
|
|
///
|
|
|
|
void checkBufferStructure();
|
|
|
|
|
2011-02-03 17:27:13 +00:00
|
|
|
/// hook for text input to maintain the "new born word"
|
2011-04-01 05:49:04 +00:00
|
|
|
void markNewWordPosition();
|
2011-02-03 17:27:13 +00:00
|
|
|
|
|
|
|
/// The position of the new born word
|
|
|
|
/// As the user is entering a word without leaving it
|
|
|
|
/// the result is not empty. When not in text mode
|
|
|
|
/// and after leaving the word the result is empty.
|
|
|
|
DocIterator newWord() const { return new_word_; }
|
|
|
|
|
2017-02-18 18:12:55 +00:00
|
|
|
/// Return true if the next or previous inset has confirmDeletion depending
|
|
|
|
/// on the boolean before. If there is a selection, return true if at least
|
|
|
|
/// one inset in the selection has confirmDeletion.
|
|
|
|
bool confirmDeletion(bool before = false) const;
|
|
|
|
|
2003-09-17 16:44:51 +00:00
|
|
|
public:
|
2004-01-20 14:25:24 +00:00
|
|
|
//private:
|
2007-05-29 20:53:32 +00:00
|
|
|
|
2007-06-14 20:32:28 +00:00
|
|
|
///
|
2010-02-09 14:29:27 +00:00
|
|
|
DocIterator const & beforeDispatchCursor() const { return beforeDispatchCursor_; }
|
|
|
|
///
|
|
|
|
void saveBeforeDispatchPosXY();
|
|
|
|
|
2011-02-03 17:27:13 +00:00
|
|
|
private:
|
|
|
|
/// validate the "new born word" position
|
|
|
|
void checkNewWordPosition();
|
|
|
|
/// clear the "new born word" position
|
|
|
|
void clearNewWordPosition();
|
|
|
|
|
2003-11-11 09:06:41 +00:00
|
|
|
private:
|
2010-04-15 18:30:15 +00:00
|
|
|
///
|
|
|
|
BufferView * bv_;
|
2010-04-15 17:34:34 +00:00
|
|
|
///
|
|
|
|
mutable DispatchResult disp_;
|
2004-01-20 14:25:24 +00:00
|
|
|
/**
|
|
|
|
* The target x position of the cursor. This is used for when
|
|
|
|
* we have text like :
|
|
|
|
*
|
|
|
|
* blah blah blah blah| blah blah blah
|
|
|
|
* blah blah blah
|
|
|
|
* blah blah blah blah blah blah
|
|
|
|
*
|
|
|
|
* When we move onto row 3, we would like to be vertically aligned
|
|
|
|
* with where we were in row 1, despite the fact that row 2 is
|
|
|
|
* shorter than x()
|
|
|
|
*/
|
|
|
|
int x_target_;
|
2007-05-29 20:53:32 +00:00
|
|
|
/// if a x_target cannot be hit exactly in a text, put the difference here
|
|
|
|
int textTargetOffset_;
|
2012-12-11 09:14:47 +00:00
|
|
|
/// the start of the new born word
|
|
|
|
DocIterator new_word_;
|
2007-05-29 20:53:32 +00:00
|
|
|
/// position before dispatch started
|
2007-06-14 20:32:28 +00:00
|
|
|
DocIterator beforeDispatchCursor_;
|
2010-02-09 14:29:27 +00:00
|
|
|
/// cursor screen coordinates before dispatch started
|
|
|
|
int beforeDispatchPosX_;
|
|
|
|
int beforeDispatchPosY_;
|
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
///////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// The part below is the non-integrated rest of the original math
|
|
|
|
// cursor. This should be either generalized for texted or moved
|
|
|
|
// back to the math insets.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
void insert(MathAtom const &);
|
|
|
|
///
|
2007-04-26 16:06:39 +00:00
|
|
|
void insert(MathData const &);
|
2004-01-26 10:13:15 +00:00
|
|
|
/// return false for empty math insets
|
2017-02-18 18:12:55 +00:00
|
|
|
/// Use force to skip the confirmDeletion check.
|
|
|
|
bool erase(bool force = false);
|
|
|
|
bool backspace(bool force = false);
|
|
|
|
|
2007-05-29 20:53:32 +00:00
|
|
|
/// move the cursor up by sending an internal LFUN_UP
|
2007-05-30 19:38:22 +00:00
|
|
|
/// return true if fullscreen update is needed
|
2004-01-26 10:13:15 +00:00
|
|
|
bool up();
|
2007-05-30 19:38:22 +00:00
|
|
|
/// move the cursor up by sending an internal LFUN_DOWN,
|
|
|
|
/// return true if fullscreen update is needed
|
2004-01-26 10:13:15 +00:00
|
|
|
bool down();
|
2008-11-16 18:03:52 +00:00
|
|
|
/// whether the cursor is either at the first or last row
|
|
|
|
bool atFirstOrLastRow(bool up);
|
2007-05-30 19:38:22 +00:00
|
|
|
/// move up/down in a text inset, called for LFUN_UP/DOWN,
|
|
|
|
/// return true if successful, updateNeeded set to true if fullscreen
|
|
|
|
/// update is needed, otherwise it's not touched
|
|
|
|
bool upDownInText(bool up, bool & updateNeeded);
|
2007-05-29 20:53:32 +00:00
|
|
|
/// move up/down in math or any non text inset, call for LFUN_UP/DOWN
|
2007-05-30 19:38:22 +00:00
|
|
|
/// return true if successful
|
2007-05-29 20:53:32 +00:00
|
|
|
bool upDownInMath(bool up);
|
2004-01-26 10:13:15 +00:00
|
|
|
///
|
2016-05-27 20:00:54 +00:00
|
|
|
InsetMath & nextMath();
|
|
|
|
///
|
|
|
|
InsetMath & prevMath();
|
|
|
|
/// move forward in math. word: whether to skip a whole "word" (insets with
|
|
|
|
/// the same mathclass)
|
|
|
|
bool mathForward(bool word);
|
|
|
|
///
|
|
|
|
bool mathBackward(bool word);
|
|
|
|
///
|
2004-01-26 10:13:15 +00:00
|
|
|
void plainErase();
|
|
|
|
///
|
|
|
|
void plainInsert(MathAtom const & at);
|
|
|
|
///
|
|
|
|
void niceInsert(MathAtom const & at);
|
2011-01-27 00:43:25 +00:00
|
|
|
/// return the number of inserted array items
|
|
|
|
int niceInsert(docstring const & str, Parse::flags f = Parse::NORMAL,
|
2009-12-11 01:30:33 +00:00
|
|
|
bool enter = true);
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/// in pixels from top of screen
|
|
|
|
void setScreenPos(int x, int y);
|
2004-03-01 17:12:09 +00:00
|
|
|
/// current offset in the top cell
|
2006-01-11 17:08:50 +00:00
|
|
|
|
|
|
|
/// interpret name a name of a macro. Returns true if
|
|
|
|
/// something got inserted.
|
|
|
|
bool macroModeClose();
|
2004-01-26 10:13:15 +00:00
|
|
|
/// are we currently typing the name of a macro?
|
|
|
|
bool inMacroMode() const;
|
|
|
|
/// get access to the macro we are currently typing
|
2006-09-16 18:11:38 +00:00
|
|
|
InsetMathUnknown * activeMacro();
|
2008-02-21 19:42:34 +00:00
|
|
|
/// get access to the macro we are currently typing
|
|
|
|
InsetMathUnknown const * activeMacro() const;
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/// replace selected stuff with at, placing the former
|
|
|
|
// selection in given cell of atom
|
|
|
|
void handleNest(MathAtom const & at, int cell = 0);
|
|
|
|
///
|
2007-12-22 14:38:20 +00:00
|
|
|
bool isInside(Inset const *) const;
|
2004-01-26 10:13:15 +00:00
|
|
|
|
|
|
|
/// make sure cursor position is valid
|
2007-06-14 20:32:28 +00:00
|
|
|
/// FIXME: It does a subset of fixIfBroken. Maybe merge them?
|
2004-01-26 10:13:15 +00:00
|
|
|
void normalize();
|
|
|
|
/// mark current cursor trace for redraw
|
|
|
|
void touch();
|
|
|
|
|
|
|
|
/// hack for reveal codes
|
|
|
|
void markInsert();
|
|
|
|
void markErase();
|
|
|
|
/// injects content of a cell into parent
|
|
|
|
void pullArg();
|
|
|
|
/// split font inset etc
|
|
|
|
void handleFont(std::string const & font);
|
|
|
|
|
2004-02-03 11:49:05 +00:00
|
|
|
/// display a message
|
2006-10-21 00:16:43 +00:00
|
|
|
void message(docstring const & msg) const;
|
2004-02-03 11:49:05 +00:00
|
|
|
/// display an error message
|
2006-10-21 00:16:43 +00:00
|
|
|
void errorMessage(docstring const & msg) const;
|
2004-02-13 13:51:12 +00:00
|
|
|
///
|
2008-08-13 13:46:19 +00:00
|
|
|
docstring getPossibleLabel() const;
|
2004-02-03 11:49:05 +00:00
|
|
|
|
2004-01-26 10:13:15 +00:00
|
|
|
/// the name of the macro we are currently inputting
|
2006-10-22 10:15:23 +00:00
|
|
|
docstring macroName();
|
2004-01-26 10:13:15 +00:00
|
|
|
/// where in the curent cell does the macro name start?
|
|
|
|
int macroNamePos();
|
|
|
|
/// can we enter the inset?
|
2004-02-25 12:00:53 +00:00
|
|
|
bool openable(MathAtom const &) const;
|
2004-03-18 12:53:43 +00:00
|
|
|
///
|
|
|
|
Encoding const * getEncoding() const;
|
2005-01-10 09:28:06 +00:00
|
|
|
/// font at cursor position
|
2007-04-29 18:17:15 +00:00
|
|
|
Font getFont() const;
|
2003-09-17 16:44:51 +00:00
|
|
|
};
|
|
|
|
|
2004-11-30 01:59:49 +00:00
|
|
|
|
2007-06-14 20:32:28 +00:00
|
|
|
/**
|
2015-07-16 14:29:55 +00:00
|
|
|
* Notifies all insets which appear in \c old, but not in \c cur. And then
|
|
|
|
* notify all insets which appear in \c cur, but not in \c old.
|
|
|
|
* \returns true if cursor is now invalid, e.g. if some insets in
|
|
|
|
* higher cursor slices of \c old do not exist anymore. In this case
|
|
|
|
* it may be necessary to use Use Cursor::fixIfBroken.
|
2007-06-14 20:32:28 +00:00
|
|
|
*/
|
2008-11-15 17:11:01 +00:00
|
|
|
bool notifyCursorLeavesOrEnters(Cursor const & old, Cursor & cur);
|
2007-06-14 20:32:28 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#endif // LYXLCURSOR_H
|