]> 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 6107cb9b2ba3cbdf447ce78b2ea67dd0497f0142..c5f8dd7ef1a508f2f5618baa0607634e400bd73b 100644 (file)
@@ -1,6 +1,6 @@
 // -*- C++ -*-
 /**
- * \file floatplacement.h
+ * \file FloatPlacement.h
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
  * Full author contact details are available in file CREDITS.
  */
 
-#ifndef QT_FLOATPLACEMENT_H
-#define QT_FLOATPLACEMENT_H
+#ifndef FLOATPLACEMENT_H
+#define FLOATPLACEMENT_H
 
-#include "ui/FloatPlacementUi.h"
-#include <QWidget>
+#include "InsetParamsWidget.h"
+#include "ui_FloatPlacementUi.h"
 
-#include <string>
+#include "support/docstring.h"
 
+namespace lyx {
 
-namespace lyx { class InsetFloatParams; }
+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(lyx::InsetFloatParams const & params);
+       ///
        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
 
-//} // namespace lyx
-
-#endif
+#endif // FLOATPLACEMENT_H