mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
f4857dab04
* LyXFunc: - dispatch(): transfer assertion on lyx_view_ to each LFUN on a case by case basis. - dispatch(): new LFUN_WINDOW_CLOSE - getStatus(): special treatment for LFUN_LYX_QUIT * LyX: - views_, addLyXView(): deleted - quit(): call saveGeometry() on each LyXView before exiting. * GuiApplication: - is now a QObject. - quitLyX(): new Qt slot for lastWindowClosed signal. * Gui.h: - destroyView(), destroyWorkArea(): deleted - viewIds(): new method * GuiImplementation: - implement above changes. - GuiImplementation is now a QObject - cleanupViews(): new private slot. - buildViewIds(): new helper method - views_ and work_areas_ are now maps of raw pointers instead of schared_ptr. * LyXView - now stores its id. - dispatch(): special treatment for LFUN_WINDOW_CLOSE. - workAreaIds(): new method. - close(): new pure virtual method. - saveGeometry(): new pure virtual method. * GuiView: - implements above changes. - GuiView(): set WA_DeleteOnClose and Qt::WA_QuitOnClose to let Qt manage the destruction on close(). - closeEvent(): session stuff transfered to saveGeometry() * WorkArea - now store its id. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15514 a592a061-630c-0410-9148-cb99ea01b6c8
142 lines
3.1 KiB
C++
142 lines
3.1 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.
|
|
*/
|
|
|
|
#ifndef BASE_WORKAREA_H
|
|
#define BASE_WORKAREA_H
|
|
|
|
#include "frontends/key_state.h"
|
|
#include "frontends/LyXKeySym.h"
|
|
#include "frontends/Timeout.h"
|
|
|
|
#include "support/docstring.h"
|
|
|
|
#include <boost/signals/trackable.hpp>
|
|
|
|
// FIXME: defined in X.h, spuriously pulled in by Qt 3 headers
|
|
#undef CursorShape
|
|
|
|
namespace lyx {
|
|
|
|
class BufferView;
|
|
class FuncRequest;
|
|
class LyXView;
|
|
|
|
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 boost::signals::trackable {
|
|
public:
|
|
WorkArea(int id, LyXView & lyx_view);
|
|
|
|
virtual ~WorkArea() {}
|
|
|
|
int const id() const { return id_; }
|
|
|
|
void setBufferView(BufferView * buffer_view);
|
|
|
|
///
|
|
BufferView & bufferView();
|
|
///
|
|
BufferView const & bufferView() const;
|
|
|
|
/// 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();
|
|
///
|
|
void checkAndGreyOut();
|
|
|
|
protected:
|
|
/// grey out (no buffer)
|
|
virtual void greyOut();
|
|
///
|
|
void processKeySym(LyXKeySymPtr key, key_modifier::state state);
|
|
/// 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();
|
|
///
|
|
void scrollBufferView(int position);
|
|
/// 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;
|
|
///
|
|
void updateScrollbar();
|
|
|
|
///
|
|
BufferView * buffer_view_;
|
|
|
|
///
|
|
LyXView & lyx_view_;
|
|
///
|
|
bool greyed_out_;
|
|
|
|
private:
|
|
///
|
|
int id_;
|
|
///
|
|
void displayMessage(docstring const &);
|
|
/// buffer messages signal connection
|
|
boost::signals::connection message_connection_;
|
|
|
|
/// is the cursor currently displayed
|
|
bool cursor_visible_;
|
|
|
|
///
|
|
Timeout cursor_timeout_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // BASE_WORKAREA_H
|