2000-04-08 17:02:02 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
|
|
|
#ifndef BUFFERVIEW_PIMPL_H
|
|
|
|
#define BUFFERVIEW_PIMPL_H
|
|
|
|
|
2001-03-06 19:29:58 +00:00
|
|
|
#include <boost/smart_ptr.hpp>
|
|
|
|
|
2000-04-08 17:02:02 +00:00
|
|
|
#include "BufferView.h"
|
2001-02-23 16:10:03 +00:00
|
|
|
#include "commandtags.h"
|
2001-02-07 16:44:49 +00:00
|
|
|
#include "frontends/Timeout.h"
|
2001-03-06 19:29:58 +00:00
|
|
|
#include "WorkArea.h"
|
2001-12-17 14:25:04 +00:00
|
|
|
#include "box.h"
|
2001-07-20 09:38:19 +00:00
|
|
|
#include "insets/insetspecialchar.h"
|
2001-11-26 16:42:04 +00:00
|
|
|
#include "support/types.h"
|
2000-04-08 17:02:02 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class LyXView;
|
|
|
|
class WorkArea;
|
|
|
|
class LyXScreen;
|
|
|
|
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2001-03-15 18:21:56 +00:00
|
|
|
struct BufferView::Pimpl : public SigC::Object {
|
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
|
|
|
///
|
|
|
|
Painter & painter();
|
|
|
|
///
|
|
|
|
void buffer(Buffer *);
|
|
|
|
///
|
|
|
|
void resize(int xpos, int ypos, int width, int height);
|
|
|
|
///
|
|
|
|
void resize();
|
|
|
|
///
|
|
|
|
void redraw();
|
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);
|
2000-04-08 17:02:02 +00:00
|
|
|
/// Update pixmap of screen
|
|
|
|
void updateScreen();
|
|
|
|
///
|
|
|
|
void workAreaExpose();
|
|
|
|
///
|
2000-04-09 22:48:51 +00:00
|
|
|
void updateScrollbar();
|
|
|
|
///
|
|
|
|
void scrollCB(double value);
|
2001-12-17 14:25:04 +00:00
|
|
|
/**
|
|
|
|
* Returns an inset if inset was hit, or 0 if not.
|
|
|
|
*
|
|
|
|
* If hit, the coordinates are changed relative to the inset.
|
|
|
|
*/
|
|
|
|
Inset * checkInsetHit(LyXText *, int & x, int & y);
|
2000-04-08 17:02:02 +00:00
|
|
|
///
|
|
|
|
int scrollUp(long time);
|
|
|
|
///
|
|
|
|
int scrollDown(long time);
|
|
|
|
///
|
2000-08-14 15:31:16 +00:00
|
|
|
void workAreaKeyPress(KeySym, unsigned int state);
|
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
void workAreaMotionNotify(int x, int y, unsigned int state);
|
|
|
|
///
|
|
|
|
void workAreaButtonPress(int x, int y, unsigned int button);
|
|
|
|
///
|
|
|
|
void workAreaButtonRelease(int x, int y, unsigned int button);
|
|
|
|
///
|
|
|
|
void doubleClick(int x, int y, unsigned int button);
|
|
|
|
///
|
|
|
|
void tripleClick(int x, int y, unsigned int button);
|
|
|
|
///
|
2002-01-13 17:28:42 +00:00
|
|
|
void selectionRequested();
|
|
|
|
///
|
2002-02-07 16:43:54 +00:00
|
|
|
void selectionLost();
|
|
|
|
///
|
2000-04-14 19:20:33 +00:00
|
|
|
void enterView();
|
|
|
|
///
|
|
|
|
void leaveView();
|
|
|
|
///
|
2000-04-09 22:48:51 +00:00
|
|
|
void cursorToggle();
|
|
|
|
///
|
2000-10-10 10:38:11 +00:00
|
|
|
void cursorPrevious(LyXText *);
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
2000-10-10 10:38:11 +00:00
|
|
|
void cursorNext(LyXText *);
|
2000-04-09 22:48:51 +00:00
|
|
|
///
|
|
|
|
bool available() const;
|
|
|
|
///
|
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
|
|
|
///
|
2000-04-09 22:48:51 +00:00
|
|
|
void setState();
|
|
|
|
///
|
|
|
|
void insetSleep();
|
|
|
|
///
|
|
|
|
void insetWakeup();
|
|
|
|
///
|
|
|
|
void insetUnlock();
|
|
|
|
///
|
|
|
|
bool focus() const;
|
|
|
|
///
|
|
|
|
void focus(bool);
|
|
|
|
///
|
|
|
|
bool active() const;
|
|
|
|
///
|
|
|
|
bool belowMouse() const;
|
|
|
|
///
|
|
|
|
void showCursor();
|
|
|
|
///
|
|
|
|
void hideCursor();
|
|
|
|
///
|
|
|
|
void toggleSelection(bool = true);
|
|
|
|
///
|
|
|
|
void toggleToggle();
|
|
|
|
///
|
|
|
|
void center();
|
|
|
|
///
|
2001-06-04 23:57:32 +00:00
|
|
|
bool insertInset(Inset * inset, string const & lout = string());
|
|
|
|
///
|
|
|
|
void updateInset(Inset * inset, bool mark_dirty);
|
|
|
|
///
|
2001-02-23 16:10:03 +00:00
|
|
|
bool Dispatch(kb_action action, string const & argument);
|
2001-03-06 19:29:58 +00:00
|
|
|
private:
|
2001-12-17 14:25:04 +00:00
|
|
|
/**
|
|
|
|
* Return the on-screen dimensions of the inset at the cursor.
|
|
|
|
* Pre-condition: the cursor must be at an inset.
|
|
|
|
*/
|
|
|
|
Box insetDimensions(LyXText const & text, LyXCursor const & cursor) const;
|
|
|
|
/**
|
|
|
|
* check if the given co-ordinates are inside an inset at the given cursor,
|
|
|
|
* if one exists. If so, the inset is returned, and the co-ordinates are
|
|
|
|
* made relative. Otherwise, 0 is returned.
|
|
|
|
*/
|
|
|
|
Inset * checkInset(LyXText const & text, LyXCursor const & cursor, int & x, int & y) const;
|
2001-03-06 19:29:58 +00:00
|
|
|
///
|
|
|
|
friend class BufferView;
|
2001-05-18 07:37:14 +00:00
|
|
|
/// open and lock an updatable inset
|
|
|
|
bool open_new_inset(UpdatableInset * new_inset, bool behind = false);
|
2001-07-20 09:38:19 +00:00
|
|
|
///
|
|
|
|
void specialChar(InsetSpecialChar::Kind);
|
2001-05-29 09:50:02 +00:00
|
|
|
///
|
|
|
|
void newline();
|
|
|
|
///
|
|
|
|
void hfill();
|
|
|
|
///
|
2001-07-23 09:11:14 +00:00
|
|
|
void smartQuote();
|
|
|
|
///
|
|
|
|
void insertAndEditInset(Inset *);
|
2001-02-23 16:10:03 +00:00
|
|
|
///
|
2001-06-04 23:57:32 +00:00
|
|
|
void gotoInset(std::vector<Inset::Code> const & codes,
|
|
|
|
bool same_content);
|
|
|
|
///
|
|
|
|
void gotoInset(Inset::Code codes, bool same_content);
|
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
BufferView * bv_;
|
|
|
|
///
|
|
|
|
LyXView * owner_;
|
|
|
|
///
|
|
|
|
Buffer * buffer_;
|
|
|
|
///
|
2001-03-06 19:29:58 +00:00
|
|
|
boost::scoped_ptr<LyXScreen> screen_;
|
2000-04-08 17:02:02 +00:00
|
|
|
///
|
|
|
|
long current_scrollbar_value;
|
|
|
|
///
|
2000-06-08 23:16:16 +00:00
|
|
|
Timeout cursor_timeout;
|
2000-04-08 17:02:02 +00:00
|
|
|
///
|
2001-03-06 19:29:58 +00:00
|
|
|
WorkArea workarea_;
|
2000-04-08 17:02:02 +00:00
|
|
|
///
|
2000-05-20 21:37:05 +00:00
|
|
|
void pasteClipboard(bool asPara);
|
|
|
|
///
|
|
|
|
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;
|
2001-03-06 19:29:58 +00:00
|
|
|
///
|
2001-02-23 16:10:03 +00:00
|
|
|
void moveCursorUpdate(bool selecting);
|
2001-11-26 16:42:04 +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);
|
2001-06-04 23:57:32 +00:00
|
|
|
///
|
|
|
|
bool inset_slept;
|
2000-04-08 17:02:02 +00:00
|
|
|
};
|
|
|
|
#endif
|