]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlInclude.C
implement getLabelList
[lyx.git] / src / frontends / controllers / ControlInclude.C
1 /**
2  * \file ControlInclude.C
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author John Levon, moz@compsoc.man.ac.uk
8  * \author Angus Leeming, a.leeming@.ac.uk
9  */
10
11 #include <config.h>
12 #include <utility>
13
14 #ifdef __GNUG__
15 #pragma implementation
16 #endif
17
18 #include "ControlInclude.h"
19 #include "buffer.h"
20 #include "Dialogs.h"
21 #include "lyxfunc.h"
22 #include "LyXView.h"
23
24 #include "helper_funcs.h"
25 #include "lyxrc.h"
26
27 using std::pair;
28 using std::make_pair;
29 using SigC::slot;
30
31 ControlInclude::ControlInclude(LyXView & lv, Dialogs & d)
32         : ControlInset<InsetInclude, InsetInclude::Params>(lv, d)
33 {
34         d_.showInclude.connect(slot(this, &ControlInclude::showInset));
35 }
36
37
38 void ControlInclude::applyParamsToInset()
39 {
40         inset()->set(params());
41         lv_.view()->updateInset(inset(), true);
42 }
43
44
45 string const ControlInclude::Browse(string const & in_name, Type in_type)
46 {
47         string const title = N_("Select document to include");
48
49         string pattern;
50                    
51         // input TeX, verbatim, or LyX file ?
52         switch (in_type) {
53         case INPUT:
54             pattern = _("*.tex| LaTeX Documents (*.tex)");
55             break;
56
57         case VERBATIM:
58             pattern = _("*| All files ");
59             break;
60
61         case INCLUDE:
62             pattern = _("*.lyx| LyX Documents (*.lyx)");
63             break;
64         }
65         
66         pair<string, string> dir1(N_("Documents"), string(lyxrc.document_path));
67
68         return browseFile(&lv_, in_name, title, pattern, dir1,
69                           make_pair(string(), string()));
70 }