3 * \file DispatchResult.h
4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
8 * \author Lars Gullik Bjønnes
10 * Full author contact details are available in file CREDITS.
13 #ifndef DISPATCH_RESULT_H
14 #define DISPATCH_RESULT_H
16 #include "update_flags.h"
20 /// Maybe this can go entirely
21 class DispatchResult
{
24 DispatchResult() : dispatched_(false), update_(Update::None
) {}
26 DispatchResult(bool disp
, Update::flags f
) : dispatched_(disp
), update_(f
) {}
28 bool dispatched() const { return dispatched_
; }
30 void dispatched(bool disp
) { dispatched_
= disp
; }
32 Update::flags
update() const { return update_
; }
34 void update(Update::flags f
) { update_
= f
; }
36 /// was the event fully dispatched?
38 /// do we need to redraw the screen afterwards?
39 Update::flags update_
;
45 #endif // DISPATCH_RESULT_H