]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiDialog.h
Use <cstdint> instead of <boost/cstdint.hpp>
[lyx.git] / src / frontends / qt4 / GuiDialog.h
1 // -*- C++ -*-
2 /**
3  * \file GuiDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GUIDIALOG_H
13 #define GUIDIALOG_H
14
15 #include "Dialog.h"
16 #include "ButtonController.h"
17
18 #include <QAbstractButton>
19 #include <QDialog>
20
21
22 namespace lyx {
23 namespace frontend {
24
25 /// Base class for historical LyX dialogs.
26 /**
27   * \warning New dialogs should use the leaner classes \c DialogView or
28   * \c DockView depending on the intent. Eventually, old dialogs should be
29   * converted to \c DialogView too.
30   */
31 class GuiDialog : public QDialog, public Dialog
32 {
33         Q_OBJECT
34
35 public:
36         /// \param lv is the access point for the dialog to the LyX kernel.
37         /// \param name is the identifier given to the dialog by its parent
38         /// container.
39         /// \param title is the window title used for decoration.
40         GuiDialog(GuiView & lv, QString const & name, QString const & title);
41
42         virtual QWidget * asQWidget() { return this; }
43         virtual QWidget const * asQWidget() const { return this; }
44
45 public Q_SLOTS:
46         /** \name Buttons
47          *  These methods are publicly accessible because they are invoked
48          *  by the View when the user presses... guess what ;-)
49          */
50         // Restore button clicked
51         void slotRestore();
52         // Restore Defaults button clicked
53         virtual void slotRestoreDefaults() {}
54         // OK button clicked
55         void slotOK();
56         // Apply button clicked
57         void slotApply();
58         // AutoApply checkbox clicked
59         void slotAutoApply();
60         // Close button clicked or closed from WindowManager
61         void slotClose();
62         // A collectiong slot for QDialogButtonBox
63         void slotButtonBox(QAbstractButton *);
64         ///
65         void closeEvent(QCloseEvent * e);
66
67 protected Q_SLOTS:
68         void onBufferViewChanged() {};//override
69
70 public:
71         /** Check whether we may apply our data.
72          *
73          *  The buttons are disabled if not and (re-)enabled if yes.
74          */
75         void setButtonsValid(bool valid);
76
77         /** \name Dialog Components
78          *  Methods to access the various components making up a dialog.
79          */
80         //@{
81         ButtonController const & bc() const { return bc_; }
82         ButtonController & bc() { return bc_; }
83         //@}
84
85         /// the dialog has changed contents
86         virtual void changed();
87
88         virtual void enableView(bool enable);
89
90         /// default: do nothing
91         virtual void applyView() {}
92         /// default: do nothing
93         virtual void updateContents() {}
94
95 public:
96         /// is the dialog currently valid ?
97         virtual bool isValid() { return true; }
98
99 public:
100
101         /** When applying, it's useful to know whether the dialog is about
102          *  to close or not (no point refreshing the display for example).
103          */
104         bool isClosing() const { return is_closing_; }
105
106         ///
107         bool needBufferOpen() const { return isBufferDependent(); }
108
109         /// Update the display of the dialog whilst it is still visible.
110         virtual void updateView();
111
112 private:
113         ButtonController bc_;
114         /// are we updating ?
115         bool updating_;
116
117         bool is_closing_;
118 };
119
120
121 } // namespace frontend
122 } // namespace lyx
123
124 #endif // GUIDIALOG_H