X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FAction.cpp;h=63a05c68eb702517f847f96d900b6e9334efce32;hb=095cf2339405a9d8c1789168a545d7f75e2cac0e;hp=bbca50deb14d2bb0a1e2ef28d0ac373951f07bb4;hpb=00e305c9d9bd8b0ff54b6c58adb6192d5934ed60;p=lyx.git diff --git a/src/frontends/qt4/Action.cpp b/src/frontends/qt4/Action.cpp index bbca50deb1..63a05c68eb 100644 --- a/src/frontends/qt4/Action.cpp +++ b/src/frontends/qt4/Action.cpp @@ -12,58 +12,38 @@ #include "Action.h" -#include "GuiView.h" -#include "qt_helpers.h" +#include "frontends/LyXView.h" -#include "lyx_cb.h" -#include "LyXFunc.h" -#include "FuncStatus.h" #include "debug.h" +#include "FuncRequest.h" +#include "FuncStatus.h" +#include "GuiView.h" +#include "LyXFunc.h" +#include "qt_helpers.h" #include "support/lstrings.h" -#include - -using std::string; -using std::endl; - namespace lyx { namespace frontend { -Action::Action(GuiView & lyxView, docstring const & text, - FuncRequest const & func, docstring const & tooltip) +Action::Action(GuiViewBase & lyxView, QString const & icon, + QString const & text, FuncRequest const & func, + QString const & tooltip) : QAction(&lyxView), func_(func), lyxView_(lyxView) { #if QT_VERSION >= 0x040200 // only Qt/Mac handles that setMenuRole(NoRole); #endif - setText(toqstr(text)); - setToolTip(toqstr(tooltip)); - setStatusTip(toqstr(tooltip)); + setIcon(QPixmap(icon)); + setText(text); + setToolTip(tooltip); + setStatusTip(tooltip); connect(this, SIGNAL(triggered()), this, SLOT(action())); update(); } -Action::Action(GuiView & lyxView, string const & icon, docstring const & text, - FuncRequest const & func, docstring const & tooltip) - : QAction(&lyxView), func_(func), lyxView_(lyxView) -{ - setIcon(QPixmap(icon.c_str())); - setText(toqstr(text)); - setToolTip(toqstr(tooltip)); - setStatusTip(toqstr(tooltip)); - connect(this, SIGNAL(triggered()), this, SLOT(action())); - update(); -} - -/* -void Action::setAction(FuncRequest const & func) -{ - func_=func; -} -*/ void Action::update() { @@ -85,8 +65,8 @@ void Action::update() void Action::action() { -// LYXERR(Debug::ACTION) << "calling LyXFunc::dispatch: func_: " << func_ << endl; - + // LYXERR(Debug::ACTION) << "calling LyXFunc::dispatch: func_: " + // "\n"; lyxView_.dispatch(func_); triggered(this); }