]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormInset.h
Cleanup patches for xforms (Angus) and KDE (John)
[lyx.git] / src / frontends / xforms / FormInset.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  *
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2000 The LyX Team.
8  *
9  * ======================================================
10  */
11
12 #ifndef FORMCOMMAND_H
13 #define FORMCOMMAND_H
14
15 #include "FormBase.h"
16 #include "insets/insetcommand.h"
17
18 #ifdef __GNUG__
19 #pragma interface
20 #endif
21
22
23 /** This class is an XForms GUI base class to insets
24  */
25 class FormInset : public FormBaseBD {
26 protected:
27         /// Constructor
28         FormInset( LyXView *, Dialogs *, string const &,
29                    ButtonPolicy * bp = new OkCancelReadOnlyPolicy,
30                    char const * close = N_("Close"),
31                    char const * cancel = N_("Cancel"));
32
33         /// Disconnect signals. Also perform any necessary housekeeping.
34         virtual void disconnect();
35
36         /// bool indicates if a buffer switch took place
37         virtual void updateSlot(bool);
38
39         /// inset::hide connection.
40         Connection ih_;
41 };
42
43
44 /** This class is an XForms GUI base class to insets derived from
45     InsetCommand
46  */
47 class FormCommand : public FormInset {
48 protected:
49         /// Constructor
50         FormCommand( LyXView *, Dialogs *, string const &,
51                      ButtonPolicy * = new OkCancelReadOnlyPolicy,
52                      char const * close = N_("Close"),
53                      char const * cancel = N_("Cancel"));
54
55         /// Disconnect signals. Also perform any necessary housekeeping.
56         virtual void disconnect();
57
58         /// Slot launching dialog to (possibly) create a new inset
59         void createInset( string const & );
60         /// Slot launching dialog to an existing inset
61         void showInset( InsetCommand * );
62
63         /// pointer to the inset passed through showInset
64         InsetCommand * inset_;
65         /// the nitty-griity. What is modified and passed back
66         InsetCommandParams params;
67 };
68
69 #endif