lyx_mirror/src/frontends/WorkArea.h
Jean-Marc Lasgouttes a1579c583a Compute metrics when graphics is updated
Remove the old schedule_redraw_ mechanism that was only useful because
of our synchronous drawing code. Now that actual painting is
scheduled instead of forced, it becomes pointless.

Rename WorkArea::redraw(bool) to scheduleRedraw(bool), to show that
the drawing is not done right away.

In GuiView::updateInset, call scheduleRedraw(true), so that metrics
are correctly computed (this was the whole point of the exercise).

(cherry picked from commit a31d3dc67d)
2018-02-15 12:29:25 +01:00

54 lines
1.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/KeyModifier.h"
namespace lyx {
class BufferView;
class KeySymbol;
namespace frontend {
/**
* 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:
///
virtual ~WorkArea() {}
/// Update metrics if needed and schedule a paint event
virtual void scheduleRedraw(bool update_metrics) = 0;
/// close this work area.
/// Slot for Buffer::closing signal.
virtual void close() = 0;
/// Update window titles of all users.
virtual void updateWindowTitle() = 0;
};
} // namespace frontend
} // namespace lyx
#endif // BASE_WORKAREA_H