]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiLabel.h
Make a string translatable
[lyx.git] / src / frontends / qt4 / GuiLabel.h
index bdca993f1af6731d8b2fff97d45260d044728297..261f145a5e32b24932eed16cf5b18058249c2f8e 100644 (file)
 #ifndef GUILABEL_H
 #define GUILABEL_H
 
-#include "GuiCommand.h"
 #include "ui_LabelUi.h"
 
+#include "InsetParamsWidget.h"
+
 namespace lyx {
 namespace frontend {
 
-class GuiLabel : public GuiCommand, public Ui::LabelUi
+class GuiLabel : public InsetParamsWidget, public Ui::LabelUi
 {
        Q_OBJECT
 
 public:
-       GuiLabel(GuiView & lv);
-
-private Q_SLOTS:
-       void change_adaptor();
-       void reject();
+       GuiLabel(QWidget * parent = 0);
 
 private:
-       ///
-       bool isValid();
-       /// Apply changes
-       void applyView();
-       /// update
-       void updateContents();
+       /// \name InsetParamsWidget inherited methods
+       //@{
+       InsetCode insetCode() const { return LABEL_CODE; }
+       FuncCode creationCode() const { return LFUN_INSET_INSERT; }
+       QString dialogTitle() const { return qt_("Label Settings"); }
+       void paramsToDialog(Inset const *);
+       docstring dialogToParams() const;
+       bool checkWidgets(bool readonly) const;
+       bool initialiseParams(std::string const &);
+       //@}
 };
 
 } // namespace frontend