]> git.lyx.org Git - lyx.git/blob - src/toc.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / toc.h
1 // -*- C++ -*-
2 /**
3  * \file toc.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Jean-Marc Lasgouttes
8  * \author Angus Leeming
9  *
10  * Full author contact details are available in file CREDITS.
11  *
12  * Nice functions and objects to handle TOCs
13  */
14
15 #ifndef TOC_H
16 #define TOC_H
17
18 class Cursor;
19
20 namespace lyx {
21 namespace toc {
22
23 /// the type of outline operation
24 enum OutlineOp {
25         Up, // Move this header with text down
26         Down,   // Move this header with text up
27         In, // Make this header deeper
28         Out // Make this header shallower
29 };
30
31
32 void outline(OutlineOp, Cursor &);
33
34
35 } // namespace toc
36 } // namespace lyx
37
38 #endif // CONTROLTOC_H