]> git.lyx.org Git - lyx.git/blob - src/insets/insetbranch.C
a7da67000a179af366c0c995e8b58bce98ca48c8
[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 "Lsstream.h"
14
15 #include "insetbranch.h"
16 #include "gettext.h"
17 #include "lyxfont.h"
18 #include "language.h"
19 #include "buffer.h"
20 #include "BufferView.h"
21 #include "LaTeXFeatures.h"
22 #include "latexrunparams.h"
23 #include "lyxlex.h"
24 #include "lyxtext.h"
25 #include "insets/insettext.h"
26 #include "support/LOstream.h"
27 #include "support/lstrings.h"
28 #include "debug.h"
29
30 using std::ostream;
31 using std::auto_ptr;
32
33 void InsetBranch::init()
34 {
35         setInsetName("Branch");
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(params_.branch);
101         font.setColor(LColor::foreground);
102         string const color = params_.branchlist.getColor(params_.branch);
103         if (!color.empty()) {
104                 setBackgroundColor(lcolor.getFromLyXName(params_.branch));
105         } else
106                 setBackgroundColor(LColor::background);
107         setLabelFont(font);
108 }
109
110
111 bool InsetBranch::showInsetDialog(BufferView * bv) const
112 {
113         InsetBranchMailer("branch", const_cast<InsetBranch &>(*this)).showDialog(bv);
114         return true;
115 }
116
117
118 dispatch_result InsetBranch::localDispatch(FuncRequest const & cmd)
119 {
120         BufferView * bv = cmd.view();
121         switch (cmd.action) {
122         case LFUN_INSET_MODIFY:
123                 {
124                 InsetBranchParams params;
125                 InsetBranchMailer::string2params(cmd.argument, params);
126                 params_.branch = params.branch;
127                 setButtonLabel();
128                 bv->updateInset(this);
129                 return DISPATCHED;
130                 }
131         case LFUN_INSET_EDIT:
132                 if (cmd.button() != mouse_button::button3)
133                         return InsetCollapsable::localDispatch(cmd);
134                 
135                 return UNDISPATCHED;
136         case LFUN_INSET_DIALOG_UPDATE:
137                 InsetBranchMailer("branch", *this).updateDialog(bv);
138                 return DISPATCHED;
139         case LFUN_MOUSE_RELEASE:
140                 if (cmd.button() == mouse_button::button3 && hitButton(cmd)) {
141                     InsetBranchMailer("branch", *this).showDialog(bv);
142                         return DISPATCHED;
143                 }
144                 // fallthrough:
145         default:
146                 return InsetCollapsable::localDispatch(cmd);
147         }
148 }
149
150
151
152 int InsetBranch::latex(Buffer const & buf, ostream & os,
153         LatexRunParams const & runparams) const
154 {
155         string const branch_sel = buf.params.branchlist.allSelected();
156         if (branch_sel.find(params_.branch, 0) != string::npos)
157                 return inset.latex(buf, os, runparams);
158         return 0;
159 }
160
161
162 int InsetBranch::linuxdoc(Buffer const &, std::ostream &) const
163 {
164         return 0;
165 }
166
167
168 int InsetBranch::docbook(Buffer const & buf, std::ostream & os, bool mixcont) const
169 {
170         // untested - MV
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 STRCONV(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(STRCONV(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 }