]> git.lyx.org Git - lyx.git/blob - src/insets/insetnote.h
ec775739295b38667a94b5475b2e2f9c3f0fe177
[lyx.git] / src / insets / insetnote.h
1 // -*- C++ -*-
2 /**
3  * \file insetnote.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef INSETNOTE_H
13 #define INSETNOTE_H
14
15
16 #include "insetcollapsable.h"
17
18
19  struct InsetNoteParams {
20         ///
21         void write(std::ostream & os) const;
22         ///
23         void read(LyXLex & lex);
24         ///
25         std::string type;
26 };
27
28
29 /** The PostIt note inset, and other annotations
30
31 */
32 class InsetNote : public InsetCollapsable {
33 public:
34         ///
35
36
37         InsetNote(BufferParams const &, std::string const &);
38         /// Copy constructor
39         InsetNote(InsetNote const &);
40         ///
41         ~InsetNote();
42         ///
43         virtual std::auto_ptr<InsetBase> clone() const;
44         ///
45         std::string const editMessage() const;
46         ///
47         InsetOld::Code lyxCode() const { return InsetOld::NOTE_CODE; }
48         ///
49         void write(Buffer const &, std::ostream &) const;
50         ///
51         void read(Buffer const & buf, LyXLex & lex);
52         ///
53         void setButtonLabel();
54         ///
55         void metrics(MetricsInfo &, Dimension &) const;
56         /// show the note dialog
57         bool showInsetDialog(BufferView * bv) const;
58         ///
59         int latex(Buffer const &, std::ostream &,
60                         LatexRunParams const &) const;
61         ///
62         int linuxdoc(Buffer const &, std::ostream &) const;
63         ///
64         int docbook(Buffer const &, std::ostream &, bool) const;
65         ///
66         int ascii(Buffer const &, std::ostream &, int) const;
67         ///
68         void validate(LaTeXFeatures &) const;
69         ///
70         InsetNoteParams const & params() const { return params_; }
71 protected:
72         ///
73         virtual
74         dispatch_result
75         priv_dispatch(FuncRequest const &, idx_type &, pos_type &);
76 private:
77         friend class InsetNoteParams;
78
79         /// used by the constructors
80         void init();
81         ///
82         InsetNoteParams params_;
83 };
84
85
86 #include "mailinset.h"
87
88 class InsetNoteMailer : public MailInset {
89 public:
90         ///
91         InsetNoteMailer(std::string const & name, InsetNote & inset);
92         ///
93         virtual InsetBase & inset() const { return inset_; }
94         ///
95         virtual std::string const & name() const { return name_; }
96         ///
97         virtual std::string const inset2string(Buffer const &) const;
98         ///
99         static std::string const params2string(std::string const &, InsetNoteParams const &);
100         ///
101         static void string2params(std::string const &, InsetNoteParams &);
102
103 private:
104         ///
105         std::string const name_;
106         ///
107         InsetNote & inset_;
108 };
109
110
111
112 #endif