1999-09-27 18:44:28 +00:00
|
|
|
// -*- C++ -*-
|
2002-06-12 10:31:34 +00:00
|
|
|
/**
|
|
|
|
* \file screen.h
|
|
|
|
* Copyright 1995-2002 the LyX Team
|
|
|
|
* Read the file COPYING
|
2002-03-21 17:27:08 +00:00
|
|
|
*
|
2002-06-12 10:31:34 +00:00
|
|
|
* \author unknown
|
|
|
|
* \author John Levon <moz@compsoc.man.ac.uk>
|
|
|
|
*/
|
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;
|
2002-06-12 10:31:34 +00:00
|
|
|
class LyXCursor;
|
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
|
|
|
|
2002-06-12 10:31:34 +00:00
|
|
|
/**
|
|
|
|
* LScreen - document rendering management
|
|
|
|
*
|
|
|
|
* This class is used to manage the on-screen rendering inside the
|
|
|
|
* work area; it is responsible for deciding which LyXText rows
|
|
|
|
* need re-drawing.
|
|
|
|
*
|
|
|
|
* This class will arrange for LyXText to paint onto a pixmap
|
|
|
|
* provided by the WorkArea widget.
|
|
|
|
*
|
|
|
|
* The blinking cursor is also handled here.
|
1999-09-27 18:44:28 +00:00
|
|
|
*/
|
2002-06-11 23:47:58 +00:00
|
|
|
class LScreen {
|
1999-09-27 18:44:28 +00:00
|
|
|
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
|
|
|
///
|
2002-06-11 23:47:58 +00:00
|
|
|
LScreen(WorkArea &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
2001-06-25 00:06:33 +00:00
|
|
|
///
|
2002-06-11 23:47:58 +00:00
|
|
|
~LScreen();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-11 23:47:58 +00:00
|
|
|
void reset();
|
|
|
|
|
2000-11-21 15:46:13 +00:00
|
|
|
/// Sets the cursor color to LColor::cursor.
|
|
|
|
void setCursorColor();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
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-07-04 07:19:09 +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-07-04 07:19:09 +00:00
|
|
|
void redraw(LyXText *, BufferView *);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
2002-06-12 10:31:34 +00:00
|
|
|
/**
|
|
|
|
* topCursorVisible - get a new "top" to make the cursor visible
|
|
|
|
* @param c the cursor
|
|
|
|
* @param top_y the current y location of the containing region
|
|
|
|
*
|
|
|
|
* This helper function calculates a new y co-ordinate for
|
|
|
|
* the top of the containing region such that the cursor contained
|
|
|
|
* within the LyXText is "nicely" visible.
|
|
|
|
*/
|
|
|
|
unsigned int topCursorVisible(LyXCursor const & c, int top_y);
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
/// Redraws the screen such that the cursor is visible
|
2001-07-04 07:19:09 +00:00
|
|
|
bool fitCursor(LyXText *, BufferView *);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-04 07:19:09 +00:00
|
|
|
void showCursor(LyXText const *, BufferView const *);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-04 07:19:09 +00:00
|
|
|
void hideCursor();
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-08-02 14:55:06 +00:00
|
|
|
void cursorToggle(BufferView *) const;
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-04 07:19:09 +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-07-04 07:19:09 +00:00
|
|
|
bool fitManualCursor(LyXText *, BufferView *, int, int, int, int);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-04 07:19:09 +00:00
|
|
|
void toggleSelection(LyXText *, BufferView *, bool = true,
|
2001-01-02 16:06:14 +00:00
|
|
|
int y_offset = 0, int x_offset = 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
///
|
2001-07-04 07:19:09 +00:00
|
|
|
void toggleToggle(LyXText *, BufferView *,
|
2001-01-02 16:06:14 +00:00
|
|
|
int y_offset = 0, int x_offset = 0);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
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-07-04 07:19:09 +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
|
2002-03-21 17:27:08 +00:00
|
|
|
void expose(int x, int y, int exp_width, int exp_height);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
/// y1 and y2 are coordinates of the screen
|
2001-07-04 07:19:09 +00:00
|
|
|
void drawFromTo(LyXText *, BufferView *, int y1, int y2,
|
2002-03-21 17:27:08 +00:00
|
|
|
int y_offset = 0, int x_offset = 0, bool internal=false);
|
2000-04-26 13:57:28 +00:00
|
|
|
|
|
|
|
/// y is a coordinate of the text
|
2001-07-04 07:19:09 +00:00
|
|
|
void drawOneRow(LyXText *, BufferView *, Row * row,
|
2001-01-02 16:06:14 +00:00
|
|
|
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;
|
2002-03-21 17:27:08 +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
|