2000-04-08 17:02:02 +00:00
|
|
|
// -*- C++ -*-
|
2002-06-12 02:54:19 +00:00
|
|
|
/**
|
|
|
|
* \file BufferView_pimpl.h
|
|
|
|
* Copyright 2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
|
|
|
* \author various
|
|
|
|
*/
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
#ifndef BUFFERVIEW_PIMPL_H
|
|
|
|
#define BUFFERVIEW_PIMPL_H
|
|
|
|
|
2003-05-20 16:51:31 +00:00
|
|
|
#include "errorlist.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
#include "BufferView.h"
|
2001-02-07 16:44:49 +00:00
|
|
|
#include "frontends/Timeout.h"
|
2002-06-12 02:54:19 +00:00
|
|
|
#include "frontends/key_state.h"
|
2002-06-18 15:44:30 +00:00
|
|
|
#include "frontends/LyXKeySym.h"
|
2001-11-26 16:42:04 +00:00
|
|
|
#include "support/types.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2002-05-22 01:16:37 +00:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2002-05-29 16:21:03 +00:00
|
|
|
#include <boost/signals/trackable.hpp>
|
2002-05-22 01:16:37 +00:00
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
class Change;
|
2000-04-08 17:02:02 +00:00
|
|
|
class LyXView;
|
|
|
|
class WorkArea;
|
2002-06-18 15:44:30 +00:00
|
|
|
class LyXScreen;
|
2002-08-28 08:30:27 +00:00
|
|
|
class FuncRequest;
|
2002-07-28 18:13:51 +00:00
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2002-05-29 16:21:03 +00:00
|
|
|
struct BufferView::Pimpl : public boost::signals::trackable {
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
Pimpl(BufferView * i, LyXView * o,
|
|
|
|
int xpos, int ypos, int width, int height);
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
2002-06-12 02:54:19 +00:00
|
|
|
Painter & painter() const;
|
2002-06-11 23:47:58 +00:00
|
|
|
/// return the screen for this bview
|
2002-06-18 15:44:30 +00:00
|
|
|
LyXScreen & screen() const;
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
|
|
|
void buffer(Buffer *);
|
2000-04-26 13:57:28 +00:00
|
|
|
/// Return true if the cursor was fitted.
|
2001-08-02 14:55:06 +00:00
|
|
|
bool fitCursor();
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
|
|
|
void redoCurrentBuffer();
|
|
|
|
///
|
|
|
|
int resizeCurrentBuffer();
|
|
|
|
///
|
|
|
|
void update();
|
2000-08-07 20:58:24 +00:00
|
|
|
//
|
2001-02-14 08:38:21 +00:00
|
|
|
void update(LyXText *, BufferView::UpdateCodes);
|
2003-03-19 14:45:22 +00:00
|
|
|
/// update the toplevel lyx text
|
|
|
|
void update(BufferView::UpdateCodes);
|
2002-06-21 02:22:13 +00:00
|
|
|
/**
|
|
|
|
* Repaint pixmap. Used for when we've made a visible
|
|
|
|
* change but don't need the full update() logic
|
|
|
|
*/
|
|
|
|
void repaint();
|
2000-04-08 17:02:02 +00:00
|
|
|
///
|
2002-06-20 20:37:42 +00:00
|
|
|
void workAreaResize();
|
2000-04-08 17:02:02 +00:00
|
|
|
///
|
2000-04-09 22:48:51 +00:00
|
|
|
void updateScrollbar();
|
|
|
|
///
|
2002-06-12 15:01:32 +00:00
|
|
|
void scrollDocView(int value);
|
2002-10-21 00:15:48 +00:00
|
|
|
/**
|
2003-02-14 00:41:44 +00:00
|
|
|
* Wheel mouse scroll, move by multiples of text->defaultRowHeight().
|
2002-10-21 00:15:48 +00:00
|
|
|
*/
|
|
|
|
void scroll(int lines);
|
2002-03-21 17:27:08 +00:00
|
|
|
///
|
2002-08-27 16:16:17 +00:00
|
|
|
void workAreaKeyPress(LyXKeySymPtr key, key_modifier::state state);
|
2000-08-14 15:31:16 +00:00
|
|
|
///
|
2002-01-13 17:28:42 +00:00
|
|
|
void selectionRequested();
|
|
|
|
///
|
2002-02-07 16:43:54 +00:00
|
|
|
void selectionLost();
|
|
|
|
///
|
2000-04-09 22:48:51 +00:00
|
|
|
void cursorToggle();
|
|
|
|
///
|
|
|
|
bool available() const;
|
2003-02-08 19:18:01 +00:00
|
|
|
/// get the change at the cursor position
|
|
|
|
Change const getCurrentChange();
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
2001-02-14 10:11:22 +00:00
|
|
|
void beforeChange(LyXText *);
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
2001-01-28 18:31:36 +00:00
|
|
|
void savePosition(unsigned int i);
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
2001-01-28 18:31:36 +00:00
|
|
|
void restorePosition(unsigned int i);
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
2001-01-28 18:31:36 +00:00
|
|
|
bool isSavedPosition(unsigned int i);
|
2000-06-05 15:12:09 +00:00
|
|
|
///
|
2002-07-17 04:13:41 +00:00
|
|
|
void switchKeyMap();
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
|
|
|
void insetUnlock();
|
|
|
|
///
|
|
|
|
void toggleSelection(bool = true);
|
|
|
|
///
|
|
|
|
void toggleToggle();
|
|
|
|
///
|
|
|
|
void center();
|
|
|
|
///
|
2001-06-04 23:57:32 +00:00
|
|
|
bool insertInset(Inset * inset, string const & lout = string());
|
|
|
|
///
|
2003-03-19 14:45:22 +00:00
|
|
|
void updateInset(Inset * inset);
|
2003-03-24 02:31:44 +00:00
|
|
|
/// a function should be executed from the workarea
|
|
|
|
bool workAreaDispatch(FuncRequest const & ev);
|
|
|
|
/// a function should be executed
|
2002-08-07 08:11:41 +00:00
|
|
|
bool dispatch(FuncRequest const & ev);
|
2001-03-06 19:29:58 +00:00
|
|
|
private:
|
2003-05-20 16:51:31 +00:00
|
|
|
/// An error list (replaces the error insets)
|
|
|
|
ErrorList errorlist_;
|
|
|
|
|
2003-02-08 19:18:01 +00:00
|
|
|
/// track changes for the document
|
|
|
|
void trackChanges();
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
///
|
|
|
|
friend class BufferView;
|
2002-08-27 12:32:04 +00:00
|
|
|
|
2001-06-04 23:57:32 +00:00
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
BufferView * bv_;
|
|
|
|
///
|
|
|
|
LyXView * owner_;
|
|
|
|
///
|
|
|
|
Buffer * buffer_;
|
|
|
|
///
|
2002-06-18 15:44:30 +00:00
|
|
|
boost::scoped_ptr<LyXScreen> screen_;
|
2000-04-08 17:02:02 +00:00
|
|
|
///
|
2002-06-11 22:38:49 +00:00
|
|
|
boost::scoped_ptr<WorkArea> workarea_;
|
|
|
|
///
|
2000-06-08 23:16:16 +00:00
|
|
|
Timeout cursor_timeout;
|
2000-04-08 17:02:02 +00:00
|
|
|
///
|
2000-05-20 21:37:05 +00:00
|
|
|
void stuffClipboard(string const &) const;
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2000-04-14 19:20:33 +00:00
|
|
|
bool using_xterm_cursor;
|
2001-03-06 19:29:58 +00:00
|
|
|
///
|
2001-01-28 18:31:36 +00:00
|
|
|
struct Position {
|
|
|
|
/// Filename
|
2001-11-26 16:42:04 +00:00
|
|
|
string filename;
|
|
|
|
/// Cursor paragraph Id
|
|
|
|
int par_id;
|
|
|
|
/// Cursor position
|
2001-11-27 10:34:16 +00:00
|
|
|
lyx::pos_type par_pos;
|
2001-01-28 18:31:36 +00:00
|
|
|
///
|
|
|
|
Position() : par_id(0), par_pos(0) {}
|
|
|
|
///
|
2001-11-27 10:34:16 +00:00
|
|
|
Position(string const & f, int id, lyx::pos_type pos)
|
2001-11-26 16:42:04 +00:00
|
|
|
: filename(f), par_id(id), par_pos(pos) {}
|
2001-01-28 18:31:36 +00:00
|
|
|
};
|
2001-03-06 19:29:58 +00:00
|
|
|
///
|
2001-01-28 18:33:17 +00:00
|
|
|
std::vector<Position> saved_positions;
|
2002-03-21 17:27:08 +00:00
|
|
|
/// Get next inset of this class from current cursor position
|
2001-02-23 16:10:03 +00:00
|
|
|
Inset * getInsetByCode(Inset::Code code);
|
2001-03-06 19:29:58 +00:00
|
|
|
///
|
2001-02-23 16:10:03 +00:00
|
|
|
void MenuInsertLyXFile(string const & filen);
|
2002-08-29 13:41:58 +00:00
|
|
|
/// our workarea
|
2002-09-03 11:54:41 +00:00
|
|
|
WorkArea & workarea() const;
|
2000-04-08 17:02:02 +00:00
|
|
|
};
|
2002-06-12 15:01:32 +00:00
|
|
|
#endif // BUFFERVIEW_PIMPL_H
|