]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GView.h
make it compile again
[lyx.git] / src / frontends / gtk / GView.h
1 // -*- C++ -*-
2 /**
3  * \file gtk/GView.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Huang Ying
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GVIEW_H
13 #define GVIEW_H
14
15 #include "bufferview_funcs.h"
16
17 #include "frontends/LyXView.h"
18
19 #include <gtkmm.h>
20
21 #include <map>
22
23 namespace lyx {
24 namespace frontend {
25
26 class GMiniBuffer;
27
28 class GView : public LyXView, public Gtk::Window {
29 public:
30         enum Position {
31                 Top,
32                 Bottom,
33                 Left,
34                 Right,
35                 Center
36         };
37
38         GView();
39         ~GView();
40
41         Gtk::Box & getBox(Position pos);
42
43         virtual void prohibitInput() const;
44         virtual void allowInput() const;
45         virtual void message(lyx::docstring const &);
46
47         bool on_delete_event(GdkEventAny * event);
48         void focusWorkArea() { workArea_->grab_focus(); }
49         void setGWorkArea(Gtk::Widget * w) { workArea_ = w; }
50
51         /// show busy cursor
52         virtual void busy(bool) const;
53
54         ///
55         Toolbars::ToolbarPtr makeToolbar(ToolbarBackend::Toolbar const & tbb);
56
57         /// clear any temporary message and replace with current status
58         virtual void clearMessage();
59
60         // returns true if this view has the focus.
61         virtual bool hasFocus() const;
62         ///
63         void updateStatusBar();
64
65 private:
66         bool onFocusIn(GdkEventFocus * event);
67         virtual void setWindowTitle(lyx::docstring const & t, lyx::docstring const & it);
68
69         // The top-most box containing all other boxes.
70         Gtk::VBox top_box_;
71
72         // The physical store for the boxes making up the layout.
73         typedef boost::shared_ptr<Gtk::Box> BoxPtr;
74         typedef std::vector<BoxPtr> BoxStore;
75         BoxStore box_store_;
76
77         // Accessors to the various Boxes.
78         std::map<Position, BoxPtr> box_map_;
79
80         boost::scoped_ptr<GMiniBuffer> minibuffer_;
81         Gtk::Widget * workArea_;
82 };
83
84 } // namespace frontend
85 } // namespace lyx
86
87 #endif