]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormExternal.h
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / FormExternal.h
index 70a04cdbab00d695cca3007b5cbea5a4e549dc22..06794df91d8b6b1113014482d5512d21cb79eea9 100644 (file)
@@ -1,48 +1,50 @@
 // -*- C++ -*-
 /**
  * \file FormExternal.h
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Asger Alstrup Nielsen
  * \author John Levon
- * \author Angus Leeming 
+ * \author Angus Leeming
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef FORMEXTERNAL_H
 #define FORMEXTERNAL_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "FormBase.h"
-#include "insets/insetexternal.h"
+#include "FormDialogView.h"
+#include <map>
+
 
 class ControlExternal;
 struct FD_external;
 
 /// The class for editing External insets via a dialog
-class FormExternal : public FormCB<ControlExternal, FormDB<FD_external> > {
+class FormExternal
+       : public FormController<ControlExternal, FormView<FD_external> > {
 public:
        ///
-       FormExternal();
+       FormExternal(Dialog &);
 private:
        /// apply changes
-       void apply();
+       virtual void apply();
 
        /// build the dialog
-       void build();
+       virtual void build();
 
        /// update the dialog
-       void update();
+       virtual void update();
 
        /// Filter the inputs on callback from xforms
-       ButtonPolicy::SMInput input(FL_OBJECT *, long);
+       virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
 
        ///
        void updateComboChange();
+
+       std::map<std::string, std::string> extra_;
 };
 
 #endif // FORMEXTERNAL_H