lyx_mirror/src/frontends/qt4/Action.cpp
Vincent van Ravesteijn 3417702346 * FuncStatus: unify naming of functions.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34160 a592a061-630c-0410-9148-cb99ea01b6c8
2010-04-16 10:51:20 +00:00

74 lines
1.3 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 "FuncRequest.h"
#include "FuncStatus.h"
#include "GuiView.h"
#include "LyX.h"
#include "qt_helpers.h"
#include "support/debug.h"
#include "support/lstrings.h"
namespace lyx {
namespace frontend {
Action::Action(GuiView * lyxView, QIcon const & icon,
QString const & text, FuncRequest const & func,
QString const & tooltip, QObject * parent)
: QAction(parent), func_(func), lyxView_(lyxView)
{
// only Qt/Mac handles that
setMenuRole(NoRole);
setIcon(icon);
setText(text);
setToolTip(tooltip);
setStatusTip(tooltip);
connect(this, SIGNAL(triggered()), this, SLOT(action()));
update();
}
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 lyx::dispatch: func_: ");
lyx::dispatch(func_);
triggered(this);
}
} // namespace frontend
} // namespace lyx
#include "moc_Action.cpp"