1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
1999-11-15 12:01:38 +00:00
|
|
|
* ======================================================
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
2000-02-10 17:53:36 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
2001-05-30 13:53:44 +00:00
|
|
|
* Copyright 1995-2001 The LyX Team
|
1999-09-27 18:44:28 +00:00
|
|
|
*
|
1999-11-15 12:01:38 +00:00
|
|
|
* ====================================================== */
|
1999-10-02 16:21:10 +00:00
|
|
|
|
|
|
|
#ifndef LYXSCREEN_H
|
|
|
|
#define LYXSCREEN_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
2000-02-14 22:14:48 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
class LyXText;
|
2000-08-07 20:58:24 +00:00
|
|
|
class WorkArea;
|
|
|
|
class Buffer;
|
2001-01-02 16:06:14 +00:00
|
|
|
class BufferView;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
struct Row;
|
2000-08-07 20:58:24 +00:00
|
|
|
|
|
|
|
///
|
1999-09-27 18:44:28 +00:00
|
|
|
typedef unsigned short Dimension;
|
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/** The class LyXScreen is used for the main Textbody.
|
|
|
|
Concretely, the screen is held in a pixmap. This pixmap is kept up to
|
|
|
|
date and used to optimize drawing on the screen.
|
|
|
|
This class also handles the drawing of the cursor and partly the selection.
|
|
|
|
*/
|
|
|
|
class LyXScreen {
|
|
|
|
public:
|
2000-08-07 20:58:24 +00:00
|
|
|
///
|
2000-03-10 13:22:20 +00:00
|
|
|
enum Cursor_Shape {
|
|
|
|
///
|
|
|
|
BAR_SHAPE,
|
|
|
|
///
|
|
|
|
L_SHAPE,
|
|
|
|
///
|
|
|
|
REVERSED_L_SHAPE
|
|
|
|
};
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-08-07 20:58:24 +00:00
|
|
|
LyXScreen(WorkArea &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
|
|
|
~LyXScreen();
|
|
|
|
|
2000-11-21 15:46:13 +00:00
|
|
|
/// Sets the cursor color to LColor::cursor.
|
|
|
|
void setCursorColor();
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/** Draws the screen form textposition y. Uses as much of
|
1999-12-16 06:43:25 +00:00
|
|
|
the already printed pixmap as possible */
|
2001-01-02 16:06:14 +00:00
|
|
|
void Draw(LyXText *, BufferView *, unsigned int y);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Redraws the screen, without using existing pixmap
|
2001-01-02 16:06:14 +00:00
|
|
|
void Redraw(LyXText *, BufferView *);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// Returns a new top so that the cursor is visible
|
2000-09-29 18:44:07 +00:00
|
|
|
unsigned int TopCursorVisible(LyXText const *);
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Redraws the screen such that the cursor is visible
|
2001-01-02 16:06:14 +00:00
|
|
|
bool FitCursor(LyXText *, BufferView *);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-01-02 16:06:14 +00:00
|
|
|
void ShowCursor(LyXText const *, BufferView const *);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
void HideCursor();
|
|
|
|
///
|
2001-01-02 16:06:14 +00:00
|
|
|
void CursorToggle(LyXText const *, BufferView const *);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2000-09-29 18:44:07 +00:00
|
|
|
void ShowManualCursor(LyXText const *, int x, int y,
|
2000-08-07 20:58:24 +00:00
|
|
|
int asc, int desc,
|
2000-03-10 13:22:20 +00:00
|
|
|
Cursor_Shape shape);
|
1999-09-27 18:44:28 +00:00
|
|
|
/// returns 1 if first has changed, otherwise 0
|
2001-01-02 16:06:14 +00:00
|
|
|
bool FitManualCursor(LyXText *, BufferView *, int, int, int, int);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-01-02 16:06:14 +00:00
|
|
|
void ToggleSelection(LyXText *, BufferView *, bool = true,
|
|
|
|
int y_offset = 0, int x_offset = 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-01-02 16:06:14 +00:00
|
|
|
void ToggleToggle(LyXText *, BufferView *,
|
|
|
|
int y_offset = 0, int x_offset = 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/** Updates part of the screen. If text->status is
|
1999-12-16 06:43:25 +00:00
|
|
|
LyXText::NEED_MORE_REFRESH, we update from the
|
|
|
|
point of change and to the end of the screen.
|
|
|
|
If text->status is LyXText::NEED_VERY_LITTLE_REFRESH,
|
|
|
|
we only update the current row. */
|
2001-01-02 16:06:14 +00:00
|
|
|
void Update(LyXText *, BufferView *, int y_offset=0, int x_offset=0);
|
2000-08-25 11:50:32 +00:00
|
|
|
///
|
|
|
|
bool forceClear() const { return force_clear; }
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
///
|
|
|
|
bool cursor_visible;
|
|
|
|
private:
|
|
|
|
/// Copies specified area of pixmap to screen
|
|
|
|
void expose(int x, int y, int exp_width, int exp_height);
|
|
|
|
|
|
|
|
/// y1 and y2 are coordinates of the screen
|
2001-01-02 16:06:14 +00:00
|
|
|
void DrawFromTo(LyXText *, BufferView *, int y1, int y2,
|
2000-09-29 18:44:07 +00:00
|
|
|
int y_offset = 0, int x_offset = 0);
|
2000-04-26 13:57:28 +00:00
|
|
|
|
|
|
|
/// y is a coordinate of the text
|
2001-01-02 16:06:14 +00:00
|
|
|
void DrawOneRow(LyXText *, BufferView *, Row * row,
|
|
|
|
int y_text, int y_offset = 0, int x_offset = 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
2000-02-18 22:22:42 +00:00
|
|
|
WorkArea & owner;
|
2000-02-10 17:53:36 +00:00
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
|
|
|
Pixmap cursor_pixmap;
|
|
|
|
///
|
|
|
|
int cursor_pixmap_x;
|
|
|
|
///
|
|
|
|
int cursor_pixmap_y;
|
|
|
|
///
|
|
|
|
int cursor_pixmap_w;
|
|
|
|
///
|
|
|
|
int cursor_pixmap_h;
|
2000-02-10 17:53:36 +00:00
|
|
|
///
|
|
|
|
GC gc_copy;
|
2000-08-25 11:50:32 +00:00
|
|
|
///
|
|
|
|
bool force_clear;
|
1999-09-27 18:44:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|