]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiTabular.h
Fix reloading of local layout file (bug #11120)
[lyx.git] / src / frontends / qt4 / GuiTabular.h
index 9b31a94c79d4266e02a579cd67c8833b6b48cf65..2cba4810aa461073acc2fd8e5d200e70a9925b57 100644 (file)
@@ -33,16 +33,23 @@ private Q_SLOTS:
        void checkEnabled();
        void borderSet_clicked();
        void borderUnset_clicked();
+       void on_topspaceCO_activated(int index);
+       void on_bottomspaceCO_activated(int index);
+       void on_interlinespaceCO_activated(int index);
 
 private:
        /// \name InsetParamsWidget inherited methods
        //@{
        InsetCode insetCode() const { return TABULAR_CODE; }
        FuncCode creationCode() const { return LFUN_TABULAR_INSERT; }
+       QString dialogTitle() const { return qt_("Tabular Settings"); }
        void paramsToDialog(Inset const *);
        docstring dialogToParams() const;
+       bool checkWidgets(bool readonly) const;
        //@}
 
+       ///
+       void enableWidgets() const;
        ///
        void setHAlign(std::string & param_str) const;
        ///
@@ -53,6 +60,13 @@ private:
        void setWidthAndAlignment();
        ///
        bool funcEnabled(Tabular::Feature f) const;
+       ///
+       GuiSetBorder::BorderState borderState(GuiSetBorder::BorderState bs,
+                                             bool const line);
+       ///
+       bool firstheader_suppressable_;
+       ///
+       bool lastfooter_suppressable_;
 };
 
 } // namespace frontend