lyx_mirror/src/frontends/qt4/QLAction.C

92 lines
1.8 KiB
C++
Raw Normal View History

/**
* \file QLAction.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 "BufferView.h"
#include "lyx_cb.h"
#include "lyxfunc.h"
#include "FuncStatus.h"
#include "debug.h"
#include <boost/bind.hpp>
#include "LyXView.h"
#include "qt_helpers.h"
#include "QLAction.h"
#include "support/lstrings.h"
using std::string;
using std::endl;
namespace lyx {
namespace frontend {
namespace {
int const statusbar_timer_value = 3000;
} // namespace anon
QLAction::QLAction(LyXView & lyxView, string const & text,
FuncRequest const & func, string const & tooltip)
: QAction(this), lyxView_(lyxView), func_(func)
{
setText(tr(toqstr(text)));
setToolTip(tr(toqstr(tooltip)));
setStatusTip(toqstr(tooltip));
connect(this, SIGNAL(triggered()), this, SLOT(action()));
this->setCheckable(true);
}
QLAction::QLAction(LyXView & lyxView, string const & icon, string const & text,
FuncRequest const & func, string const & tooltip)
: QAction(this), lyxView_(lyxView), func_(func)
{
setIcon(QPixmap(icon.c_str()));
setText(tr(toqstr(text)));
setToolTip(tr(toqstr(tooltip)));
setStatusTip(toqstr(tooltip));
connect(this, SIGNAL(triggered()), this, SLOT(action()));
this->setCheckable(true);
}
/*
void QLAction::setAction(FuncRequest const & func)
{
func_=func;
}
*/
void QLAction::update()
{
FuncStatus const status = lyxView_.getLyXFunc().getStatus(func_);
this->setChecked(status.onoff(true));
this->setEnabled(status.enabled());
}
void QLAction::action()
{
// lyxerr[Debug::ACTION] << "calling LyXFunc::dispatch: func_: " << func_ << endl;
lyxView_.getLyXFunc().dispatch(func_);
}
} // namespace frontend
} // namespace lyx
#include "QLAction_moc.cpp"