/** * \file QTocDialog.C * 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 #include "QTocDialog.h" #include "QToc.h" #include "Qt2BC.h" #include "qt_helpers.h" #include "controllers/ControlToc.h" #include "debug.h" #include #include #include #include #include #include #include using std::endl; using std::pair; using std::stack; using std::vector; using std::string; namespace lyx { namespace frontend { QTocDialog::QTocDialog(Dialog & dialog, QToc * form) : Dialog::View(dialog, "Toc"), form_(form), depth_(2) { setupUi(this); update(); connect(tocTV->selectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), this, SLOT(selectionChanged(const QModelIndex &, const QModelIndex &))); } QTocDialog::~QTocDialog() { accept(); } void QTocDialog::selectionChanged(const QModelIndex & current, const QModelIndex & previous) { lyxerr[Debug::GUI] << "selectionChanged index " << current.row() << ", " << current.column() << endl; form_->goTo(current); } void QTocDialog::on_tocTV_clicked(const QModelIndex & index ) { lyxerr[Debug::GUI] << "on_tocTV_clicked index " << index.row() << ", " << index.column() << endl; form_->goTo(index); } void QTocDialog::on_closePB_clicked() { accept(); } void QTocDialog::on_updatePB_clicked() { form_->update(); update(); } void QTocDialog::on_depthSL_valueChanged(int depth) { if (depth == depth_) return; depth_ = depth; /* while ( tocTv->setExpanded(); if (iter->depth > depth_) tocTV->collapseItem(topLevelItem); else if (iter->depth <= depth_) tocTV->expandItem(topLevelItem); */ } void QTocDialog::on_typeCO_activated(int value) { form_->setTocModel(value); enableButtons(); } void QTocDialog::on_moveUpPB_clicked() { move(toc::UP); } void QTocDialog::on_moveDownPB_clicked() { move(toc::DOWN); } void QTocDialog::on_moveInPB_clicked() { move(toc::IN); } void QTocDialog::on_moveOutPB_clicked() { move(toc::OUT); } void QTocDialog::move(toc::OutlineOp const operation) { enableButtons(false); QModelIndex index = tocTV->selectionModel()->selectedIndexes()[0]; form_->move(operation, index); select(index); enableButtons(); } void QTocDialog::select(QModelIndex const & index) { tocTV->setModel(form_->tocModel()); if (index.isValid()) { tocTV->scrollTo(index); tocTV->selectionModel()->select(index, QItemSelectionModel::Select); } } void QTocDialog::enableButtons(bool enable) { updatePB->setEnabled(enable); if (!form_->canOutline()) enable = false; moveUpPB->setEnabled(enable); moveDownPB->setEnabled(enable); moveInPB->setEnabled(enable); moveOutPB->setEnabled(enable); } void QTocDialog::update() { typeCO->setModel(form_->typeModel()); tocTV->setModel(form_->tocModel()); 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(true); enableButtons(); connect(tocTV->selectionModel(), SIGNAL(currentChanged(const QModelIndex &, const QModelIndex &)), this, SLOT(selectionChanged(const QModelIndex &, const QModelIndex &))); lyxerr[Debug::GUI] << "form_->tocModel()->rowCount " << form_->tocModel()->rowCount() << "\nform_->tocModel()->columnCount " << form_->tocModel()->columnCount() << endl; // setTitle(form_->guiname()) } void QTocDialog::apply() { // Nothing to do here... for now. // Ideas welcome... (Abdel, 17042006) } void QTocDialog::hide() { accept(); } void QTocDialog::show() { form_->update(); update(); QDialog::show(); } bool QTocDialog::isVisible() const { return QDialog::isVisible(); } } // namespace frontend } // namespace lyx