]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GView.h
GUI API Cleanup step 3: merge with "younes" branch.
[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(Gui & owner);
39         ~GView();
40
41         Gtk::Box & getBox(Position pos);
42
43         virtual void prohibitInput() const;
44         virtual void allowInput() const;
45         virtual void message(std::string 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         /// clear any temporary message and replace with current status
54         virtual void clearMessage();
55
56         // returns true if this view has the focus.
57         virtual bool hasFocus() const;
58         ///
59         void updateStatusBar();
60
61 private:
62         bool onFocusIn(GdkEventFocus * event);
63         virtual void setWindowTitle(std::string const & t, std::string const & it);
64
65         // The top-most box containing all other boxes.
66         Gtk::VBox top_box_;
67
68         // The physical store for the boxes making up the layout.
69         typedef boost::shared_ptr<Gtk::Box> BoxPtr;
70         typedef std::vector<BoxPtr> BoxStore;
71         BoxStore box_store_;
72
73         // Accessors to the various Boxes.
74         std::map<Position, BoxPtr> box_map_;
75
76         boost::scoped_ptr<GMiniBuffer> minibuffer_;
77         Gtk::Widget * workArea_;
78 };
79
80 } // namespace frontend
81 } // namespace lyx
82
83 #endif