]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/ControlPrefs.C
This commit cleans up everything related to singleton. The other important change...
[lyx.git] / src / frontends / controllers / ControlPrefs.C
1 /**
2  * \file ControlPrefs.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "ControlPrefs.h"
14
15 #include "helper_funcs.h"
16 #include "Kernel.h"
17
18 #include "bufferlist.h"
19 #include "gettext.h"
20 #include "funcrequest.h"
21 #include "paper.h"
22 #include "LColor.h"
23
24 #include "support/filefilterlist.h"
25
26 #include <sstream>
27
28 using lyx::docstring;
29
30 using std::ostringstream;
31 using std::pair;
32 using std::string;
33 using std::vector;
34
35
36 namespace lyx {
37
38 using support::FileFilterList;
39
40 namespace frontend {
41
42
43 ControlPrefs::ControlPrefs(Dialog & parent)
44         : Dialog::Controller(parent),
45           update_screen_font_(false)
46 {}
47
48
49 bool ControlPrefs::initialiseParams(std::string const &)
50 {
51         rc_ = lyxrc;
52         formats_ = ::formats;
53         converters_ = ::converters;
54         converters_.update(formats_);
55         movers_ = ::movers;
56         colors_.clear();
57         update_screen_font_ = false;
58
59         return true;
60 }
61
62
63 void ControlPrefs::dispatchParams()
64 {
65         ostringstream ss;
66         rc_.write(ss, true);
67         kernel().dispatch(FuncRequest(LFUN_LYXRC_APPLY, ss.str()));
68
69         // FIXME: these need lfuns
70         theBufferList().setCurrentAuthor(rc_.user_name, rc_.user_email);
71
72         ::formats = formats_;
73
74         ::converters = converters_;
75         ::converters.update(::formats);
76         ::converters.buildGraph();
77
78         ::movers = movers_;
79
80         vector<string>::const_iterator it = colors_.begin();
81         vector<string>::const_iterator const end = colors_.end();
82         for (; it != end; ++it)
83                 kernel().dispatch(FuncRequest(LFUN_SET_COLOR, *it));
84         colors_.clear();
85
86         if (update_screen_font_) {
87                 kernel().dispatch(FuncRequest(LFUN_SCREEN_FONT_UPDATE));
88                 update_screen_font_ = false;
89         }
90
91         // The Save button has been pressed
92         if (dialog().isClosing()) {
93                 kernel().dispatch(FuncRequest(LFUN_PREFERENCES_SAVE));
94         }
95 }
96
97
98 void ControlPrefs::setColor(LColor_color col, string const & hex)
99 {
100         colors_.push_back(lcolor.getLyXName(col) + ' ' + hex);
101 }
102
103
104 void ControlPrefs::updateScreenFonts()
105 {
106         update_screen_font_ = true;
107 }
108
109
110 docstring const ControlPrefs::browsebind(docstring const & file) const
111 {
112         return browseLibFile(lyx::from_ascii("bind"), file, lyx::from_ascii("bind"),
113                              _("Choose bind file"),
114                              FileFilterList(_("LyX bind files (*.bind)")));
115 }
116
117
118 docstring const ControlPrefs::browseUI(docstring const & file) const
119 {
120         return browseLibFile(lyx::from_ascii("ui"), file, lyx::from_ascii("ui"),
121                              _("Choose UI file"),
122                              FileFilterList(_("LyX UI files (*.ui)")));
123 }
124
125
126 docstring const ControlPrefs::browsekbmap(docstring const & file) const
127 {
128         return browseLibFile(lyx::from_ascii("kbd"), file, lyx::from_ascii("kmap"),
129                              _("Choose keyboard map"),
130                              FileFilterList(_("LyX keyboard maps (*.kmap)")));
131 }
132
133
134 docstring const ControlPrefs::browsedict(docstring const & file) const
135 {
136         return browseFile(file,
137                           _("Choose personal dictionary"),
138                           FileFilterList(_("*.ispell")));
139 }
140
141
142 docstring const ControlPrefs::browse(docstring const & file,
143                                   docstring const & title) const
144 {
145         return browseFile(file, title, FileFilterList(), true);
146 }
147
148
149 docstring const ControlPrefs::browsedir(docstring const & path,
150                                      docstring const & title) const
151 {
152         return browseDir(path, title);
153 }
154
155
156 // We support less paper sizes than the document dialog
157 // Therefore this adjustment is needed.
158 PAPER_SIZE const ControlPrefs::toPaperSize(int i) const
159 {
160         switch (i) {
161         case 0:
162                 return PAPER_DEFAULT;
163         case 1:
164                 return PAPER_USLETTER;
165         case 2:
166                 return PAPER_USLEGAL;
167         case 3:
168                 return PAPER_USEXECUTIVE;
169         case 4:
170                 return PAPER_A3;
171         case 5:
172                 return PAPER_A4;
173         case 6:
174                 return PAPER_A5;
175         case 7:
176                 return PAPER_B5;
177         default:
178                 // should not happen
179                 return PAPER_DEFAULT;
180         }
181 }
182
183
184 int const ControlPrefs::fromPaperSize(PAPER_SIZE papersize) const
185 {
186         switch (papersize) {
187         case PAPER_DEFAULT:
188                 return 0;
189         case PAPER_USLETTER:
190                 return 1;
191         case PAPER_USLEGAL:
192                 return 2;
193         case PAPER_USEXECUTIVE:
194                 return 3;
195         case PAPER_A3:
196                 return 4;
197         case PAPER_A4:
198                 return 5;
199         case PAPER_A5:
200                 return 6;
201         case PAPER_B5:
202                 return 7;
203         default:
204                 // should not happen
205                 return 0;
206         }
207 }
208
209 } // namespace frontend
210 } // namespace lyx