]> git.lyx.org Git - lyx.git/blob - src/frontends/Application.C
* Application.C (Application): initialize correctly current_view_.
[lyx.git] / src / frontends / Application.C
1 /**
2  * \file frontend/Application.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Abdelrazak Younes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "frontends/Application.h"
14
15 #include "frontends/NoGuiFontLoader.h"
16 #include "frontends/NoGuiFontMetrics.h"
17 #include "frontends/FontLoader.h"
18 #include "frontends/FontMetrics.h"
19 #include "frontends/Gui.h"
20 #include "frontends/LyXView.h"
21 #include "frontends/WorkArea.h"
22
23 #include "funcrequest.h"
24 #include "FuncStatus.h"
25 #include "lyx_main.h"  // for lyx::use_gui
26 #include "lyxfont.h"
27 #include "lyxfunc.h"
28 #include "lyxrc.h"
29
30 #include "support/lstrings.h"
31 #include "support/os.h"
32
33 #include <boost/scoped_ptr.hpp>
34 #include <boost/shared_ptr.hpp>
35
36
37 namespace lyx {
38 namespace frontend {
39
40
41 Application::Application(int &, char **)
42         : current_view_(0)
43 {
44         // FIXME: please confirm: with unicode, I think initEncoding()
45         // is not needed anymore!
46         
47         // this can't be done before because it needs the Languages object
48         //initEncodings();
49 }
50
51
52 LyXView & Application::createView(unsigned int width,
53                                   unsigned int height,
54                                   int posx, int posy,
55                                   bool maximize,
56                                   unsigned int iconSizeXY,
57                                   const std::string & geometryArg)
58 {
59         LyXView & view = gui().createRegisteredView();
60         int view_id = view.id();
61         
62         theLyXFunc().setLyXView(&view);
63
64         /*int workArea_id_ =*/ gui().newWorkArea(width, height, view_id);
65
66         view.init();
67         view.setGeometry(width, height, posx, posy, maximize, iconSizeXY, geometryArg);
68
69         setCurrentView(view);
70
71         return view;
72 }
73
74
75 LyXView const * Application::currentView() const
76 {
77         return current_view_;
78 }
79
80
81 LyXView * Application::currentView()
82 {
83         return current_view_;
84 }
85
86
87 void Application::setCurrentView(LyXView & current_view)
88 {
89         current_view_ = &current_view;
90 }
91
92 } // namespace frontend
93
94
95
96 frontend::FontLoader & theFontLoader()
97 {
98         static frontend::NoGuiFontLoader no_gui_font_loader;
99
100         if (!use_gui)
101                 return no_gui_font_loader;
102
103         BOOST_ASSERT(theApp());
104         return theApp()->fontLoader();
105 }
106
107
108 frontend::FontMetrics const & theFontMetrics(LyXFont const & f)
109 {
110         static frontend::NoGuiFontMetrics no_gui_font_metrics;
111
112         if (!use_gui)
113                 return no_gui_font_metrics;
114
115         BOOST_ASSERT(theApp());
116         return theApp()->fontLoader().metrics(f);
117 }
118
119
120 frontend::Clipboard & theClipboard()
121 {
122         BOOST_ASSERT(theApp());
123         return theApp()->clipboard();
124 }
125
126
127 frontend::Selection & theSelection()
128 {
129         BOOST_ASSERT(theApp());
130         return theApp()->selection();
131 }
132
133
134 } // namespace lyx