lyx_mirror/src/frontends/controllers/ControlToc.h
Lars Gullik Bjønnes f7ba7c8e9f ws cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3806 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-21 21:21:28 +00:00

52 lines
1.1 KiB
C++

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2001 The LyX Team.
*
* ======================================================
*
* \file ControlToc.h
* \author Angus Leeming <a.leeming@ic.ac.uk>
*/
#ifndef CONTROLTOC_H
#define CONTROLTOC_H
#ifdef __GNUG__
#pragma interface
#endif
#include "ControlCommand.h"
#include "buffer.h" // Buffer::SingleList
/** A controller for TOC dialogs.
*/
class ControlToc : public ControlCommand
{
public:
///
ControlToc(LyXView &, Dialogs &);
/// Goto this paragraph id
void Goto(int const & id) const;
/// Returns a vector of list types in the document
std::vector<string> const getTypes() const;
/// Given a type, returns the contents
Buffer::SingleList 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