X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftoc.h;h=19e3469ce44d725d18e9bf1c70927fe59074cd2a;hb=e54ae72e5fac6f750c3f7972c74bb42b57f3a049;hp=e0f10cfa06f7cb0435d95001b2694db70cf47f27;hpb=b881ed2d5a4d26b062556d6d417c8f4624741878;p=lyx.git diff --git a/src/toc.h b/src/toc.h index e0f10cfa06..19e3469ce4 100644 --- a/src/toc.h +++ b/src/toc.h @@ -8,75 +8,28 @@ * \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 -#include "support/LOstream.h" -#include "LString.h" - -#include -#include - -class Buffer; -class LyXView; -class Paragraph; +class Cursor; -/** Nice functions and objects to handle TOCs - */ namespace lyx { namespace toc { -/// -struct TocItem { - TocItem(int par_id, int d, string const & s) - : id_(par_id), depth(d), str(s) {} - /// - string const asString() const; - /// set cursor in LyXView to this TocItem - void goTo(LyXView & lv_) const; - /// the action corresponding to the goTo above - int action() const; - /// Paragraph ID containing this item - int id_; - /// nesting depth - int depth; - /// - 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(string const &, Buffer const &, std::ostream &); - -/** Given the cmdName of the TOC param, returns the type used - by ControlToc::getContents() */ -string const getType(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, Cursor &); } // namespace toc