mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
5198e1d9a3
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8498 a592a061-630c-0410-9148-cb99ea01b6c8
39 lines
890 B
C++
39 lines
890 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file dispatchresult.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author none
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef DISPATCH_RESULT_H
|
|
#define DISPATCH_RESULT_H
|
|
|
|
/// Maybe this can go entirely
|
|
class DispatchResult {
|
|
public:
|
|
///
|
|
DispatchResult() : dispatched_(false), update_(false) {}
|
|
///
|
|
DispatchResult(bool disp, bool upd) : dispatched_(disp), update_(upd) {}
|
|
//
|
|
bool dispatched() const { return dispatched_; }
|
|
///
|
|
void dispatched(bool disp) { dispatched_ = disp; }
|
|
///
|
|
bool update() const { return update_; }
|
|
///
|
|
void update(bool up) { update_ = up; }
|
|
private:
|
|
/// was the event fully dispatched?
|
|
bool dispatched_;
|
|
/// do we need to redraw the screen afterwards?
|
|
bool update_;
|
|
};
|
|
|
|
#endif // DISPATCH_RESULT_H
|