mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
479e9054db
- new pimpled TocBackend member and associated accessors. * toc.[Ch]: delete all toc related methods except outline. * TocBackend: - goTo(): deleted, this gets rid of the LyXView dependency - made all accessors const. * ControlToc: - rework the controller to work exclusively with TocBackend. - goTo(): now call LyXView::dispatch() directly all other files: update with the TocBackend or ControlToc API changes. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15852 a592a061-630c-0410-9148-cb99ea01b6c8
39 lines
701 B
C++
39 lines
701 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file toc.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Jean-Marc Lasgouttes
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*
|
|
* Nice functions and objects to handle TOCs
|
|
*/
|
|
|
|
#ifndef TOC_H
|
|
#define TOC_H
|
|
|
|
class LCursor;
|
|
|
|
namespace lyx {
|
|
namespace toc {
|
|
|
|
/// the type of outline operation
|
|
enum OutlineOp {
|
|
Up, // Move this header with text down
|
|
Down, // Move this header with text up
|
|
In, // Make this header deeper
|
|
Out // Make this header shallower
|
|
};
|
|
|
|
|
|
void outline(OutlineOp, LCursor &);
|
|
|
|
|
|
} // namespace toc
|
|
} // namespace lyx
|
|
|
|
#endif // CONTROLTOC_H
|