mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
10dd2cbdcb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16045 a592a061-630c-0410-9148-cb99ea01b6c8
71 lines
1.1 KiB
C++
71 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file QToc.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Kalle Dalheimer
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef QTOC_H
|
|
#define QTOC_H
|
|
|
|
#include "ControlToc.h"
|
|
|
|
#include <QStandardItemModel>
|
|
#include <QStringListModel>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class ControlToc;
|
|
class TocModel;
|
|
|
|
class QToc : public ControlToc
|
|
{
|
|
public:
|
|
|
|
QToc(Dialog &);
|
|
|
|
void update();
|
|
///
|
|
void updateToc();
|
|
///
|
|
void updateType();
|
|
|
|
bool canOutline();
|
|
|
|
QStandardItemModel * tocModel();
|
|
QStandardItemModel * setTocModel(int type);
|
|
|
|
QStringListModel * typeModel()
|
|
{ return &type_model_; }
|
|
|
|
///
|
|
QModelIndex const getCurrentIndex();
|
|
///
|
|
void goTo(QModelIndex const & index);
|
|
///
|
|
int getType();
|
|
///
|
|
int getTocDepth();
|
|
|
|
private:
|
|
|
|
std::vector<TocModel *> toc_models_;
|
|
|
|
QStringListModel type_model_;
|
|
|
|
int type_;
|
|
int outline_type_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // QTOC_H
|