lyx_mirror/src/frontends/qt4/TocWidget.cpp

382 lines
8.5 KiB
C++
Raw Normal View History

/**
* \file TocWidget.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author John Levon
* \author Abdelrazak Younes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "TocWidget.h"
#include "GuiApplication.h"
#include "GuiView.h"
#include "qt_helpers.h"
#include "TocModel.h"
#include "Buffer.h"
#include "CutAndPaste.h"
#include "FuncRequest.h"
#include "LyXFunc.h"
#include "Menus.h"
#include "TocBackend.h"
#include "insets/InsetCommand.h"
#include "insets/InsetRef.h"
#include "support/debug.h"
#include "support/lassert.h"
#include <QHeaderView>
#include <QMenu>
#include <QTimer>
#include <vector>
using namespace std;
namespace lyx {
namespace frontend {
TocWidget::TocWidget(GuiView & gui_view, QWidget * parent)
: QWidget(parent), depth_(0), persistent_(false), gui_view_(gui_view)
{
setupUi(this);
moveOutTB->setIcon(QIcon(getPixmap("images/", "promote", "png")));
moveInTB->setIcon(QIcon(getPixmap("images/", "demote", "png")));
moveUpTB->setIcon(QIcon(getPixmap("images/", "up", "png")));
moveDownTB->setIcon(QIcon(getPixmap("images/", "down", "png")));
updateTB->setIcon(QIcon(getPixmap("images/", "reload", "png")));
// avoid flickering
tocTV->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
tocTV->showColumn(0);
// hide the pointless QHeader for now
// in the future, new columns may appear
// like labels, bookmarks, etc...
// tocTV->header()->hide();
tocTV->header()->setVisible(false);
// Only one item selected at a time.
tocTV->setSelectionMode(QAbstractItemView::SingleSelection);
// The toc types combo won't change its model.
typeCO->setModel(gui_view_.tocModels().nameModel());
// Make sure the buttons are disabled when first shown without a loaded
// Buffer.
enableControls(false);
// make us responsible for the context menu of the tabbar
setContextMenuPolicy(Qt::CustomContextMenu);
connect(this, SIGNAL(customContextMenuRequested(const QPoint &)),
this, SLOT(showContextMenu(const QPoint &)));
connect(tocTV, SIGNAL(customContextMenuRequested(const QPoint &)),
this, SLOT(showContextMenu(const QPoint &)));
init(QString());
}
void TocWidget::showContextMenu(const QPoint & pos)
{
std::string name = "context-toc-" + fromqstr(current_type_);
QMenu * menu = guiApp->menus().menu(toqstr(name), gui_view_);
if (!menu)
return;
menu->exec(mapToGlobal(pos));
}
void TocWidget::doDispatch(Cursor & cur, FuncRequest const & cmd)
{
}
void TocWidget::on_tocTV_activated(QModelIndex const & index)
{
goTo(index);
}
void TocWidget::on_tocTV_pressed(QModelIndex const & index)
{
Qt::MouseButtons const button = QApplication::mouseButtons();
if (button & Qt::LeftButton) {
goTo(index);
gui_view_.setFocus();
}
}
void TocWidget::goTo(QModelIndex const & index)
{
LYXERR(Debug::GUI, "goto " << index.row()
<< ", " << index.column());
gui_view_.tocModels().goTo(current_type_, index);
}
void TocWidget::on_updateTB_clicked()
{
// The backend update can take some time so we disable
// the controls while waiting.
enableControls(false);
gui_view_.tocModels().updateBackend();
}
void TocWidget::on_sortCB_stateChanged(int state)
{
gui_view_.tocModels().sort(current_type_, state == Qt::Checked);
updateView();
}
void TocWidget::on_persistentCB_stateChanged(int state)
{
persistent_ = state == Qt::Checked;
}
/* FIXME (Ugras 17/11/06):
I have implemented a indexDepth function to get the model indices. In my
opinion, somebody should derive a new qvariant class for tocModelItem
which saves the string data and depth information. That will save the
depth calculation. */
static int indexDepth(QModelIndex const & index, int depth = -1)
{
++depth;
return index.parent() == QModelIndex()
? depth : indexDepth(index.parent(), depth);
}
void TocWidget::on_depthSL_valueChanged(int depth)
{
if (depth == depth_)
return;
setTreeDepth(depth);
gui_view_.setFocus();
}
void TocWidget::setTreeDepth(int depth)
{
depth_ = depth;
if (!tocTV->model())
return;
#if QT_VERSION >= 0x040300
// this should be faster than our own code below
if (depth == 0)
tocTV->collapseAll();
else
tocTV->expandToDepth(depth - 1);
#else
// expanding and then collapsing is probably better,
// but my qt 4.1.2 doesn't have expandAll()..
//tocTV->expandAll();
QModelIndexList indices = tocTV->model()->match(
tocTV->model()->index(0, 0),
Qt::DisplayRole, "*", -1,
Qt::MatchFlags(Qt::MatchWildcard|Qt::MatchRecursive));
int size = indices.size();
for (int i = 0; i < size; i++) {
QModelIndex index = indices[i];
tocTV->setExpanded(index, indexDepth(index) < depth_);
}
#endif
}
void TocWidget::on_typeCO_currentIndexChanged(int index)
{
current_type_ = typeCO->itemData(index).toString();
updateView();
gui_view_.setFocus();
}
void TocWidget::outline(int func_code)
{
enableControls(false);
QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
if (list.isEmpty())
return;
enableControls(false);
goTo(list[0]);
dispatch(FuncRequest(static_cast<FuncCode>(func_code)));
enableControls(true);
gui_view_.setFocus();
}
void TocWidget::on_moveUpTB_clicked()
{
outline(LFUN_OUTLINE_UP);
}
void TocWidget::on_moveDownTB_clicked()
{
outline(LFUN_OUTLINE_DOWN);
}
void TocWidget::on_moveInTB_clicked()
{
outline(LFUN_OUTLINE_IN);
}
void TocWidget::on_moveOutTB_clicked()
{
outline(LFUN_OUTLINE_OUT);
}
void TocWidget::select(QModelIndex const & index)
{
if (!index.isValid()) {
LYXERR(Debug::GUI, "TocWidget::select(): QModelIndex is invalid!");
return;
}
tocTV->scrollTo(index);
tocTV->clearSelection();
tocTV->setCurrentIndex(index);
}
/// Test if outlining operation is possible
static bool canOutline(QString const & type)
{
return type == "tableofcontents";
}
void TocWidget::enableControls(bool enable)
{
updateTB->setEnabled(enable);
if (!canOutline(current_type_))
enable = false;
moveUpTB->setEnabled(enable);
moveDownTB->setEnabled(enable);
moveInTB->setEnabled(enable);
moveOutTB->setEnabled(enable);
if (!enable) {
depthSL->setMaximum(0);
depthSL->setValue(0);
}
}
/// Test if synchronized navigation is possible
static bool canNavigate(QString const & type)
{
// It is not possible to have synchronous navigation in a correctl
// and efficient way with the label type because Toc::item() do a linear
// seatch. Even if fixed, it might even not be desirable to do so if we
// want to support drag&drop of labels and references.
return type != "label" && type != "change";
}
void TocWidget::updateView()
{
if (!gui_view_.view()) {
enableControls(false);
typeCO->setEnabled(false);
tocTV->setModel(0);
tocTV->setEnabled(false);
return;
}
typeCO->setEnabled(true);
tocTV->setEnabled(false);
tocTV->setUpdatesEnabled(false);
QAbstractItemModel * toc_model = gui_view_.tocModels().model(current_type_);
if (tocTV->model() != toc_model) {
tocTV->setModel(toc_model);
tocTV->setEditTriggers(QAbstractItemView::NoEditTriggers);
if (persistent_)
setTreeDepth(depth_);
}
sortCB->blockSignals(true);
sortCB->setChecked(gui_view_.tocModels().isSorted(current_type_));
sortCB->blockSignals(false);
persistentCB->setChecked(persistent_);
bool controls_enabled = toc_model && toc_model->rowCount() > 0
&& !gui_view_.buffer()->isReadonly();
enableControls(controls_enabled);
depthSL->setMaximum(gui_view_.tocModels().depth(current_type_));
depthSL->setValue(depth_);
if (!persistent_)
setTreeDepth(depth_);
if (canNavigate(current_type_))
select(gui_view_.tocModels().currentIndex(current_type_));
tocTV->setEnabled(true);
tocTV->setUpdatesEnabled(true);
}
static QString decodeType(QString const & str)
{
QString type = str;
if (type.contains("tableofcontents")) {
type = "tableofcontents";
} else if (type.contains("floatlist")) {
if (type.contains("\"figure"))
type = "figure";
else if (type.contains("\"table"))
type = "table";
else if (type.contains("\"algorithm"))
type = "algorithm";
}
return type;
}
void TocWidget::init(QString const & str)
{
int new_index;
if (str.isEmpty())
new_index = typeCO->findData(current_type_);
else
new_index = typeCO->findData(decodeType(str));
// If everything else fails, settle on the table of contents which is
// guaranted to exist.
if (new_index == -1) {
current_type_ = "tableofcontents";
new_index = typeCO->findData(current_type_);
} else {
current_type_ = typeCO->itemData(new_index).toString();
}
typeCO->blockSignals(true);
typeCO->setCurrentIndex(new_index);
typeCO->blockSignals(false);
}
} // namespace frontend
} // namespace lyx
#include "moc_TocWidget.cpp"