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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INSETNOTE_H
|
|
|
|
#define INSETNOTE_H
|
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "InsetCollapsable.h"
|
|
|
|
#include "MailInset.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
|
|
|
|
2005-01-19 15:03:31 +00:00
|
|
|
class InsetNoteParams {
|
|
|
|
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
|
|
|
|
|
|
|
|
2003-07-08 14:19:25 +00:00
|
|
|
/** The PostIt note inset, and other annotations
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2001-07-20 09:57:23 +00:00
|
|
|
*/
|
|
|
|
class InsetNote : public InsetCollapsable {
|
|
|
|
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-02-27 20:43:16 +00:00
|
|
|
docstring editMessage() const;
|
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
|
|
|
///
|
2007-05-18 20:00:19 +00:00
|
|
|
virtual DisplayType display() const;
|
2007-04-29 12:32:14 +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
|
|
|
///
|
2003-07-08 14:19:25 +00:00
|
|
|
void validate(LaTeXFeatures &) const;
|
|
|
|
///
|
|
|
|
InsetNoteParams const & params() const { return params_; }
|
2005-04-22 08:57:22 +00:00
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
bool getStatus(Cursor &, FuncRequest const &, FuncStatus &) const;
|
2007-08-12 21:43:58 +00:00
|
|
|
// Update the counters of this inset and of its contents
|
2008-02-27 20:43:16 +00:00
|
|
|
void updateLabels(ParIterator const &);
|
2008-02-11 13:06:01 +00:00
|
|
|
///
|
2008-02-27 20:43:16 +00:00
|
|
|
void addToToc(ParConstIterator const &) const;
|
2003-10-17 18:01:15 +00:00
|
|
|
protected:
|
2004-11-23 23:04:52 +00:00
|
|
|
InsetNote(InsetNote const &);
|
2003-10-17 18:01:15 +00:00
|
|
|
///
|
2007-04-26 14:56:30 +00:00
|
|
|
virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
|
2001-07-23 09:11:14 +00:00
|
|
|
private:
|
2003-07-08 14:19:25 +00:00
|
|
|
friend class InsetNoteParams;
|
2008-02-27 20:43:16 +00:00
|
|
|
///
|
|
|
|
Inset * clone() const;
|
2001-07-23 09:11:14 +00:00
|
|
|
/// used by the constructors
|
|
|
|
void init();
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
|
|
|
InsetNoteParams params_;
|
|
|
|
};
|
|
|
|
|
2003-10-17 18:01:15 +00:00
|
|
|
|
2003-07-08 14:19:25 +00:00
|
|
|
class InsetNoteMailer : public MailInset {
|
|
|
|
public:
|
|
|
|
///
|
2003-12-10 14:49:51 +00:00
|
|
|
InsetNoteMailer(InsetNote & inset);
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
2007-04-29 13:39:47 +00:00
|
|
|
virtual Inset & inset() const { return inset_; }
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual std::string const & name() const { return name_; }
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
virtual std::string const inset2string(Buffer const &) const;
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
2003-12-10 14:49:51 +00:00
|
|
|
static std::string const params2string(InsetNoteParams const &);
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
2003-10-06 15:43:21 +00:00
|
|
|
static void string2params(std::string const &, InsetNoteParams &);
|
2003-07-08 14:19:25 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
///
|
2003-12-10 14:49:51 +00:00
|
|
|
static std::string const name_;
|
2003-07-08 14:19:25 +00:00
|
|
|
///
|
|
|
|
InsetNote & inset_;
|
2001-07-20 09:57:23 +00:00
|
|
|
};
|
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
2001-07-20 09:57:23 +00:00
|
|
|
#endif
|