]> git.lyx.org Git - lyx.git/blob - src/insets/insetbranch.C
insetbranch.C (linuxdoc, docbook): minor fix.
[lyx.git] / src / insets / insetbranch.C
1 /**
2  * \file insetbranch.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Martin Vermeer
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "insetbranch.h"
14
15 #include "buffer.h"
16 #include "bufferparams.h"
17 #include "BufferView.h"
18 #include "funcrequest.h"
19 #include "gettext.h"
20 #include "LColor.h"
21 #include "lyxlex.h"
22 #include "paragraph.h"
23
24 #include "support/std_sstream.h"
25
26 using std::auto_ptr;
27 using std::istringstream;
28 using std::ostream;
29 using std::ostringstream;
30
31
32 void InsetBranch::init()
33 {
34         setInsetName("Branch");
35         setButtonLabel();
36 }
37
38
39 InsetBranch::InsetBranch(BufferParams const & bp, string const & label)
40         : InsetCollapsable(bp)
41 {
42         params_.branch = label;
43         // Hack: stash the list of all allowable branch labels from this
44         // buffer into inset's parm list as a "stowaway":
45         params_.branchlist = bp.branchlist();
46         init();
47 }
48
49
50 InsetBranch::InsetBranch(InsetBranch const & in)
51         : InsetCollapsable(in), params_(in.params_)
52 {
53         init();
54 }
55
56
57 InsetBranch::~InsetBranch()
58 {
59         InsetBranchMailer mailer("branch", *this);
60         mailer.hideDialog();
61 }
62
63
64 auto_ptr<InsetBase> InsetBranch::clone() const
65 {
66         return auto_ptr<InsetBase>(new InsetBranch(*this));
67 }
68
69
70 string const InsetBranch::editMessage() const
71 {
72         return _("Opened Branch Inset");
73 }
74
75
76 void InsetBranch::write(Buffer const & buf, ostream & os) const
77 {
78         params_.write(os);
79         InsetCollapsable::write(buf, os);
80 }
81
82
83 void InsetBranch::read(Buffer const & buf, LyXLex & lex)
84 {
85         if (lex.isOK()) {
86                 lex.next();
87                 params_.branch = lex.getString();
88         }
89         InsetCollapsable::read(buf, lex);
90         setButtonLabel();
91 }
92
93
94 void InsetBranch::setButtonLabel()
95 {
96         LyXFont font(LyXFont::ALL_SANE);
97         font.decSize();
98         font.decSize();
99
100         setLabel("Branch: " + params_.branch);
101         font.setColor(LColor::foreground);
102         if (!params_.branch.empty())
103                 setBackgroundColor(lcolor.getFromLyXName(params_.branch));
104         else
105                 setBackgroundColor(LColor::background);
106         setLabelFont(font);
107 }
108
109
110 bool InsetBranch::showInsetDialog(BufferView * bv) const
111 {
112         InsetBranchMailer("branch", const_cast<InsetBranch &>(*this)).showDialog(bv);
113         return true;
114 }
115
116
117 dispatch_result InsetBranch::localDispatch(FuncRequest const & cmd)
118 {
119         BufferView * bv = cmd.view();
120         switch (cmd.action) {
121         case LFUN_INSET_MODIFY:
122                 {
123                 InsetBranchParams params;
124                 InsetBranchMailer::string2params(cmd.argument, params);
125                 params_.branch = params.branch;
126                 setButtonLabel();
127                 bv->updateInset(this);
128                 return DISPATCHED;
129                 }
130         case LFUN_INSET_EDIT:
131                 if (cmd.button() != mouse_button::button3)
132                         return InsetCollapsable::localDispatch(cmd);
133
134                 return UNDISPATCHED;
135         case LFUN_INSET_DIALOG_UPDATE:
136                 InsetBranchMailer("branch", *this).updateDialog(bv);
137                 return DISPATCHED;
138         case LFUN_MOUSE_RELEASE:
139                 if (cmd.button() == mouse_button::button3 && hitButton(cmd)) {
140                     InsetBranchMailer("branch", *this).showDialog(bv);
141                         return DISPATCHED;
142                 }
143                 // fallthrough:
144         default:
145                 return InsetCollapsable::localDispatch(cmd);
146         }
147 }
148
149
150 int InsetBranch::latex(Buffer const & buf, ostream & os,
151         LatexRunParams const & runparams) const
152 {
153         string const branch_sel = buf.params().branchlist().allSelected();
154         if (branch_sel.find(params_.branch, 0) != string::npos)
155                 return inset.latex(buf, os, runparams);
156         return 0;
157 }
158
159
160 int InsetBranch::linuxdoc(Buffer const & buf, std::ostream & os) const
161 {
162         string const branch_sel = buf.params().branchlist().allSelected();
163         if (branch_sel.find(params_.branch, 0) != string::npos)
164                 return inset.linuxdoc(buf, os);
165         return 0;
166 }
167
168
169 int InsetBranch::docbook(Buffer const & buf, std::ostream & os, bool mixcont) const
170 {
171         string const branch_sel = buf.params().branchlist().allSelected();
172         if (branch_sel.find(params_.branch, 0) != string::npos)
173                 return inset.docbook(buf, os, mixcont);
174         return 0;
175 }
176
177
178 int InsetBranch::ascii(Buffer const & buf, std::ostream & os, int ll) const
179 {
180         string const branch_sel = buf.params().branchlist().allSelected();
181         if (branch_sel.find(params_.branch, 0) != string::npos) {
182                 return inset.ascii(buf, os, ll);
183         }
184         return 0;
185 }
186
187
188 void InsetBranch::validate(LaTeXFeatures & features) const
189 {
190         inset.validate(features);
191 }
192
193
194
195 InsetBranchMailer::InsetBranchMailer(string const & name,
196                                                 InsetBranch & inset)
197         : name_(name), inset_(inset)
198 {
199 }
200
201
202 string const InsetBranchMailer::inset2string(Buffer const & buf) const
203 {
204         InsetBranchParams params = inset_.params();
205         params.branchlist = buf.params().branchlist();
206         inset_.setParams(params);
207         return params2string(name_, params);
208 }
209
210
211 string const InsetBranchMailer::params2string(string const & name,
212                                               InsetBranchParams const & params)
213 {
214         ostringstream data;
215         data << name << ' ';
216         params.write(data);
217         // Add all_branches parameter to data:
218         data << params.branchlist.allBranches() << "\n";
219         return data.str();
220 }
221
222
223 void InsetBranchMailer::string2params(string const & in,
224                                      InsetBranchParams & params)
225 {
226         params = InsetBranchParams();
227
228         if (in.empty())
229                 return;
230
231         istringstream data(in);
232         LyXLex lex(0,0);
233         lex.setStream(data);
234         params.read(lex);
235         // Process all_branches here:
236         if (lex.isOK()) {
237                 lex.next();
238                 params.branchlist.add(lex.getString());
239         }
240 }
241
242
243 void InsetBranchParams::write(ostream & os) const
244 {
245         os << "Branch" << " " << branch << "\n";
246 }
247
248
249 void InsetBranchParams::read(LyXLex & lex)
250 {
251         if (lex.isOK()) {
252                 lex.next();
253                 string token = lex.getString();
254         }
255         if (lex.isOK()) {
256                 lex.next();
257                 string token = lex.getString();
258         }
259         if (lex.isOK()) {
260                 lex.next();
261                 branch = lex.getString();
262         }
263 }