X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FAction.cpp;h=ca229fbbe5dc0eb48222c2b4a7b592c9de88eb8f;hb=425d092204118ea6c24c28e85fdf03fcf2bb51a4;hp=26d9bd6ec301e7b9228a10f8327195ff473a8428;hpb=a1cec91afaca91968b46e695533c10ad2a3f73d3;p=lyx.git diff --git a/src/frontends/qt4/Action.cpp b/src/frontends/qt4/Action.cpp index 26d9bd6ec3..ca229fbbe5 100644 --- a/src/frontends/qt4/Action.cpp +++ b/src/frontends/qt4/Action.cpp @@ -12,58 +12,34 @@ #include "Action.h" +#include "FuncRequest.h" +#include "FuncStatus.h" #include "GuiView.h" -#include "qt_helpers.h" - -#include "callback.h" #include "LyXFunc.h" -#include "FuncStatus.h" -#include "debug.h" +#include "qt_helpers.h" +#include "support/debug.h" #include "support/lstrings.h" -#include - -using std::string; -using std::endl; - namespace lyx { namespace frontend { -Action::Action(GuiViewBase & lyxView, docstring const & text, - FuncRequest const & func, docstring const & tooltip) - : QAction(&lyxView), func_(func), lyxView_(lyxView) +Action::Action(GuiView * lyxView, QIcon const & icon, + QString const & text, FuncRequest const & func, + QString const & tooltip, QObject * parent) + : QAction(parent), 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(icon); + setText(text); + setToolTip(tooltip); + setStatusTip(tooltip); connect(this, SIGNAL(triggered()), this, SLOT(action())); update(); } -Action::Action(GuiViewBase & 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,13 +61,13 @@ void Action::update() void Action::action() { -// LYXERR(Debug::ACTION) << "calling LyXFunc::dispatch: func_: " << func_ << endl; + //LYXERR(Debug::ACTION, "calling LyXFunc::dispatch: func_: "); - lyxView_.dispatch(func_); + lyx::dispatch(func_); triggered(this); } } // namespace frontend } // namespace lyx -#include "Action_moc.cpp" +#include "moc_Action.cpp"