]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormNote.h
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / FormNote.h
1 // -*- C++ -*-
2 /**
3  * \file FormNote.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Martin Vermeer
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef FORMNOTE_H
13 #define FORMNOTE_H
14
15 #include "FormDialogView.h"
16
17 namespace lyx {
18 namespace frontend {
19
20 class ControlNote;
21 struct FD_note;
22
23 /** This class provides an XForms implementation of the Note Dialog.
24  */
25 class FormNote : public FormController<ControlNote, FormView<FD_note> > {
26 public:
27         /// Constructor
28         FormNote(Dialog &);
29 private:
30         ///
31         virtual void apply();
32         /// Build the dialog
33         virtual void build();
34         /// Update dialog before showing it
35         virtual void update();
36 };
37
38 } // namespace frontend
39 } // namespace lyx
40
41 #endif // FORMNOTE_H