2001-07-20 09:57:23 +00:00
|
|
|
// -*- C++ -*-
|
2002-09-25 14:26:13 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetNote.h
|
2002-09-25 14:26:13 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-21 17:09:55 +00:00
|
|
|
*
|
2002-09-25 14:26:13 +00:00
|
|
|
* \author Angus Leeming
|
2001-07-20 09:57:23 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2001-07-20 09:57:23 +00:00
|
|
|
*/
|
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
#ifndef INSET_NOTE_H
|
|
|
|
#define INSET_NOTE_H
|
2001-07-20 09:57:23 +00:00
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "InsetCollapsable.h"
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2001-07-20 09:57:23 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
2003-07-25 17:11:25 +00:00
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
class InsetNoteParams
|
|
|
|
{
|
2005-01-19 15:03:31 +00:00
|
|
|
public:
|
2003-12-10 17:28:14 +00:00
|
|
|
enum Type {
|
|
|
|
Note,
|
|
|
|
Comment,
|
2007-12-04 09:25:50 +00:00
|
|
|
Greyedout
|
2003-12-10 17:28:14 +00:00
|
|
|
};
|
|
|
|
/// \c type defaults to Note
|
|
|
|
InsetNoteParams();
|
2003-07-25 17:11:25 +00:00
|
|
|
///
|
|
|
|
void write(std::ostream & os) const;
|
|
|
|
///
|
2007-04-26 11:30:54 +00:00
|
|
|
void read(Lexer & lex);
|
2003-07-25 17:11:25 +00:00
|
|
|
///
|
2003-12-10 17:28:14 +00:00
|
|
|
Type type;
|
2003-07-08 14:19:25 +00:00
|
|
|
};
|
2003-07-25 17:11:25 +00:00
|
|
|
|
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// InsetNote
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
/// The PostIt note inset, and other annotations
|
|
|
|
class InsetNote : public InsetCollapsable
|
|
|
|
{
|
2001-07-20 09:57:23 +00:00
|
|
|
public:
|
2002-03-21 17:09:55 +00:00
|
|
|
///
|
2008-03-04 22:28:18 +00:00
|
|
|
InsetNote(Buffer const &, std::string const &);
|
2001-07-27 12:03:36 +00:00
|
|
|
///
|
2003-07-08 14:19:25 +00:00
|
|
|
~InsetNote();
|
2008-03-05 00:21:05 +00:00
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
static std::string params2string(InsetNoteParams const &);
|
|
|
|
///
|
|
|
|
static void string2params(std::string const &, InsetNoteParams &);
|
|
|
|
///
|
2008-03-05 00:21:05 +00:00
|
|
|
InsetNoteParams const & params() const { return params_; }
|
|
|
|
private:
|
2001-07-20 09:57:23 +00:00
|
|
|
///
|
2007-10-13 09:04:52 +00:00
|
|
|
InsetCode lyxCode() const { return NOTE_CODE; }
|
2001-07-20 09:57:23 +00:00
|
|
|
///
|
2007-08-13 12:13:17 +00:00
|
|
|
docstring name() const;
|
2007-12-04 09:25:50 +00:00
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
DisplayType display() const;
|
2007-04-29 12:32:14 +00:00
|
|
|
///
|
2008-03-09 17:43:16 +00:00
|
|
|
bool noFontChange() const { return params_.type != InsetNoteParams::Note; }
|
2008-04-23 10:55:51 +00:00
|
|
|
/*!
|
|
|
|
* Is the content of this inset part of the output document?
|
|
|
|
*
|
|
|
|
* Note that Note insets are not considered part of the
|
|
|
|
* document, even in their 'greyed out' incarnation.
|
|
|
|
*/
|
|
|
|
bool producesOutput() const { return false; }
|
2008-03-09 17:43:16 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void write(std::ostream &) const;
|
2001-07-20 09:57:23 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void read(Lexer & lex);
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
|
|
|
void setButtonLabel();
|
2003-07-15 23:52:05 +00:00
|
|
|
/// show the note dialog
|
|
|
|
bool showInsetDialog(BufferView * bv) const;
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
bool isMacroScope() const;
|
2007-12-21 20:42:46 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
int latex(odocstream &, OutputParams const &) const;
|
2001-08-18 15:01:09 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
int plaintext(odocstream &, OutputParams const &) const;
|
2007-02-15 22:59:06 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
int docbook(odocstream &, OutputParams const &) const;
|
2002-04-16 16:43:19 +00:00
|
|
|
///
|
2009-06-12 17:23:17 +00:00
|
|
|
docstring xhtml(odocstream &, OutputParams const &) const;
|
2009-06-05 19:58:23 +00:00
|
|
|
///
|
2003-07-08 14:19:25 +00:00
|
|
|
void validate(LaTeXFeatures &) const;
|
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
2008-02-11 13:06:01 +00:00
|
|
|
///
|
2008-05-13 08:23:44 +00:00
|
|
|
void addToToc(DocIterator const &);
|
2003-10-17 18:01:15 +00:00
|
|
|
///
|
2008-03-05 00:21:05 +00:00
|
|
|
void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2008-02-27 20:43:16 +00:00
|
|
|
///
|
2008-03-05 00:21:05 +00:00
|
|
|
Inset * clone() const { return new InsetNote(*this); }
|
2001-07-23 09:11:14 +00:00
|
|
|
/// used by the constructors
|
|
|
|
void init();
|
2008-03-05 00:21:05 +00:00
|
|
|
///
|
2008-03-27 22:26:24 +00:00
|
|
|
docstring contextMenu(BufferView const & bv, int x, int y) const;
|
2008-03-24 13:33:48 +00:00
|
|
|
///
|
2008-03-05 00:21:05 +00:00
|
|
|
friend class InsetNoteParams;
|
|
|
|
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
|
|
|
InsetNoteParams params_;
|
|
|
|
};
|
|
|
|
|
2008-06-18 18:16:50 +00:00
|
|
|
/**
|
|
|
|
* Mutate all NoteInsets of "source" type to the "target" type in the document.
|
|
|
|
* Returns true when some inset was changed.
|
|
|
|
*/
|
2008-06-24 07:18:06 +00:00
|
|
|
bool mutateNotes(lyx::Cursor & cur, std::string const & source, std::string const &target);
|
2003-10-17 18:01:15 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
#endif // INSET_NOTE_H
|