]> git.lyx.org Git - lyx.git/blob - src/frontends/controllers/GUI.h
This file is part of LyX, the document processor.
[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
32 private:
33         ///
34         Controller controller_;
35         ///
36         ButtonController<Policy, GUIbc> bc_;
37         ///
38         GUIview view_;
39 };
40
41
42 template <typename Controller, typename GUIview,
43           typename Policy,     typename GUIbc>
44 GUI<Controller, GUIview, Policy, GUIbc>::GUI(LyXView & lv, Dialogs & d)
45         : controller_(lv, d),
46           view_()
47 {
48         controller_.setView(view_);
49         controller_.setButtonController(bc_);
50         view_.setController(controller_);
51 }
52
53 #endif // GUI_H