mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
e36fba33ab
src/frontends/Alert.h src/frontends/alert.h src/frontends/Alert.cpp src/frontends/alert.cpp src/frontends/Alert_pimpl.cpp src/frontends/alert_pimpl.cpp src/frontends/qt4/Alert_pimpl.cpp src/frontends/qt4/alert_pimpl.cpp src/frontends/controllers/ButtonPolicies.cpp src/frontends/controllers/ButtonPolicy.cpp src/frontends/controllers/ButtonPolicies.h src/frontends/controllers/ButtonPolicy.h src/insets/InsetEnv.cpp src/insets/InsetEnvironment.cpp src/insets/InsetEnv.h src/insets/InsetEnvironment.h src/mathed/MathMacroTable.h src/mathed/MacroTable.h src/mathed/MathMacroTable.cpp src/mathed/MacroTable.cpp src/lyx_cb.h src/callback.h src/lyx_cb.cpp src/callback.cpp src/UpdateFlags.h src/update_flags.h git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18076 a592a061-630c-0410-9148-cb99ea01b6c8
46 lines
992 B
C++
46 lines
992 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
|
|
|
|
#include "update_flags.h"
|
|
|
|
namespace lyx {
|
|
|
|
/// Maybe this can go entirely
|
|
class DispatchResult {
|
|
public:
|
|
///
|
|
DispatchResult() : dispatched_(false), update_(Update::None) {}
|
|
///
|
|
DispatchResult(bool disp, Update::flags f) : dispatched_(disp), update_(f) {}
|
|
//
|
|
bool dispatched() const { return dispatched_; }
|
|
///
|
|
void dispatched(bool disp) { dispatched_ = disp; }
|
|
///
|
|
Update::flags update() const { return update_; }
|
|
///
|
|
void update(Update::flags f) { update_ = f; }
|
|
private:
|
|
/// was the event fully dispatched?
|
|
bool dispatched_;
|
|
/// do we need to redraw the screen afterwards?
|
|
Update::flags update_;
|
|
};
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
#endif // DISPATCH_RESULT_H
|