lyx_mirror/src/frontends/qt4/QLToolbar.C

319 lines
6.9 KiB
C++
Raw Normal View History

/**
* \file qt4/QLToolbar.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bj<EFBFBD>nnes
* \author John Levon
* \author Jean-Marc Lasgouttes
* \author Angus Leeming
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "buffer.h"
#include "bufferparams.h"
#include "debug.h"
#include "funcrequest.h"
#include "FuncStatus.h"
#include "gettext.h"
#include "lyxfunc.h"
#include "GuiView.h"
#include "QLToolbar.h"
#include "LyXAction.h"
#include "Action.h"
#include "qt_helpers.h"
#include "InsertTableWidget.h"
#include "support/filetools.h"
#include "support/lstrings.h"
#include "controllers/ControlMath.h"
#include <QComboBox>
#include <QToolBar>
#include <QToolButton>
#include <QAction>
#include <QPixmap>
using std::endl;
using std::string;
namespace lyx {
using support::libFileSearch;
using support::subst;
namespace frontend {
namespace {
LyXTextClass const & getTextClass(LyXView const & lv)
{
return lv.buffer()->params().getLyXTextClass();
}
} // namespace anon
QLayoutBox::QLayoutBox(QToolBar * toolbar, GuiView & owner)
: owner_(owner)
{
combo_ = new QComboBox;
combo_->setSizeAdjustPolicy(QComboBox::AdjustToContents);
combo_->setFocusPolicy(Qt::ClickFocus);
combo_->setMinimumWidth(combo_->sizeHint().width());
combo_->setMaxVisibleItems(100);
QObject::connect(combo_, SIGNAL(activated(const QString &)),
this, SLOT(selected(const QString &)));
toolbar->addWidget(combo_);
}
void QLayoutBox::set(string const & layout)
{
LyXTextClass const & tc = getTextClass(owner_);
QString const & name = qt_(tc[layout]->name());
int i = 0;
for (; i < combo_->count(); ++i) {
if (name == combo_->itemText(i))
break;
}
if (i == combo_->count()) {
lyxerr << "Trying to select non existent layout type "
<< fromqstr(name) << endl;
return;
}
combo_->setCurrentIndex(i);
}
void QLayoutBox::update()
{
LyXTextClass const & tc = getTextClass(owner_);
combo_->setUpdatesEnabled(false);
combo_->clear();
LyXTextClass::const_iterator it = tc.begin();
LyXTextClass::const_iterator const end = tc.end();
for (; it != end; ++it) {
// ignore obsolete entries
if ((*it)->obsoleted_by().empty())
combo_->addItem(qt_((*it)->name()));
}
// needed to recalculate size hint
combo_->hide();
combo_->setMinimumWidth(combo_->sizeHint().width());
combo_->show();
combo_->setUpdatesEnabled(true);
combo_->update();
}
void QLayoutBox::clear()
{
combo_->clear();
}
void QLayoutBox::open()
{
combo_->showPopup();
}
void QLayoutBox::setEnabled(bool enable)
{
// Workaround for Qt bug where setEnabled(true) closes
// the popup
if (enable != combo_->isEnabled())
combo_->setEnabled(enable);
}
void QLayoutBox::selected(const QString & str)
{
string const sel = fromqstr(str);
owner_.setFocus();
layoutSelected(owner_, sel);
}
QLToolbar::QLToolbar(ToolbarInfo const & tbb, GuiView & owner)
: QToolBar(qt_(tbb.gui_name), &owner), owner_(owner)
{
// give visual separation between adjacent toolbars
addSeparator();
// TODO: save toolbar position
setMovable(true);
ToolbarInfo::item_iterator it = tbb.items.begin();
ToolbarInfo::item_iterator end = tbb.items.end();
for (; it != end; ++it)
add(*it);
}
void QLToolbar::add(ToolbarItem const & item)
{
switch (item.type_) {
case ToolbarItem::SEPARATOR:
addSeparator();
break;
case ToolbarItem::LAYOUTS:
layout_.reset(new QLayoutBox(this, owner_));
break;
case ToolbarItem::MINIBUFFER:
owner_.addCommandBuffer(this);
/// \todo find a Qt4 equivalent to setHorizontalStretchable(true);
//setHorizontalStretchable(true);
break;
case ToolbarItem::TABLEINSERT: {
QToolButton * tb = new QToolButton;
tb->setCheckable(true);
tb->setIcon(QPixmap(toqstr(getIcon(FuncRequest(LFUN_TABULAR_INSERT)))));
tb->setToolTip(toqstr(item.label_));
tb->setFocusPolicy(Qt::NoFocus);
InsertTableWidget * iv = new InsertTableWidget(owner_, tb);
connect(tb, SIGNAL(clicked(bool)), iv, SLOT(show(bool)));
connect(iv, SIGNAL(visible(bool)), tb, SLOT(setChecked(bool)));
connect(this, SIGNAL(updated()), iv, SLOT(updateParent()));
addWidget(tb);
break;
}
default: {
if (lyx::getStatus(item.func_).unknown())
break;
Action * action = new Action(owner_,
getIcon(item.func_),
item.label_,
item.func_,
item.label_);
addAction(action);
ActionVector.push_back(action);
break;
}
}
}
void QLToolbar::hide(bool)
{
QToolBar::hide();
}
void QLToolbar::show(bool)
{
QToolBar::show();
}
void QLToolbar::saveInfo(ToolbarSection::ToolbarInfo & info)
{
// if info.state == auto *do not* set on/off
if (info.state != ToolbarSection::ToolbarInfo::AUTO) {
if (QLToolbar::isVisible())
info.state = ToolbarSection::ToolbarInfo::ON;
else
info.state = ToolbarSection::ToolbarInfo::OFF;
}
//
// no need to save it here.
Qt::ToolBarArea loc = owner_.toolBarArea(this);
if (loc == Qt::TopToolBarArea)
info.location = ToolbarSection::ToolbarInfo::TOP;
else if (loc == Qt::BottomToolBarArea)
info.location = ToolbarSection::ToolbarInfo::BOTTOM;
else if (loc == Qt::RightToolBarArea)
info.location = ToolbarSection::ToolbarInfo::RIGHT;
else if (loc == Qt::LeftToolBarArea)
info.location = ToolbarSection::ToolbarInfo::LEFT;
else
info.location = ToolbarSection::ToolbarInfo::NOTSET;
// save toolbar position. They are not used to restore toolbar position
// now because move(x,y) does not work for toolbar.
info.posx = pos().x();
info.posy = pos().y();
}
void QLToolbar::update()
{
// This is a speed bottleneck because this is called on every keypress
// and update calls getStatus, which copies the cursor at least two times
for (size_t i = 0; i < ActionVector.size(); ++i)
ActionVector[i]->update();
// emit signal
updated();
}
string const getIcon(FuncRequest const & f)
{
using frontend::find_xpm;
string fullname;
switch (f.action) {
case LFUN_MATH_INSERT:
if (!f.argument().empty())
fullname = find_xpm(to_utf8(f.argument()).substr(1));
break;
case LFUN_MATH_DELIM:
case LFUN_MATH_BIGDELIM:
fullname = find_xpm(to_utf8(f.argument()));
break;
default:
string const name = lyxaction.getActionName(f.action);
string xpm_name(name);
if (!f.argument().empty())
xpm_name = subst(name + ' ' + to_utf8(f.argument()), ' ', '_');
fullname = libFileSearch("images", xpm_name, "xpm").absFilename();
if (fullname.empty()) {
// try without the argument
fullname = libFileSearch("images", name, "xpm").absFilename();
}
}
if (!fullname.empty()) {
LYXERR(Debug::GUI) << "Full icon name is `"
<< fullname << '\'' << endl;
return fullname;
}
LYXERR(Debug::GUI) << "Cannot find icon for command \""
<< lyxaction.getActionName(f.action)
<< '(' << to_utf8(f.argument()) << ")\"" << endl;
return libFileSearch("images", "unknown", "xpm").absFilename();
}
} // namespace frontend
} // namespace lyx
#include "QLToolbar_moc.cpp"