mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
8c73b3d2ce
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22953 a592a061-630c-0410-9148-cb99ea01b6c8
118 lines
2.2 KiB
C++
118 lines
2.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiToc.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 Angus Leeming
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUITOC_H
|
|
#define GUITOC_H
|
|
|
|
#include "DockView.h"
|
|
|
|
#include "insets/InsetCommandParams.h"
|
|
|
|
#include "TocBackend.h"
|
|
|
|
#include <QObject>
|
|
#include <QStandardItemModel>
|
|
#include <QStringListModel>
|
|
|
|
#include <vector>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class TocModel;
|
|
class TocWidget;
|
|
|
|
class GuiToc : public DockView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
///
|
|
GuiToc(
|
|
GuiView & parent, ///< the main window where to dock.
|
|
Qt::DockWidgetArea area = Qt::LeftDockWidgetArea, ///< Position of the dock (and also drawer)
|
|
Qt::WindowFlags flags = 0);
|
|
|
|
~GuiToc();
|
|
|
|
///
|
|
bool initialiseParams(std::string const & data);
|
|
///
|
|
void updateView();
|
|
/// Test if outlining operation is possible
|
|
bool canOutline(int type) const;
|
|
|
|
QStandardItemModel * tocModel(int type);
|
|
///
|
|
QModelIndex currentIndex(int type) const;
|
|
///
|
|
void goTo(int type, QModelIndex const & index);
|
|
///
|
|
int getType();
|
|
///
|
|
int getTocDepth(int type);
|
|
|
|
Q_SIGNALS:
|
|
/// Signal that the internal toc_models_ has been reset.
|
|
void modelReset();
|
|
|
|
private:
|
|
///
|
|
TocWidget * widget_;
|
|
///
|
|
std::vector<TocModel *> toc_models_;
|
|
///
|
|
void clearTocModels();
|
|
|
|
public:
|
|
///
|
|
TocList const & tocs() const;
|
|
|
|
/// Return the list of types available
|
|
std::vector<docstring> const & typeNames() const
|
|
{ return type_names_; }
|
|
|
|
/// Return the first TocItem before the cursor
|
|
TocIterator currentTocItem(int type) const;
|
|
|
|
/// Apply the selected outlining operation
|
|
void outlineUp();
|
|
///
|
|
void outlineDown();
|
|
///
|
|
void outlineIn();
|
|
///
|
|
void outlineOut();
|
|
///
|
|
void updateBackend();
|
|
|
|
std::vector<std::string> types_;
|
|
std::vector<docstring> type_names_;
|
|
|
|
/// Return the guiname from a given cmdName of the TOC param
|
|
docstring guiName(std::string const & type) const;
|
|
|
|
/// clean-up on hide.
|
|
void clearParams() {}
|
|
///
|
|
void dispatchParams();
|
|
///
|
|
bool isBufferDependent() const { return true; }
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUITOC_H
|