mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
9ee8395133
* src/frontends/qt4/Action.C (Action): do not set entry to checkable by default; invoke update() to set it up. (update): only set checkable property if needed. * src/frontends/qt4/QLPopupMenu.C (populate): in the case of a Command menu item, let Action set itself up. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14811 a592a061-630c-0410-9148-cb99ea01b6c8
102 lines
1.9 KiB
C
102 lines
1.9 KiB
C
/**
|
|
* \file Action.C
|
|
* 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 "BufferView.h"
|
|
#include "lyx_cb.h"
|
|
#include "lyxfunc.h"
|
|
#include "FuncStatus.h"
|
|
#include "debug.h"
|
|
|
|
#include "frontends/LyXView.h"
|
|
|
|
#include "qt_helpers.h"
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
|
using std::string;
|
|
using std::endl;
|
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
namespace {
|
|
|
|
int const statusbar_timer_value = 3000;
|
|
|
|
} // namespace anon
|
|
|
|
Action::Action(LyXView & lyxView, string const & text,
|
|
FuncRequest const & func, string const & tooltip)
|
|
: QAction(this), func_(func), lyxView_(lyxView)
|
|
{
|
|
setText(toqstr(text));
|
|
setToolTip(toqstr(tooltip));
|
|
setStatusTip(toqstr(tooltip));
|
|
connect(this, SIGNAL(triggered()), this, SLOT(action()));
|
|
update();
|
|
}
|
|
|
|
Action::Action(LyXView & lyxView, string const & icon, string const & text,
|
|
FuncRequest const & func, string const & tooltip)
|
|
: QAction(this), 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 = lyxView_.getLyXFunc().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_.getLyXFunc().dispatch(func_);
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "Action_moc.cpp"
|