lyx_mirror/src/frontends/qt4/Action.cpp
Bo Peng e36fba33ab Last (?) batch of renames:
src/frontends/Alert.h src/frontends/alert.h
src/frontends/Alert.cpp src/frontends/alert.cpp
src/frontends/Alert_pimpl.cpp src/frontends/alert_pimpl.cpp
src/frontends/qt4/Alert_pimpl.cpp src/frontends/qt4/alert_pimpl.cpp
src/frontends/controllers/ButtonPolicies.cpp src/frontends/controllers/ButtonPolicy.cpp
src/frontends/controllers/ButtonPolicies.h src/frontends/controllers/ButtonPolicy.h
src/insets/InsetEnv.cpp src/insets/InsetEnvironment.cpp
src/insets/InsetEnv.h src/insets/InsetEnvironment.h
src/mathed/MathMacroTable.h src/mathed/MacroTable.h
src/mathed/MathMacroTable.cpp src/mathed/MacroTable.cpp
src/lyx_cb.h src/callback.h
src/lyx_cb.cpp src/callback.cpp
src/UpdateFlags.h src/update_flags.h


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18076 a592a061-630c-0410-9148-cb99ea01b6c8
2007-04-28 20:44:46 +00:00

98 lines
1.9 KiB
C++

/**
* \file Action.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "Action.h"
#include "GuiView.h"
#include "qt_helpers.h"
#include "callback.h"
#include "LyXFunc.h"
#include "FuncStatus.h"
#include "debug.h"
#include "support/lstrings.h"
#include <boost/bind.hpp>
using std::string;
using std::endl;
namespace lyx {
namespace frontend {
Action::Action(GuiView & lyxView, docstring const & text,
FuncRequest const & func, docstring 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));
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()
{
FuncStatus const status = getStatus(func_);
if (status.onoff(true)) {
setCheckable(true);
setChecked(true);
} else if (status.onoff(false)) {
setCheckable(true);
setChecked(false);
} else {
setCheckable(false);
}
setEnabled(status.enabled());
}
void Action::action()
{
// LYXERR(Debug::ACTION) << "calling LyXFunc::dispatch: func_: " << func_ << endl;
lyxView_.dispatch(func_);
triggered(this);
}
} // namespace frontend
} // namespace lyx
#include "Action_moc.cpp"