]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/GUI.h
ws fixes, formatting and some other small changes
[lyx.git] / src / frontends / controllers / GUI.h
1 // -*- C++ -*-
2 /**
3  * \file GUI.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef GUI_H
13 #define GUI_H
14
15 #include "ButtonController.h"
16
17 #include <boost/utility.hpp>
18
19 /** This class makes a whole out of the disparate parts of a dialog.
20  */
21 template <typename Controller, typename GUIview,
22           typename Policy,     typename GUIbc>
23 class GUI : boost::noncopyable {
24 public:
25         ///
26         GUI(LyXView & lv, Dialogs & d);
27         ///
28         Controller & controller() { return controller_; }
29         ///
30         Controller const & controller() const { return controller_; }
31 private:
32         ///
33         Controller controller_;
34         ///
35         ButtonController<Policy, GUIbc> bc_;
36         ///
37         GUIview view_;
38 };
39
40
41 template <typename Controller, typename GUIview,
42           typename Policy,     typename GUIbc>
43 GUI<Controller, GUIview, Policy, GUIbc>::GUI(LyXView & lv, Dialogs & d)
44         : controller_(lv, d),
45           view_()
46 {
47         controller_.setView(view_);
48         controller_.setButtonController(bc_);
49         view_.setController(controller_);
50 }
51
52 #endif // GUI_H