]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiBox.h
Use <cstdint> instead of <boost/cstdint.hpp>
[lyx.git] / src / frontends / qt4 / GuiBox.h
index 813454a4d493598700c3f4e0fc79b5623e7bc5ae..4c32dcf8fa81b42d189fa3a818091c586c3a444c 100644 (file)
 #ifndef GUIBOX_H
 #define GUIBOX_H
 
-#include "GuiDialog.h"
+#include "InsetParamsWidget.h"
 #include "ui_BoxUi.h"
-#include "insets/InsetBox.h"
-
+#include "Font.h"
 
 namespace lyx {
 namespace frontend {
 
-class GuiBox : public GuiDialog, public Ui::BoxUi
+class GuiBox : public InsetParamsWidget, public Ui::BoxUi
 {
        Q_OBJECT
 
 public:
-       GuiBox(GuiView & lv);
+       GuiBox(QWidget * parent = 0);
 
 private Q_SLOTS:
-       void change_adaptor();
-       void innerBoxChanged(QString const &);
-       void typeChanged(int);
-       void restoreClicked();
-       void pagebreakClicked();
+       void on_innerBoxCO_activated(int);
+       void on_typeCO_activated(int);
+       void on_frameColorCO_currentIndexChanged(int);
+       void initDialog();
+       void on_widthCB_stateChanged(int state);
+       void on_heightCB_stateChanged(int state);
+       void on_pagebreakCB_stateChanged();
 
 private:
+       /// \name DialogView inherited methods
+       //@{
+       InsetCode insetCode() const { return BOX_CODE; }
+       FuncCode creationCode() const { return LFUN_BOX_INSERT; }
+       QString dialogTitle() const { return qt_("Box Settings"); }
+       void paramsToDialog(Inset const *);
+       docstring dialogToParams() const;
+       bool checkWidgets(bool readonly) const;
+       //@}
+
+       /// Fill the color combos
+       void fillComboColor(QComboBox * combo, bool const is_none);
        /// add and remove special lengths
        void setSpecial(bool ibox);
        /// only show valid inner box items
-       void setInnerType(bool frameless, int i);
-
-       /// Apply changes
-       void applyView();
-       /// update
-       void updateContents();
-
-       ///
-       bool initialiseParams(std::string const & data);
-       ///
-       void clearParams();
-       ///
-       void dispatchParams();
-       ///
-       bool isBufferDependent() const { return true; }
+       void setInnerType(bool frameless, QString const & type);
 
-       ///
        QStringList ids_;
        ///
        QStringList gui_names_;
@@ -63,9 +61,8 @@ private:
        QStringList ids_spec_;
        ///
        QStringList gui_names_spec_;
-
        ///
-       InsetBoxParams params_;
+       QList<ColorCode> color_codes_;
 };
 
 } // namespace frontend