]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormSendto.h
Really dull and boring header shit
[lyx.git] / src / frontends / xforms / FormSendto.h
1 // -*- C++ -*-
2 /**
3  * \file FormSendto.h
4  * Read the file COPYING
5  *
6  * \author Angus Leeming 
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #ifndef FORMSENDTO_H
12 #define FORMSENDTO_H
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "FormBase.h"
19 #include <vector>
20
21 class ControlSendto;
22 class Format;
23 struct FD_sendto;
24
25 /** This class provides an XForms implementation of the Custom Export Dialog.
26  */
27 class FormSendto : public FormCB<ControlSendto, FormDB<FD_sendto> > {
28 public:
29         ///
30         FormSendto();
31 private:
32         /// Apply from dialog (modify or create inset)
33         virtual void apply();
34         /// Build the dialog
35         virtual void build();
36         /// Update the dialog
37         virtual void update();
38         /// Filter the inputs on callback from xforms
39         virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
40
41         std::vector<Format const *> all_formats_;
42 };
43
44 #endif // FORMSENDTO_H