mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
61dde5d797
* TocBackend - addType(), types_, types(): deleted. * ControlToc - tocs(): new - selectedType(): access to selected_type_ - initialiseParams(): transfer code from QToc::update() and look for selected type. - getTypes(), getContents(): deleted * QToc: do not maintain current type. Get the info from the View. - setTocModel(): deleted * TocWidget: always pass the currently selected type to the model/controller. - setTocModel(): new slot. - updateGui(): transfer code to setTocModel(). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17455 a592a061-630c-0410-9148-cb99ea01b6c8
145 lines
2.4 KiB
C
145 lines
2.4 KiB
C
/**
|
|
* \file QToc.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 <config.h>
|
|
|
|
#include "QToc.h"
|
|
|
|
#include "TocModel.h"
|
|
#include "Qt2BC.h"
|
|
#include "qt_helpers.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "controllers/ControlToc.h"
|
|
|
|
#include <algorithm>
|
|
|
|
using std::endl;
|
|
|
|
using std::pair;
|
|
using std::vector;
|
|
using std::string;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
|
|
QToc::QToc(Dialog & parent)
|
|
: ControlToc(parent)
|
|
{
|
|
}
|
|
|
|
|
|
bool QToc::canOutline(int type) const
|
|
{
|
|
if (type < 0)
|
|
return false;
|
|
|
|
return ControlToc::canOutline(type);
|
|
}
|
|
|
|
|
|
int QToc::getTocDepth(int type)
|
|
{
|
|
if (type < 0)
|
|
return 0;
|
|
return toc_models_[type]->modelDepth();
|
|
}
|
|
|
|
|
|
QStandardItemModel * QToc::tocModel(int type)
|
|
{
|
|
if (type < 0)
|
|
return 0;
|
|
|
|
if (toc_models_.empty()) {
|
|
lyxerr[Debug::GUI] << "QToc::tocModel(): no types available " << endl;
|
|
return 0;
|
|
}
|
|
|
|
lyxerr[Debug::GUI]
|
|
<< "QToc: type_ " << type
|
|
<< " toc_models_.size() " << toc_models_.size()
|
|
<< endl;
|
|
|
|
BOOST_ASSERT(type >= 0 && type < int(toc_models_.size()));
|
|
return toc_models_[type];
|
|
}
|
|
|
|
|
|
QModelIndex const QToc::getCurrentIndex(int type) const
|
|
{
|
|
if (type < 0)
|
|
return QModelIndex();
|
|
|
|
return toc_models_[type]->modelIndex(getCurrentTocItem(type));
|
|
}
|
|
|
|
|
|
void QToc::goTo(int type, QModelIndex const & index)
|
|
{
|
|
if (type < 0 || !index.isValid()
|
|
|| index.model() != toc_models_[type]) {
|
|
lyxerr[Debug::GUI]
|
|
<< "QToc::goTo(): QModelIndex is invalid!"
|
|
<< endl;
|
|
return;
|
|
}
|
|
|
|
BOOST_ASSERT(type >= 0 && type < int(toc_models_.size()));
|
|
|
|
TocIterator const it = toc_models_[type]->tocIterator(index);
|
|
|
|
lyxerr[Debug::GUI]
|
|
<< "QToc::goTo " << lyx::to_utf8(it->str())
|
|
<< endl;
|
|
|
|
ControlToc::goTo(*it);
|
|
}
|
|
|
|
|
|
void QToc::update()
|
|
{
|
|
updateType();
|
|
updateToc();
|
|
modelReset();
|
|
}
|
|
|
|
|
|
void QToc::updateType()
|
|
{
|
|
QStringList type_list;
|
|
|
|
vector<docstring> const & type_names = typeNames();
|
|
BOOST_ASSERT(!type_names.empty());
|
|
for (size_t i = 0; i != type_names.size(); ++i)
|
|
type_list.append(toqstr(type_names[i]));
|
|
|
|
type_model_.setStringList(type_list);
|
|
}
|
|
|
|
|
|
void QToc::updateToc()
|
|
{
|
|
toc_models_.clear();
|
|
TocList::const_iterator it = tocs().begin();
|
|
TocList::const_iterator end = tocs().end();
|
|
for (; it != end; ++it)
|
|
toc_models_.push_back(new TocModel(it->second));
|
|
}
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#include "QToc_moc.cpp"
|