]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormParagraph.h
fix crash with "save as"
[lyx.git] / src / frontends / xforms / FormParagraph.h
index a509aa3d9153c8534b19a60319a7913f8870afff..c6caf228b1ac7fa9147e3a355eff8513ada3137a 100644 (file)
@@ -1,10 +1,12 @@
 // -*- C++ -*-
 /**
  * \file FormParagraph.h
- * Copyright 2001 The LyX Team.
- * See the file COPYING.
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Jürgen Vigna, jug@sad.it
+ * \author Jürgen Vigna
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef FORM_PARAGRAPH_H
@@ -15,6 +17,7 @@
 #endif
 
 #include "FormBase.h"
+#include "RadioButtonGroup.h"
 
 struct FD_paragraph;
 class ControlParagraph;
@@ -25,7 +28,7 @@ class FormParagraph
        : public FormCB<ControlParagraph, FormDB<FD_paragraph> > {
 public:
        ///
-       FormParagraph(ControlParagraph &);
+       FormParagraph();
 private:
        /// Build the dialog
        virtual void build();
@@ -33,9 +36,12 @@ private:
        virtual void apply();
        /// Update the dialog
        virtual void update();
-       
+
        /// Filter the inputs on callback from xforms
        virtual ButtonPolicy::SMInput input(FL_OBJECT *, long);
+
+       /// alignment radio buttons
+       RadioButtonGroup alignment_;
 };
 
 #endif