]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormInclude.h
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormInclude.h
index 1ec7dd432a3b25a1c0665a8c959527de94f2f3c5..cfa8504035bf687d617d4c8de291aca9d24c3f5c 100644 (file)
@@ -1,32 +1,33 @@
 // -*- C++ -*-
 /**
  * \file FormInclude.h
- * See the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
  * \author Alejandro Aguilar Sierra
  * \author John Levon
- * \author Angus Leeming 
+ * \author Angus Leeming
  *
  * Full author contact details are available in file CREDITS
  */
 #ifndef FORMINCLUDE_H
 #define FORMINCLUDE_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
-#include "FormBase.h"
+#include "FormDialogView.h"
+#include "RadioButtonGroup.h"
+
 
 class ControlInclude;
 struct FD_include;
 
 /** This class provides an XForms implementation of the Include Dialog.
  */
-class FormInclude : public FormCB<ControlInclude, FormDB<FD_include> > {
+class FormInclude
+       : public FormController<ControlInclude, FormView<FD_include> > {
 public:
        ///
-       FormInclude();
+       FormInclude(Dialog &);
 private:
        /// Set the Params variable for the Controller.
        virtual void apply();
@@ -36,6 +37,9 @@ private:
        virtual void update();
        /// Filter the inputs on callback from xforms
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+
+       /// include type
+       RadioButtonGroup type_;
 };
 
-#endif
+#endif // FORMINCLUDE_H