]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/FloatPlacement.h
Enable OK/Apply buttons when resetting to class defaults.
[lyx.git] / src / frontends / qt4 / FloatPlacement.h
index be54db36bde6c66ded86abfc643c95a57196b567..c5f8dd7ef1a508f2f5618baa0607634e400bd73b 100644 (file)
 #ifndef FLOATPLACEMENT_H
 #define FLOATPLACEMENT_H
 
+#include "InsetParamsWidget.h"
 #include "ui_FloatPlacementUi.h"
 
-#include <QWidget>
-
 #include "support/docstring.h"
 
 namespace lyx {
 
+class FloatList;
 class Inset;
 class InsetFloatParams;
 
-class FloatPlacement : public QWidget, public Ui::FloatPlacementUi {
+namespace frontend {
+
+class FloatPlacement : public InsetParamsWidget, public Ui::FloatPlacementUi {
        Q_OBJECT
 public:
-       FloatPlacement(QWidget * parent = 0);
+       FloatPlacement(bool show_options = false, QWidget * parent = 0);
 
-       ///
+       /// \name DialogView inherited methods
+       //@{
+       InsetCode insetCode() const { return FLOAT_CODE; }
+       FuncCode creationCode() const { return LFUN_FLOAT_INSERT; }
+       QString dialogTitle() const { return qt_("Float Settings"); }
        void paramsToDialog(Inset const *);
-       ///
        docstring dialogToParams() const;
+       bool checkWidgets(bool readonly) const;
+       //@}
        ///
        void useWide();
        ///
        void useSideways();
-
+       ///
        void set(std::string const & placement);
-       void checkAllowed();
-
-       std::string const get(bool & wide, bool & sideways) const;
+       ///
        std::string const get() const;
 
-public Q_SLOTS:
-       void tbhpClicked();
+private Q_SLOTS:
+       void on_defaultsCB_stateChanged(int state);
        void changedSlot();
-       void on_spanCB_clicked();
-       void on_heredefinitelyCB_clicked();
-       void on_sidewaysCB_clicked();
-
-Q_SIGNALS:
-       void changed();
 
 private:
+       ///
+       void checkAllowed() const;
+       ///
+       std::string const get(bool & wide, bool & sideways) const;
+       ///
+       void initFloatTypeCO(FloatList const & floats);
+       ///
+       bool possiblePlacement(char const & p) const;
+
        /// one of figure or table?
        bool standardfloat_;
-
+       ///
+       std::string allowed_placement_;
+       ///
+       bool allows_wide_;
+       ///
+       bool allows_sideways_;
+       ///
+       FloatList const * float_list_;
 };
 
+} // namespace frontend
 } // namespace lyx
 
 #endif // FLOATPLACEMENT_H