/** * \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); updateGui(); 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_closePB_clicked() { accept(); } void QTocDialog::on_updatePB_clicked() { 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() { enableButtons(false); QModelIndex index = tocTV->selectionModel()->selectedIndexes()[0]; form_->goTo(index); form_->outlineUp(); update(); } void QTocDialog::on_moveDownPB_clicked() { enableButtons(false); QModelIndex index = tocTV->selectionModel()->selectedIndexes()[0]; form_->goTo(index); form_->outlineDown(); update(); } void QTocDialog::on_moveInPB_clicked() { enableButtons(false); QModelIndex index = tocTV->selectionModel()->selectedIndexes()[0]; form_->goTo(index); form_->outlineIn(); update(); } void QTocDialog::on_moveOutPB_clicked() { enableButtons(false); QModelIndex index = tocTV->selectionModel()->selectedIndexes()[0]; form_->goTo(index); form_->outlineOut(); update(); } void QTocDialog::select(QModelIndex const & index) { // tocTV->setModel(form_->tocModel()); if (!index.isValid()) { lyxerr[Debug::GUI] << "QTocDialog::select(): QModelIndex is invalid!" << endl; return; } 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() { form_->update(); updateGui(); } void QTocDialog::updateGui() { 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 &))); select(form_->getCurrentIndex()); 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() { update(); QDialog::show(); } bool QTocDialog::isVisible() const { return QDialog::isVisible(); } } // namespace frontend } // namespace lyx #include "QTocDialog_moc.cpp"