lyx_mirror/src/DispatchResult.h

81 lines
2.0 KiB
C
Raw Normal View History

// -*- C++ -*-
/**
* \file DispatchResult.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Peter Kümmel
* \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"
#include "support/docstring.h"
namespace lyx {
class DispatchResult
{
public:
///
2020-10-27 12:16:07 +00:00
DispatchResult() = default;
///
DispatchResult(bool dispatched, Update::flags f) :
2020-10-27 12:16:07 +00:00
dispatched_(dispatched), update_(f) {}
///
bool dispatched() const { return dispatched_; }
///
void dispatched(bool disp) { dispatched_ = disp; }
///
bool error() const { return error_; }
///
void setError(bool e) { error_ = e; }
///
2020-10-21 08:35:40 +00:00
docstring message() const { return message_; }
///
void setMessage(docstring const & m) { message_ = m; }
///
void setMessage(std::string const & m) { message_ = from_utf8(m); }
///
Update::flags screenUpdate() const { return update_; }
///
void screenUpdate(Update::flags f) { update_ = f; }
/// Does the buffer need updating?
bool needBufferUpdate() const { return need_buf_update_; }
/// Force the buffer to be updated
void forceBufferUpdate() { need_buf_update_ = true; }
/// Clear the flag indicating we need an update
void clearBufferUpdate() { need_buf_update_ = false; }
2014-02-17 20:47:22 +00:00
/// Do we need to display a message in the status bar?
bool needMessageUpdate() const { return need_msg_update_; }
2014-02-17 20:47:22 +00:00
/// Force the message to be displayed
void forceMessageUpdate() { need_msg_update_ = true; }
2014-02-17 20:47:22 +00:00
/// Clear the flag indicating we need to display the message
void clearMessageUpdate() { need_msg_update_ = false; }
private:
/// was the event fully dispatched?
2020-10-27 12:16:07 +00:00
bool dispatched_ = false;
/// was there an error?
2020-10-27 12:16:07 +00:00
bool error_ = false;
/// do we need to redraw the screen afterwards?
2020-10-27 12:16:07 +00:00
Update::flags update_ = Update::None;
///
docstring message_;
2017-07-03 17:45:58 +00:00
///
2020-10-27 12:16:07 +00:00
bool need_buf_update_ = false;
///
2020-10-27 12:16:07 +00:00
bool need_msg_update_ = true;
};
} // namespace lyx
#endif // DISPATCH_RESULT_H