X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FFuncRequest.cpp;h=d37fd924a371bcfd3a96f74924d8f6fa0dd74010;hb=69036ced3765f40048d62be800c98af3ea2d1b4a;hp=c7624c38ae336775ffe6e2da052f8ffac60dbb8b;hpb=1d2cf2771af1ae3af372cfe4f72c4df9f2853ba1;p=lyx.git diff --git a/src/FuncRequest.cpp b/src/FuncRequest.cpp index c7624c38ae..d37fd924a3 100644 --- a/src/FuncRequest.cpp +++ b/src/FuncRequest.cpp @@ -29,52 +29,47 @@ FuncRequest const FuncRequest::unknown(LFUN_UNKNOWN_ACTION); FuncRequest const FuncRequest::noaction(LFUN_NOACTION); FuncRequest::FuncRequest(Origin o) - : action(LFUN_NOACTION), origin(o), x(0), y(0), + : action_(LFUN_NOACTION), origin_(o), x_(0), y_(0), button_(mouse_button::none) {} FuncRequest::FuncRequest(FuncCode act, Origin o) - : action(act), origin(o), x(0), y(0), button_(mouse_button::none) + : action_(act), origin_(o), x_(0), y_(0), + button_(mouse_button::none) {} FuncRequest::FuncRequest(FuncCode act, docstring const & arg, Origin o) - : action(act), argument_(arg), origin(o), x(0), y(0), + : action_(act), argument_(arg), origin_(o), x_(0), y_(0), button_(mouse_button::none) {} FuncRequest::FuncRequest(FuncCode act, string const & arg, Origin o) - : action(act), argument_(from_utf8(arg)), origin(o), x(0), y(0), + : action_(act), argument_(from_utf8(arg)), origin_(o), x_(0), y_(0), button_(mouse_button::none) {} FuncRequest::FuncRequest(FuncCode act, int ax, int ay, mouse_button::state but, Origin o) - : action(act), origin(o), x(ax), y(ay), button_(but) + : action_(act), origin_(o), x_(ax), y_(ay), button_(but) {} FuncRequest::FuncRequest(FuncRequest const & cmd, docstring const & arg, Origin o) - : action(cmd.action), argument_(arg), origin(o), - x(cmd.x), y(cmd.y), button_(cmd.button_) + : action_(cmd.action()), argument_(arg), origin_(o), + x_(cmd.x_), y_(cmd.y_), button_(cmd.button_) {} FuncRequest::FuncRequest(FuncRequest const & cmd, string const & arg, Origin o) - : action(cmd.action), argument_(from_utf8(arg)), origin(o), - x(cmd.x), y(cmd.y), button_(cmd.button_) + : action_(cmd.action()), argument_(from_utf8(arg)), origin_(o), + x_(cmd.x_), y_(cmd.y_), button_(cmd.button_) {} -mouse_button::state FuncRequest::button() const -{ - return button_; -} - - namespace { // Extracts arguments from str into args. Arguments are delimted by @@ -130,18 +125,18 @@ string FuncRequest::getLongArg(unsigned int i) const bool operator==(FuncRequest const & lhs, FuncRequest const & rhs) { - return lhs.action == rhs.action && lhs.argument() == rhs.argument(); + return lhs.action() == rhs.action() && lhs.argument() == rhs.argument(); } ostream & operator<<(ostream & os, FuncRequest const & cmd) { return os - << " action: " << cmd.action - << " [" << lyxaction.getActionName(cmd.action) << "] " + << " action: " << cmd.action() + << " [" << lyxaction.getActionName(cmd.action()) << "] " << " arg: '" << to_utf8(cmd.argument()) << "'" - << " x: " << cmd.x - << " y: " << cmd.y; + << " x: " << cmd.x() + << " y: " << cmd.y(); }