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