]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormChanges.h
fc680c5965f5c8a06b5f35c2c8db970ac6f01d29
[lyx.git] / src / frontends / xforms / FormChanges.h
1 // -*- C++ -*-
2 /**
3  * \file FormChanges.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FORMCHANGES_H
13 #define FORMCHANGES_H
14
15 #include "FormBase.h"
16
17 class ControlChanges;
18 struct FD_changes;
19
20 /**
21  * This class provides an XForms implementation of the Merge Changes Dialog.
22  */
23 class FormChanges : public FormCB<ControlChanges, FormDB<FD_changes> > {
24 public:
25         FormChanges();
26
27 private:
28         /// not needed.
29         virtual void apply() {}
30         /// Build the dialog
31         virtual void build();
32         /// update the dialog
33         virtual void update();
34
35         /// Filter the inputs
36         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
37 };
38
39 #endif // FORMCHANGES_H