mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
ef3b045378
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@24813 a592a061-630c-0410-9148-cb99ea01b6c8
294 lines
6.5 KiB
C++
294 lines
6.5 KiB
C++
/**
|
|
* \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 "TocModel.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "FuncRequest.h"
|
|
#include "LyXFunc.h"
|
|
|
|
#include "support/debug.h"
|
|
|
|
#include <QHeaderView>
|
|
#include <QTimer>
|
|
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
TocWidget::TocWidget(TocModels & models, QWidget * parent)
|
|
: QWidget(parent), depth_(0), models_(models)
|
|
{
|
|
setupUi(this);
|
|
|
|
moveOutTB->setIcon(QIcon(":/images/promote.png"));
|
|
moveInTB->setIcon(QIcon(":/images/demote.png"));
|
|
moveUpTB->setIcon(QIcon(":/images/up.png"));
|
|
moveDownTB->setIcon(QIcon(":/images/down.png"));
|
|
updateTB->setIcon(QIcon(":/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);
|
|
}
|
|
|
|
|
|
void TocWidget::on_tocTV_activated(QModelIndex const & index)
|
|
{
|
|
goTo(index);
|
|
}
|
|
|
|
|
|
void TocWidget::on_tocTV_clicked(QModelIndex const & index)
|
|
{
|
|
goTo(index);
|
|
// FIXME: It would be nice to return the focus to the work area in this
|
|
// case. But we need access to the GuiView!
|
|
}
|
|
|
|
|
|
void TocWidget::goTo(QModelIndex const & index)
|
|
{
|
|
LYXERR(Debug::GUI, "goto " << index.row()
|
|
<< ", " << index.column());
|
|
|
|
models_.goTo(typeCO->currentIndex(), index);
|
|
}
|
|
|
|
|
|
void TocWidget::on_updateTB_clicked()
|
|
{
|
|
// The backend update can take some time so we disable
|
|
// the controls while waiting.
|
|
enableControls(false);
|
|
models_.updateBackend();
|
|
}
|
|
|
|
/* FIXME (Ugras 17/11/06):
|
|
I have implemented a getIndexDepth 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.
|
|
*/
|
|
int TocWidget::getIndexDepth(QModelIndex const & index, int depth)
|
|
{
|
|
++depth;
|
|
return (index.parent() == QModelIndex())
|
|
? depth : getIndexDepth(index.parent(),depth);
|
|
}
|
|
|
|
|
|
void TocWidget::on_depthSL_valueChanged(int depth)
|
|
{
|
|
if (depth == depth_)
|
|
return;
|
|
setTreeDepth(depth);
|
|
}
|
|
|
|
|
|
void TocWidget::setTreeDepth(int depth)
|
|
{
|
|
depth_ = depth;
|
|
|
|
// 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];
|
|
if (getIndexDepth(index) < depth_)
|
|
tocTV->expand(index);
|
|
else
|
|
tocTV->collapse(index);
|
|
}
|
|
}
|
|
|
|
void TocWidget::on_typeCO_currentIndexChanged(int value)
|
|
{
|
|
setTocModel(value);
|
|
}
|
|
|
|
|
|
void TocWidget::on_moveUpTB_clicked()
|
|
{
|
|
enableControls(false);
|
|
QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
|
|
if (!list.isEmpty()) {
|
|
enableControls(false);
|
|
goTo(list[0]);
|
|
dispatch(FuncRequest(LFUN_OUTLINE_UP));
|
|
enableControls(true);
|
|
}
|
|
}
|
|
|
|
|
|
void TocWidget::on_moveDownTB_clicked()
|
|
{
|
|
enableControls(false);
|
|
QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
|
|
if (!list.isEmpty()) {
|
|
enableControls(false);
|
|
goTo(list[0]);
|
|
dispatch(FuncRequest(LFUN_OUTLINE_DOWN));
|
|
enableControls(true);
|
|
}
|
|
}
|
|
|
|
|
|
void TocWidget::on_moveInTB_clicked()
|
|
{
|
|
enableControls(false);
|
|
QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
|
|
if (!list.isEmpty()) {
|
|
enableControls(false);
|
|
goTo(list[0]);
|
|
dispatch(FuncRequest(LFUN_OUTLINE_IN));
|
|
enableControls(true);
|
|
}
|
|
}
|
|
|
|
|
|
void TocWidget::on_moveOutTB_clicked()
|
|
{
|
|
QModelIndexList const & list = tocTV->selectionModel()->selectedIndexes();
|
|
if (!list.isEmpty()) {
|
|
enableControls(false);
|
|
goTo(list[0]);
|
|
dispatch(FuncRequest(LFUN_OUTLINE_OUT));
|
|
enableControls(true);
|
|
}
|
|
}
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
|
|
void TocWidget::enableControls(bool enable)
|
|
{
|
|
updateTB->setEnabled(enable);
|
|
|
|
if (!models_.canOutline(typeCO->currentIndex()))
|
|
enable = false;
|
|
|
|
moveUpTB->setEnabled(enable);
|
|
moveDownTB->setEnabled(enable);
|
|
moveInTB->setEnabled(enable);
|
|
moveOutTB->setEnabled(enable);
|
|
|
|
depthSL->setEnabled(enable);
|
|
}
|
|
|
|
|
|
void TocWidget::updateView()
|
|
{
|
|
LYXERR(Debug::GUI, "In TocWidget::updateView()");
|
|
setTreeDepth(depth_);
|
|
select(models_.currentIndex(typeCO->currentIndex()));
|
|
}
|
|
|
|
|
|
void TocWidget::init(QString const & str)
|
|
{
|
|
QStringList const & type_names = models_.typeNames();
|
|
if (type_names.isEmpty()) {
|
|
enableControls(false);
|
|
typeCO->clear();
|
|
tocTV->setModel(new QStandardItemModel);
|
|
tocTV->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
return;
|
|
}
|
|
|
|
int selected_type = models_.decodeType(str);
|
|
|
|
QString const current_text = typeCO->currentText();
|
|
typeCO->blockSignals(true);
|
|
typeCO->clear();
|
|
for (int i = 0; i != type_names.size(); ++i)
|
|
typeCO->addItem(type_names[i]);
|
|
if (!str.isEmpty())
|
|
typeCO->setCurrentIndex(selected_type);
|
|
else {
|
|
int const new_index = typeCO->findText(current_text);
|
|
if (new_index != -1)
|
|
typeCO->setCurrentIndex(new_index);
|
|
else
|
|
typeCO->setCurrentIndex(selected_type);
|
|
}
|
|
|
|
typeCO->blockSignals(false);
|
|
|
|
setTocModel(typeCO->currentIndex());
|
|
}
|
|
|
|
|
|
void TocWidget::setTocModel(size_t type)
|
|
{
|
|
bool controls_enabled = false;
|
|
QStandardItemModel * toc_model = models_.model(type);
|
|
if (toc_model) {
|
|
controls_enabled = toc_model->rowCount() > 0;
|
|
tocTV->setModel(toc_model);
|
|
tocTV->setEditTriggers(QAbstractItemView::NoEditTriggers);
|
|
LYXERR(Debug::GUI, "tocModel()->rowCount "
|
|
<< toc_model->rowCount()
|
|
<< "\nform_->tocModel()->columnCount "
|
|
<< toc_model->columnCount());
|
|
}
|
|
|
|
enableControls(controls_enabled);
|
|
|
|
if (controls_enabled) {
|
|
depthSL->setMaximum(models_.depth(type));
|
|
depthSL->setValue(depth_);
|
|
}
|
|
|
|
// setTocModel produce QTreeView reset and setting depth again
|
|
// is needed. That must be done after all Qt updates are processed.
|
|
QTimer::singleShot(0, this, SLOT(updateView()));
|
|
}
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "TocWidget_moc.cpp"
|