]> git.lyx.org Git - lyx.git/blob - src/insets/insetinclude.C
Added function parseSingleLyXformat2Token() to read a lyx-document so
[lyx.git] / src / insets / insetinclude.C
1 #include <config.h>
2
3 #include <cstdlib>
4
5 #ifdef __GNUG__
6 #pragma implementation
7 #endif
8
9 #include FORMS_H_LOCATION 
10 #include "insetinclude.h"
11 #include "filedlg.h" 
12 #include "buffer.h"
13 #include "bufferlist.h"
14 #include "debug.h"
15 #include "support/filetools.h"
16 #include "lyxrc.h"
17 #include "LyXView.h"
18 #include "LaTeXFeatures.h"
19 #include "lyx_gui_misc.h" // CancelCloseBoxCB
20 #include "gettext.h"
21 #include "include_form.h"
22 #include "support/FileInfo.h"
23 #include "layout.h"
24
25 extern BufferView * current_view;
26
27 extern LyXRC * lyxrc;
28 extern BufferList bufferlist;
29
30
31 FD_include * create_form_include(void)
32 {
33   FL_OBJECT * obj;
34   FD_include * fdui = (FD_include *) fl_calloc(1, sizeof(FD_include));
35
36   fdui->include = fl_bgn_form(FL_NO_BOX, 340, 210);
37   obj = fl_add_box(FL_UP_BOX, 0, 0, 340, 210, "");
38   obj = fl_add_frame(FL_ENGRAVED_FRAME, 10, 70, 160, 90, "");
39   fdui->browsebt = obj = fl_add_button(FL_NORMAL_BUTTON, 230, 30, 100, 30, idex(_("Browse|#B")));
40     fl_set_button_shortcut(obj, scex(_("Browse|#B")), 1);
41     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
42     fl_set_object_callback(obj, include_cb, 0);
43   fdui->flag1 = obj = fl_add_checkbutton(FL_PUSH_BUTTON, 180, 70, 150, 30, idex(_("Don't typeset|#D")));
44     fl_set_button_shortcut(obj, scex(_("Don't typeset|#D")), 1);
45     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
46   obj = fl_add_button(FL_RETURN_BUTTON, 120, 170, 100, 30, _("OK"));
47     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
48     fl_set_object_callback(obj, include_cb, 1);
49   obj = fl_add_button(FL_NORMAL_BUTTON, 230, 170, 100, 30, idex(_("Cancel|^[")));
50     fl_set_button_shortcut(obj, scex(_("Cancel|^[")), 1);
51     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
52     fl_set_object_callback(obj, include_cb, 2);
53   obj = fl_add_button(FL_NORMAL_BUTTON, 230, 130, 100, 30, idex(_("Load|#L")));
54     fl_set_button_shortcut(obj, scex(_("Load|#L")), 1);
55     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
56     fl_set_object_callback(obj, include_cb, 5);
57   fdui->input = obj = fl_add_input(FL_NORMAL_INPUT, 10, 30, 210, 30, idex(_("File name:|#F")));
58     fl_set_input_shortcut(obj, scex(_("File name:|#F")), 1);
59     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
60     fl_set_object_lalign(obj, FL_ALIGN_TOP_LEFT);
61   fdui->flag41 = obj = fl_add_checkbutton(FL_PUSH_BUTTON, 180, 100, 150, 30, idex(_("Visible space|#s")));
62     fl_set_button_shortcut(obj, scex(_("Visible space|#s")), 1);
63     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
64
65   fdui->include_grp = fl_bgn_group();
66   fdui->flag4 = obj = fl_add_checkbutton(FL_RADIO_BUTTON, 10, 130, 160, 30, idex(_("Verbatim|#V")));
67     fl_set_button_shortcut(obj, scex(_("Verbatim|#V")), 1);
68     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
69     fl_set_object_callback(obj, include_cb, 10);
70   fdui->flag2 = obj = fl_add_checkbutton(FL_RADIO_BUTTON, 10, 100, 160, 30, idex(_("Use input|#i")));
71     fl_set_button_shortcut(obj, scex(_("Use input|#i")), 1);
72     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
73     fl_set_object_callback(obj, include_cb, 11);
74   fdui->flag3 = obj = fl_add_checkbutton(FL_RADIO_BUTTON, 10, 70, 160, 30, idex(_("Use include|#U")));
75     fl_set_button_shortcut(obj, scex(_("Use include|#U")), 1);
76     fl_set_object_lsize(obj, FL_NORMAL_SIZE);
77     fl_set_object_callback(obj, include_cb, 11);
78   fl_end_group();
79
80   fl_end_form();
81
82   //fdui->include->fdui = fdui;
83
84   return fdui;
85 }
86 /*---------------------------------------*/
87
88
89 FD_include * form = 0;
90
91 extern "C" void include_cb(FL_OBJECT *, long arg)
92 {
93     
94         InsetInclude * inset = static_cast<InsetInclude*>(form->include->u_vdata);
95         switch (arg) {
96         case 0:
97         {
98                 // Should browsing too be disabled in RO-mode?
99                 LyXFileDlg fileDlg;
100                 string mpath = OnlyPath(inset->getMasterFilename());
101                 string ext;
102     
103                 if (fl_get_button(form->flag2)) // Use Input Button
104                         ext = "*.tex";
105                 else if (fl_get_button(form->flag4)) // Verbatim all files
106                         ext = "*";
107                 else
108                         ext = "*.lyx";
109                 // launches dialog
110                 fileDlg.SetButton(0, _("Documents"), lyxrc->document_path);
111     
112                 // Use by default the master's path
113                 string filename = fileDlg.Select(_("Select Child Document"),
114                                                   mpath, ext, 
115                                                   inset->getContents());
116                 XFlush(fl_get_display());
117  
118                 // check selected filename
119                 if (!filename.empty()) {
120                         string filename2 = MakeRelPath(filename,
121                                                         mpath);
122                         if (prefixIs(filename2, ".."))
123                                 fl_set_input(form->input,
124                                              filename.c_str());
125                         else
126                                 fl_set_input(form->input,
127                                              filename2.c_str());
128                 }
129                 break;
130         }
131
132         case 1:
133                 if(!current_view->buffer()->isReadonly()) {
134                         inset->setContents(fl_get_input(form->input));
135                         // don't typeset
136                         inset->setNoLoad(fl_get_button(form->flag1));
137                         if (fl_get_button(form->flag2))
138                                 inset->setInput();
139                         else if (fl_get_button(form->flag3))
140                                 inset->setInclude();
141                         else if (fl_get_button(form->flag4)) {
142                                 inset->setVerb();
143                                 inset->setVisibleSpace(fl_get_button(form->flag41));
144                         }
145                         
146                         fl_hide_form(form->include);
147                         current_view->updateInset(inset, true);
148                         break;
149                 } // fall through
150                 
151         case 2:
152                 fl_hide_form(form->include);
153                 break;
154         case 5:
155                 if(!current_view->buffer()->isReadonly()) {
156                         inset->setContents(fl_get_input(form->input));
157                         inset->setNoLoad(fl_get_button(form->flag1));
158                         if (fl_get_button(form->flag2))
159                                 inset->setInput();
160                         else if (fl_get_button(form->flag3))
161                                 inset->setInclude();
162                         else if (fl_get_button(form->flag4)) {
163                                 inset->setVerb();
164                                 inset->setVisibleSpace(fl_get_button(form->flag41));
165                         }
166                         
167                         fl_hide_form(form->include);
168                         current_view->updateInset(inset, true);
169                         current_view->owner()->getLyXFunc()->Dispatch(LFUN_CHILDOPEN, inset->getContents().c_str());
170                 }
171                 break;
172                 
173         case 10:
174                 fl_activate_object(form->flag41);
175                 fl_set_object_lcol(form->flag41, FL_BLACK); 
176                 break;
177         case 11:
178                 fl_deactivate_object(form->flag41);
179                 fl_set_object_lcol(form->flag41, FL_INACTIVE);
180                 fl_set_button(form->flag41, 0);
181                 break;
182         }
183 }
184
185
186 InsetInclude::InsetInclude(string const & fname, Buffer * bf)
187         : InsetCommand("include") 
188 {
189         master = bf;
190         setContents(fname);
191         flag = InsetInclude::INCLUDE;
192         noload = false;
193 }
194
195
196 InsetInclude::~InsetInclude()
197 {
198         if (form && form->include->u_vdata == this) {
199                 // this inset is in the popup so hide the popup 
200                 // and remove the reference to this inset. ARRae
201                 if (form->include) {
202                         if (form->include->visible) {
203                                 fl_hide_form(form->include);
204                         }
205                         fl_free_form(form->include);
206                 }
207                 fl_free(form);
208                 form = 0;
209         }
210 }
211
212
213 Inset * InsetInclude::Clone() const
214
215         InsetInclude * ii = new InsetInclude (contents, master); 
216         ii->setNoLoad(isNoLoad());
217         // By default, the newly created inset is of `include' type,
218         // so we do not test this case.
219         if (isInput())
220                 ii->setInput();
221         else if (isVerb()) {
222                 ii->setVerb();
223                 ii->setVisibleSpace(isVerbVisibleSpace());
224         }
225         return ii;
226 }
227
228
229 void InsetInclude::Edit(BufferView * bv, int, int, unsigned int)
230 {
231         if(bv->buffer()->isReadonly())
232                 WarnReadonly(bv->buffer()->fileName());
233
234         if (!form) {
235                 form = create_form_include();
236                 fl_set_form_atclose(form->include, IgnoreCloseBoxCB, 0);
237         }
238         form->include->u_vdata = this;
239     
240         fl_set_input(form->input, contents.c_str());
241         fl_set_button(form->flag1, int(isNoLoad()));
242         fl_set_button(form->flag2, int(isInput()));
243         fl_set_button(form->flag3, int(isInclude()));
244         fl_set_button(form->flag4, int(isVerb()));
245         if (isVerb()) 
246             fl_set_button(form->flag41, int(isVerbVisibleSpace()));
247         else {
248             fl_set_button(form->flag41, 0);
249             fl_deactivate_object(form->flag41);
250             fl_set_object_lcol(form->flag41, FL_INACTIVE);
251         }
252         
253         if (form->include->visible) {
254                 fl_raise_form(form->include);
255         } else {
256                 fl_show_form(form->include, FL_PLACE_MOUSE, FL_FULLBORDER,
257                              _("Include"));
258         }
259 }
260
261
262 void InsetInclude::Write(ostream & os) const
263 {
264         os << "Include " << getCommand() << "\n";
265 }
266
267
268 void InsetInclude::Read(LyXLex & lex)
269 {
270         InsetCommand::Read(lex);
271     
272         if (getCmdName() == "include")
273                 setInclude();
274         else if (getCmdName() == "input")
275                 setInput();
276         else if (contains(getCmdName(), "verbatim")) {
277                 setVerb();
278                 if (getCmdName() == "verbatiminput*")
279                         setVisibleSpace(true);
280         }
281 }
282
283
284 string InsetInclude::getScreenLabel() const
285 {
286         string temp;
287         if (isInput())
288                 temp += _("Input");
289         else if (isVerb()) {
290                 temp += _("Verbatim Input");
291                 if (isVerbVisibleSpace()) temp += '*';
292         } else temp += _("Include");
293         temp += ": ";
294         
295         if (contents.empty()) {
296                 temp+= "???";
297         } else {
298                 temp+= contents;
299         }
300         return temp;
301 }
302
303
304 bool InsetInclude::loadIfNeeded() const
305 {
306         if (isNoLoad() || isVerb()) return false;
307         if (!IsLyXFilename(getFileName())) return false;
308         
309         if (bufferlist.exists(getFileName())) return true;
310         
311         // the readonly flag can/will be wrong, not anymore I think.
312         FileInfo finfo(getFileName());
313         bool ro = !finfo.writable();
314         return ( bufferlist.readFile(getFileName(), ro) != 0 );
315 }
316
317
318 int InsetInclude::Latex(ostream & os, signed char /*fragile*/) const
319 {
320         string include_file;
321         signed char dummy = 0;
322         Latex(include_file, dummy);
323         os << include_file;
324         return 0;
325 }
326
327
328 int InsetInclude::Latex(string & file, signed char /*fragile*/) const
329 {
330         string writefile, incfile;
331
332         // Do nothing if no file name has been specified
333         if (contents.empty())
334                 return 0;
335     
336         // Use += to force a copy of contents (JMarc)
337         incfile += contents;
338
339         if (loadIfNeeded()) {
340                 Buffer * tmp = bufferlist.getBuffer(getFileName());
341
342                 if (tmp->params.textclass != master->params.textclass) {
343                         lyxerr << "ERROR: Cannot handle include file `"
344                                << MakeDisplayPath(getFileName())
345                                << "' which has textclass `"
346                                << textclasslist.NameOfClass(tmp->params.textclass)
347                                << "' instead of `"
348                                << textclasslist.NameOfClass(master->params.textclass)
349                                << "'." << endl;
350                         return 0;
351                 }
352                 
353                 // write it to a file (so far the complete file)
354                 writefile = ChangeExtension(getFileName(), ".tex", false);
355                 if (!master->tmppath.empty()
356                     && !master->niceFile) {
357                         incfile = subst(incfile, '/','@');
358 #ifdef __EMX__
359                         incfile = subst(incfile, ':', '$');
360 #endif
361                         writefile = AddName(master->tmppath, incfile);
362                 } else
363                         writefile = getFileName();
364                 writefile = ChangeExtension(writefile, ".tex", false);
365                 lyxerr[Debug::LATEX] << "incfile:" << incfile << endl;
366                 lyxerr[Debug::LATEX] << "writefile:" << writefile << endl;
367                 
368                 tmp->markDepClean(master->tmppath);
369                 
370                 tmp->makeLaTeXFile(writefile,
371                                    OnlyPath(getMasterFilename()), 
372                                    master->niceFile, true);
373         } 
374
375         if (isVerb()) {
376                 file += '\\';
377                 file += command + '{';
378                 file += incfile + '}';
379         } 
380         else if (isInput()) {
381                 // \input wants file with extension (default is .tex)
382                 if (!IsLyXFilename(getFileName())) {
383                         file += '\\';
384                         file += command + '{';
385                         file += incfile + '}';
386                 } else {
387                         file += '\\';
388                         file += command + '{';
389                         file += ChangeExtension(incfile, ".tex", false)
390                                 + '}';
391                 }
392         } else {
393                 // \include don't want extension and demands that the
394                 // file really have .tex
395                 file += '\\';
396                 file += command + '{';
397                 file +=         ChangeExtension(incfile, string(), false)
398                         + '}';
399         }
400
401         return 0;
402 }
403
404
405 void InsetInclude::Validate(LaTeXFeatures & features) const
406 {
407         if (isVerb())
408                 features.verbatim = true;
409
410         // Here we must do the fun stuff...
411         // Load the file in the include if it needs
412         // to be loaded:
413         if (loadIfNeeded()) {
414                 // a file got loaded
415                 Buffer * tmp = bufferlist.getBuffer(getFileName());
416                 tmp->validate(features);
417         }
418 }
419
420
421 string InsetInclude::getLabel(int) const
422 {
423     string label;
424     string parentname;
425         
426         
427     if (loadIfNeeded()) {
428         Buffer * tmp = bufferlist.getBuffer(getFileName());
429         tmp->setParentName(""); 
430         label =  tmp->getReferenceList('\n');
431         tmp->setParentName(getMasterFilename());
432     }
433
434     return label;
435 }
436
437
438 int InsetInclude::GetNumberOfLabels() const
439 {
440     string label;
441
442     if (loadIfNeeded()) {
443         Buffer * tmp = bufferlist.getBuffer(getFileName());
444         tmp->setParentName("");    
445         label = tmp->getReferenceList('\n');
446         tmp->setParentName(getMasterFilename());
447     }
448     int nl = (label.empty())? 0: 1;
449         
450     return nl;
451 }
452
453
454 string InsetInclude::getKeys(char delim) const
455 {
456         string lst;
457         
458         if (loadIfNeeded()) {
459                 Buffer *tmp = bufferlist.getBuffer(getFileName());
460                 tmp->setParentName(""); 
461                 lst =  tmp->getBibkeyList(delim);
462                 tmp->setParentName(getMasterFilename());
463         }
464         
465         return lst;
466 }