]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormParagraph.h
Bugfixes: checkboxes to radiobuttons (from J�rgen S) and remove a little
[lyx.git] / src / frontends / xforms / FormParagraph.h
index fffb70b1d479225ceec484b2e74f024c899c60b8..224b4b4a9ea871f94e5de561e998b0d307152e64 100644 (file)
 
 #include "FormBaseDeprecated.h"
 
-class LyXParagraph;
-struct FD_form_tabbed_paragraph;
-struct FD_form_paragraph_general;
-struct FD_form_paragraph_extra;
+class Paragraph;
+struct FD_form_paragraph;
 
 /** This class provides an XForms implementation of the FormParagraph dialog.
  *           @author Jürgen Vigna
@@ -54,32 +52,24 @@ private:
        ///
        void changedParagraph();
        ///
-       LyXParagraph const * getCurrentParagraph() const;
+       Paragraph const * getCurrentParagraph() const;
        ///
        virtual FL_FORM * form() const;
        
-       ///
-       void general_update();
-       ///
-       void general_apply();
+       /// Fdesign generated method
+       FD_form_paragraph * build_paragraph();
 
-       /// Fdesign generated methods
-       FD_form_tabbed_paragraph * build_tabbed_paragraph();
-       ///
-       FD_form_paragraph_general * build_paragraph_general();
-       ///
-       FD_form_paragraph_extra * build_paragraph_extra();
        /// Real GUI implementation.
-       boost::scoped_ptr<FD_form_tabbed_paragraph> dialog_;
-       ///
-       boost::scoped_ptr<FD_form_paragraph_general> general_;
+       boost::scoped_ptr<FD_form_paragraph> dialog_;
+
        /// The ButtonController
        ButtonController<NoRepeatedApplyReadOnlyPolicy, xformsBC> bc_;
+
        /// Changed Paragraph connection.
        SigC::Connection cp_;
 
-       /// The current LyXParagraph
-       LyXParagraph const * par_;
+       /// The current Paragraph
+       Paragraph const * par_;
 };