mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
095cf23394
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20706 a592a061-630c-0410-9148-cb99ea01b6c8
78 lines
1.4 KiB
C++
78 lines
1.4 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 "frontends/LyXView.h"
|
|
|
|
#include "debug.h"
|
|
#include "FuncRequest.h"
|
|
#include "FuncStatus.h"
|
|
#include "GuiView.h"
|
|
#include "LyXFunc.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
|
|
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
|
|
setIcon(QPixmap(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 LyXFunc::dispatch: func_: "
|
|
// "\n";
|
|
lyxView_.dispatch(func_);
|
|
triggered(this);
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "Action_moc.cpp"
|