X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fdispatchresult.h;h=d5133fd5a1f3c5aa75068aff026ff6e0d4e59c30;hb=07cc9f67534474b167ca1ea727bda643fdd8d197;hp=16ed98e9d62fafd5c0d811e28824c5662db67672;hpb=faa37a30d458ac1cd1babbae05ea3714038a7826;p=lyx.git diff --git a/src/dispatchresult.h b/src/dispatchresult.h index 16ed98e9d6..d5133fd5a1 100644 --- a/src/dispatchresult.h +++ b/src/dispatchresult.h @@ -13,81 +13,26 @@ #ifndef DISPATCH_RESULT_H #define DISPATCH_RESULT_H -/** Dispatch result codes - DISPATCHED = the inset caught the action - DISPATCHED_NOUPDATE = the inset caught the action and no update - is needed to redraw the inset - FINISHED = the inset must be unlocked as a result - of the action - FINISHED_RIGHT = FINISHED, but move the cursor RIGHT from - the inset. - FINISHED_UP = FINISHED, but move the cursor UP from - the inset. - FINISHED_DOWN = FINISHED, but move the cursor DOWN from - the inset. - FINISHED_POP = FINISHED, but move the cursor out the inset - (possibly more than one level) - UNDISPATCHED = the action was not catched, it should be - dispatched by lower level insets -*/ -enum dispatch_result_t { - NONE = 0, - FINISHED, - FINISHED_RIGHT, - FINISHED_UP, - FINISHED_DOWN -}; - - -/** \c DispatchResult is a wrapper for dispatch_result_t. - * It can be forward-declared and passed as a function argument without - * having to expose insetbase.h. - */ +/// Maybe this can go entirely class DispatchResult { public: - DispatchResult() - : dispatched_(false), val_(NONE) {} - explicit - DispatchResult(bool dis) - : dispatched_(dis), update_(false), val_(NONE) {} - DispatchResult(bool dis, bool update) - : dispatched_(dis), update_(update), val_(NONE) {} - DispatchResult(bool dis, dispatch_result_t val) - : dispatched_(dis), update_(true), val_(val) {} - dispatch_result_t val() const { return val_; } - void val(dispatch_result_t drt) { - val_ = drt; - } - bool dispatched() const { - return dispatched_; - } - void dispatched(bool dis) { - dispatched_ = dis; - } - bool update() const { - return update_; - } - void update(bool up) { - update_ = up; - } + /// + 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_; - dispatch_result_t val_; }; - -inline -bool operator==(DispatchResult const & lhs, DispatchResult const & rhs) -{ - return lhs.dispatched() == rhs.dispatched() && lhs.val() == rhs.val(); -} - - -inline -bool operator!=(DispatchResult const & lhs, DispatchResult const & rhs) -{ - return !(lhs == rhs); -} - #endif // DISPATCH_RESULT_H