mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-24 01:01:57 +00:00
34b7650cbb
export (e.g. the ToC) and the navigate menu. * src/insets/insetbase.h (InsetBase::plaintext): output to a docstream (InsetBase::textString): ditto * src/mathed/TextPainter.h (TextPainter::show): ditto * src/support/docstream.[Ch] New file and string streams for docstring. The file streams convert to UTF8 on the fly. * many more files: Adjust to the changes above git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15301 a592a061-630c-0410-9148-cb99ea01b6c8
37 lines
746 B
C++
37 lines
746 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file output_plaintext.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef OUTPUT_PLAINTEXT_H
|
|
#define OUTPUT_PLAINTEXT_H
|
|
|
|
#include "support/docstream.h"
|
|
|
|
class Buffer;
|
|
class OutputParams;
|
|
class Paragraph;
|
|
|
|
|
|
///
|
|
void writeFileAscii(Buffer const & buf, std::string const &,
|
|
OutputParams const &);
|
|
|
|
///
|
|
void writeFileAscii(Buffer const & buf, lyx::odocstream &, OutputParams const &);
|
|
|
|
///
|
|
void asciiParagraph(Buffer const & buf,
|
|
Paragraph const & paragraphs,
|
|
lyx::odocstream & ofs,
|
|
OutputParams const &,
|
|
bool & ref_printed);
|
|
|
|
#endif
|