]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/controllers/ControlToc.h
Add a buffer_path arg to InsetGraphicsMailer's params2string, string2params.
[lyx.git] / src / frontends / controllers / ControlToc.h
index 6047ce2c396974f47d36bce2d5b4b27066aa937d..8a236ad25e11e387692e7806eea2fc909ad5b79f 100644 (file)
@@ -1,51 +1,37 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- *
- *           LyX, The Document Processor
- *
- *           Copyright 2001 The LyX Team.
+/**
+ * \file ControlToc.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * ======================================================
+ * \author Angus Leeming
  *
- * \file ControlToc.h
- * \author Angus Leeming <a.leeming@ic.ac.uk>
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef CONTROLTOC_H
 #define CONTROLTOC_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "ControlCommand.h"
-#include "buffer.h" // Buffer::SingleList
+#include "toc.h"
+#include <vector>
 
 /** A controller for TOC dialogs.
  */
-class ControlToc : public ControlCommand
-{
+class ControlToc : public ControlCommand {
 public:
        ///
-       ControlToc(LyXView &, Dialogs &);
+       ControlToc(Dialog &);
 
        /// Goto this paragraph id
-       void Goto(int const & id) const;
+       void goTo(toc::TocItem const &);
 
-       /// Returns a vector of list types in the document
+       /// Return the list of types available
        std::vector<string> const getTypes() const;
 
        /// Given a type, returns the contents
-       Buffer::SingleList const getContents(string const & type) const;
+       toc::Toc const getContents(string const & type) const;
 };
 
-namespace toc
-{
-    /** Given the cmdName of the TOC param, returns the type used
-       by ControlToc::getContents() */
-       string const getType(string const & cmdName);
-
-} // namespace toc
-
 #endif // CONTROLTOC_H