]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiView.h
add tool bar popup with three icon sizes: small, normal, big
[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 // Must be here because of moc.
19 #include <config.h>
20
21 #include "frontends/LyXView.h"
22 #include "funcrequest.h"
23
24 #include <QMainWindow>
25 #include <QTimer>
26 #include <QAction>
27 #include <QCloseEvent>
28
29 class QToolBar;
30 class QMenu;
31
32
33 namespace lyx {
34 namespace frontend {
35
36 class QCommandBuffer;
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: any 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         Q_OBJECT
51 public:
52         /// create a main window of the given dimensions
53         GuiView(int id);
54
55         ~GuiView();
56
57         virtual void init();
58         virtual void close();
59         virtual void setGeometry(
60                 unsigned int width,
61                 unsigned int height,
62                 int posx, int posy,
63                 bool maximize,
64                 unsigned int iconSizeXY);
65         virtual void saveGeometry();
66         virtual void busy(bool);
67         Toolbars::ToolbarPtr makeToolbar(ToolbarBackend::Toolbar const & tbb);
68         virtual void updateStatusBar();
69         virtual void message(lyx::docstring const & str);
70         virtual void clearMessage();
71         virtual bool hasFocus() const;
72
73         virtual void updateTab();
74
75         /// show - display the top-level window
76         void show();
77
78         /// add the command buffer
79         void addCommandBuffer(QToolBar * toolbar);
80
81         /// menu item has been selected
82         void activated(FuncRequest const &);
83
84         void initTab(QWidget* workArea);
85
86         QMenu* createPopupMenu();
87
88 Q_SIGNALS:
89         void closing(int);
90
91 public Q_SLOTS:
92         /// idle timeout
93         void update_view_state_qt();
94
95         /// populate a toplevel menu and all its children on demand
96         void updateMenu(QAction *);
97
98         void currentTabChanged (int index); 
99
100         /// slots to change the icon size
101         void smallSizedIcons();
102         void normalSizedIcons();
103         void bigSizedIcons();
104
105 protected:
106         /// make sure we quit cleanly
107         virtual void closeEvent(QCloseEvent * e);
108
109         ///
110         virtual void resizeEvent(QResizeEvent * e);
111
112         ///
113         virtual void moveEvent(QMoveEvent * e);
114
115 private:
116         /// focus the command buffer widget
117         void focus_command_widget();
118
119         /**
120          * setWindowTitle - set title of window
121          * @param t main window title
122          * @param it iconified (short) title
123          */
124         virtual void setWindowTitle(lyx::docstring const & t, lyx::docstring const & it);
125
126         QTimer statusbar_timer_;
127
128         /// command buffer
129         QCommandBuffer * commandbuffer_;
130
131         ///
132         void updateFloatingGeometry();
133         ///
134         QRect floatingGeometry_;
135
136         void setIconSize(unsigned int size);
137
138         struct GuiViewPrivate;
139         GuiViewPrivate& d;
140 };
141
142 } // namespace frontend
143 } // namespace lyx
144
145 #endif // GUIVIEW_H