]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/DialogView.h
rename buffer parameter math_number_before to math_numbering_side
[lyx.git] / src / frontends / qt4 / DialogView.h
1 // -*- C++ -*-
2 /**
3  * \file DialogView.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Abdelrazak Younes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef DIALOGVIEW_H
13 #define DIALOGVIEW_H
14
15 #include "Dialog.h"
16 #include "GuiView.h"
17
18 #include <QCloseEvent>
19 #include <QDialog>
20
21 namespace lyx {
22 namespace frontend {
23
24 class DialogView : public QDialog, public Dialog
25 {
26         Q_OBJECT
27
28 public:
29         /// \param lv is the access point for the dialog to the LyX kernel.
30         /// \param name is the identifier given to the dialog by its parent
31         /// container.
32         /// \param title is the window title used for decoration.
33         DialogView(GuiView & lv, QString const & name, QString const & title);
34
35         virtual QWidget * asQWidget() { return this; }
36         virtual QWidget const * asQWidget() const { return this; }
37
38 protected:
39         /// \name Dialog inherited methods
40         //@{
41         void applyView() {}
42         bool initialiseParams(std::string const & /*data*/) { return true; }
43         void clearParams() {}
44         bool needBufferOpen() const { return isBufferDependent(); }
45         //@}
46         /// Any dialog that overrides this method should make sure to call it.
47         void closeEvent(QCloseEvent * ev);
48         /// Any dialog that overrides this method should make sure to call it.
49         void hideEvent(QHideEvent * ev);
50
51 protected Q_SLOTS:
52         void onBufferViewChanged() {};
53 };
54
55 } // namespace frontend
56 } // namespace lyx
57
58 #endif // DIALOGVIEW_H