]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiView.h
Transfer readOnly() and updateWindowTitle() from Delegates to WorkArea/WorkAreaManage...
[lyx.git] / src / frontends / qt4 / GuiView.h
1 // -*- C++ -*-
2 /**
3  * \file GuiView.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjornes
8  * \author John Levon
9  * \author Abdelrazak Younes
10  * \author Peter Kümmel
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #ifndef GUI_VIEW_H
16 #define GUI_VIEW_H
17
18 #include "frontends/LyXView.h"
19 #include "FuncRequest.h"
20
21 #include <QAction>
22 #include <QCloseEvent>
23 #include <QMainWindow>
24 #include <QTabWidget>
25 #include <QTimer>
26
27 class QDragEnterEvent;
28 class QDropEvent;
29 class QMenu;
30 class QToolBar;
31
32 namespace lyx {
33 namespace frontend {
34
35 class GuiToolbar;
36 class GuiWorkArea;
37
38 QWidget * mainWindow();
39
40 /**
41  * GuiView - Qt4 implementation of LyXView
42  *
43  * qt4-private implementation of the main LyX window.
44  *
45  * Note: a QObject emits a destroyed(QObject *) Qt signal when it
46  * is deleted. This might be useful for closing other dialogs
47  * depending on a given GuiView.
48  */
49 class GuiView : public QMainWindow, public LyXView
50 {
51         Q_OBJECT
52 public:
53         /// create a main window of the given dimensions
54         GuiView(int id);
55
56         ~GuiView();
57
58         virtual void init();
59         virtual void close();
60         virtual void setFocus();
61         virtual void setGeometry(
62                 unsigned int width,
63                 unsigned int height,
64                 int posx, int posy,
65                 int maximized,
66                 unsigned int iconSizeXY,
67                 const std::string & geometryArg);
68         virtual void saveGeometry();
69         virtual void setBusy(bool);
70         /// add toolbar, if newline==true, add a toolbar break before the toolbar
71         GuiToolbar * makeToolbar(ToolbarInfo const & tbinfo, bool newline);
72         virtual void updateStatusBar();
73         virtual void message(docstring const & str);
74         virtual void clearMessage();
75         virtual bool hasFocus() const;
76         void showMiniBuffer(bool);
77         void openMenu(docstring const &);
78         void openLayoutList();
79         void updateLayoutChoice(bool force);
80         bool isToolbarVisible(std::string const & id);
81         void updateToolbars();
82         ToolbarInfo * getToolbarInfo(std::string const & name);
83         void toggleToolbarState(std::string const & name, bool allowauto);
84
85         /// show - display the top-level window
86         void showView();
87
88         /// menu item has been selected
89         void activated(FuncRequest const &);
90
91         QMenu* createPopupMenu();
92
93         void addTabWorkArea();
94
95 Q_SIGNALS:
96         void closing(int);
97
98 public Q_SLOTS:
99         /// idle timeout
100         void update_view_state_qt();
101
102         ///
103         void updateWindowTitle(GuiWorkArea * wa);
104
105         ///
106         void on_currentWorkAreaChanged(GuiWorkArea *);
107
108         /// slots to change the icon size
109         void smallSizedIcons();
110         void normalSizedIcons();
111         void bigSizedIcons();
112
113 protected:
114         /// make sure we quit cleanly
115         virtual void closeEvent(QCloseEvent * e);
116         ///
117         virtual void resizeEvent(QResizeEvent * e);
118         ///
119         virtual void moveEvent(QMoveEvent * e);
120
121         /// \return the \c Workarea associated to \p  Buffer
122         /// \retval 0 if no \c WorkArea is found.
123         WorkArea * workArea(Buffer & buffer);
124
125         /// Add a \c WorkArea 
126         /// \return the \c Workarea associated to \p  Buffer
127         /// \retval 0 if no \c WorkArea is found.
128         WorkArea * addWorkArea(Buffer & buffer);
129         void setCurrentWorkArea(WorkArea * work_area);
130         void removeWorkArea(WorkArea * work_area);
131         WorkArea const * currentWorkArea() const;
132         WorkArea * currentWorkArea();
133
134 private:
135         ///
136         void dragEnterEvent(QDragEnterEvent * ev);
137         ///
138         void dropEvent(QDropEvent * ev);
139
140         /// in order to catch Tab key press.
141         bool event(QEvent * e);
142         bool focusNextPrevChild(bool);
143
144         QTimer statusbar_timer_;
145
146         /// are we quitting by the menu?
147         bool quitting_by_menu_;
148
149         ///
150         QRect updateFloatingGeometry();
151         ///
152         QRect floatingGeometry_;
153
154         void setIconSize(unsigned int size);
155
156         struct ToolbarSize {
157                 int top_width;
158                 int bottom_width;
159                 int left_height;
160                 int right_height;
161         };
162
163         ToolbarSize toolbarSize_;
164
165         struct GuiViewPrivate;
166         GuiViewPrivate& d;
167 };
168
169
170 } // namespace frontend
171 } // namespace lyx
172
173 #endif // GUIVIEW_H