X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftoc.h;h=1a5cf4e4c428d3a91d526697a23c41f9c968f6dc;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=9c83b32b7742499b4e04bea214d642dbf05ec9ae;hpb=c9f9ba315c8e475ad47c64fef6c9c755dea3d55c;p=lyx.git diff --git a/src/toc.h b/src/toc.h index 9c83b32b77..1a5cf4e4c4 100644 --- a/src/toc.h +++ b/src/toc.h @@ -15,69 +15,21 @@ #ifndef TOC_H #define TOC_H -#include -#include -#include -#include - -class Buffer; -class LyXView; -class Paragraph; -class FuncRequest; +class LCursor; namespace lyx { namespace toc { -/// -class TocItem { -public: - TocItem(int par_id, int d, std::string const & s) - : id_(par_id), depth(d), str(s) {} - /// - std::string const asString() const; - /// set cursor in LyXView to this TocItem - void goTo(LyXView & lv_) const; - /// the action corresponding to the goTo above - FuncRequest action() const; - /// Paragraph ID containing this item - int id_; - /// nesting depth - int depth; - /// - std::string str; +/// 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 }; -/// -typedef std::vector Toc; -/// -typedef std::map TocList; - -/// -TocList const getTocList(Buffer const &); - -/// -std::vector const getTypes(Buffer const &); - -/// -void asciiTocList(std::string const &, Buffer const &, std::ostream &); - -/** Given the cmdName of the TOC param, returns the type used - by ControlToc::getContents() */ -std::string const getType(std::string const & cmdName); - -inline -bool operator==(TocItem const & a, TocItem const & b) -{ - return a.id_ == b.id_ && a.str == b.str; - // No need to compare depth. -} - -inline -bool operator!=(TocItem const & a, TocItem const & b) -{ - return !(a == b); -} +void outline(OutlineOp, LCursor &); } // namespace toc