mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
e1a5cb74a8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14448 a592a061-630c-0410-9148-cb99ea01b6c8
151 lines
3.2 KiB
C++
151 lines
3.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file WorkArea.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author unknown
|
|
* \author John Levon
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
// X11 use a define called CursorShape, and we really want to use
|
|
// that name our selves. Therefore we do something similar to what is done
|
|
// in kde/fixx11h.h:
|
|
namespace X {
|
|
#ifdef CursorShape
|
|
#ifndef FIXX11H_CursorShape
|
|
#define FIXX11H_CursorShape
|
|
int const XCursorShape = CursorShape;
|
|
#undef CursorShape
|
|
int const CursorShape = CursorShape;
|
|
#endif
|
|
#undef CursorShape
|
|
#endif
|
|
} // namespace X
|
|
|
|
|
|
#ifndef BASE_WORKAREA_H
|
|
#define BASE_WORKAREA_H
|
|
|
|
#include "frontends/key_state.h"
|
|
#include "frontends/LyXKeySym.h"
|
|
#include "frontends/Timeout.h"
|
|
|
|
|
|
class BufferView;
|
|
class FuncRequest;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class Painter;
|
|
|
|
/// types of cursor in work area
|
|
enum CursorShape {
|
|
/// normal I-beam
|
|
BAR_SHAPE,
|
|
/// L-shape for locked insets of a different language
|
|
L_SHAPE,
|
|
/// reverse L-shape for RTL text
|
|
REVERSED_L_SHAPE
|
|
};
|
|
|
|
/**
|
|
* The work area class represents the widget that provides the
|
|
* view onto a document. It is owned by the BufferView, and
|
|
* is responsible for handing events back to its owning BufferView.
|
|
* It works in concert with the BaseScreen class to update the
|
|
* widget view of a document.
|
|
*/
|
|
class WorkArea {
|
|
public:
|
|
WorkArea(BufferView * buffer_view = 0);
|
|
|
|
virtual ~WorkArea() {}
|
|
|
|
void setBufferView(BufferView * buffer_view);
|
|
|
|
///
|
|
BufferView & bufferView();
|
|
///
|
|
BufferView const & bufferView() const;
|
|
|
|
|
|
/// return the painter object for this work area
|
|
virtual Painter & getPainter() = 0;
|
|
|
|
/// return the width of the work area in pixels
|
|
virtual int width() const = 0;
|
|
|
|
/// return the height of the work area in pixels
|
|
virtual int height() const = 0;
|
|
|
|
/**
|
|
* Update the scrollbar.
|
|
* @param height the total document height in pixels
|
|
* @param pos the current position in the document, in pixels
|
|
* @param line_height the line-scroll amount, in pixels
|
|
*/
|
|
virtual void setScrollbarParams(int height, int pos, int line_height) = 0;
|
|
|
|
/// redraw the screen, without using existing pixmap
|
|
virtual void redraw();
|
|
|
|
/// grey out (no buffer)
|
|
void greyOut();
|
|
|
|
/// FIXME: should be protected, public until the qt3 and gtk frontends are
|
|
/// cleaned up.
|
|
void processKeySym(LyXKeySymPtr key, key_modifier::state state);
|
|
|
|
protected:
|
|
/// cause the display of the given area of the work area
|
|
virtual void expose(int x, int y, int w, int h) = 0;
|
|
|
|
///
|
|
void dispatch(FuncRequest const & cmd0);
|
|
|
|
///
|
|
void resizeBufferView();
|
|
|
|
|
|
/// hide the visible cursor, if it is visible
|
|
void hideCursor();
|
|
|
|
/// show the cursor if it is not visible
|
|
void showCursor();
|
|
|
|
/// toggle the cursor's visibility
|
|
void toggleCursor();
|
|
|
|
/// hide the cursor
|
|
virtual void removeCursor() = 0;
|
|
|
|
/// paint the cursor and store the background
|
|
virtual void showCursor(int x, int y, int h, CursorShape shape) = 0;
|
|
|
|
///
|
|
BufferView * buffer_view_;
|
|
|
|
private:
|
|
///
|
|
void checkAndGreyOut();
|
|
|
|
///
|
|
bool greyed_out_;
|
|
|
|
/// is the cursor currently displayed
|
|
bool cursor_visible_;
|
|
|
|
///
|
|
Timeout cursor_timeout_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // BASE_WORKAREA_H
|