]> git.lyx.org Git - lyx.git/blob - src/insets/insetlabel.C
Angus insetindex patch + protect patch from Dekel
[lyx.git] / src / insets / insetlabel.C
1 /* This file is part of
2  * ======================================================
3  * 
4  *           LyX, The Document Processor
5  *       
6  *          Copyright 1995 Matthias Ettrich
7  *          Copyright 1995-2000 The LyX Team.
8  *
9  * ====================================================== */
10
11 #include <config.h>
12
13 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "insetlabel.h"
18 #include "support/LOstream.h"
19 #include "lyx_gui_misc.h"     //askForText
20 #include "support/lstrings.h" //frontStrip, strip
21 #include "lyxtext.h"
22 #include "buffer.h"
23
24 using std::ostream;
25 using std::vector;
26 using std::pair;
27
28 /* Label. Used to insert a label automatically */
29
30
31 InsetLabel::InsetLabel(string const & cmd)
32 {
33         scanCommand(cmd);
34 }
35
36
37 Inset * InsetLabel::Clone() const
38 {
39         return new InsetLabel(getCommand());
40 }
41
42
43 vector<string> InsetLabel::getLabelList() const
44 {
45         return vector<string>(1,getContents());
46 }
47
48
49 void InsetLabel::Edit(BufferView * bv, int, int, unsigned int)
50 {
51         if (bv->buffer()->isReadonly()) {
52                 WarnReadonly(bv->buffer()->fileName());
53                 return;
54         }
55
56         pair<bool, string> result = askForText(_("Enter label:"), getContents());
57         if (result.first) {
58                 string new_contents = frontStrip(strip(result.second));
59                 if (!new_contents.empty() &&
60                     getContents() != new_contents) {
61                         bv->buffer()->markDirty();
62                         bool flag = bv->ChangeRefs(getContents(),new_contents);
63                         setContents( new_contents );
64                         bv->text->RedoParagraph(bv);
65                         if (flag) {
66                                 bv->redraw();
67                                 bv->fitCursor();
68                                 //bv->updateScrollbar();
69                         } else
70                                 bv->update(BufferView::SELECT|BufferView::FITCUR|BufferView::CHANGE);
71                 }
72         }
73 }
74
75
76 int InsetLabel::Latex(Buffer const *, ostream & os,
77                       bool /*fragile*/, bool /*fs*/) const
78 {
79         os << escape(getCommand());
80         return 0;
81 }
82
83 int InsetLabel::Ascii(Buffer const *, ostream & os) const
84 {
85         os << "<" << getContents()  << ">";
86         return 0;
87 }
88
89
90 int InsetLabel::Linuxdoc(Buffer const *, ostream & os) const
91 {
92         os << "<label id=\"" << getContents() << "\" >";
93         return 0;
94 }
95
96
97 int InsetLabel::DocBook(Buffer const *, ostream & os) const
98 {
99         os << "<anchor id=\"" << getContents() << "\" >";
100         return 0;
101 }
102
103
104 // This function escapes 8-bit characters and other problematic characters
105 // It's exactly the same code as in insetref.C.
106 string InsetLabel::escape(string const & lab) const {
107         char hexdigit[16] = { '0', '1', '2', '3', '4', '5', '6', '7',
108                               '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
109         string enc;
110         for (string::size_type i= 0; i < lab.length(); ++i) {
111                 unsigned char c = lab[i];
112                 if (c >= 128 || c == '=' || c == '%') {
113                         enc += '=';
114                         enc += hexdigit[c >> 4];
115                         enc += hexdigit[c & 15];
116                 } else {
117                         enc += c;
118                 }
119         }
120         return enc;
121 }