]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiDocument.h
Revert "Mark some intentional fall-throughs (in a way understandable to gcc)"
[lyx.git] / src / frontends / qt4 / GuiDocument.h
index 593a67a3d7c2eb496921e71ee3565df067f0d3d7..be1b7e489f5f9eb392f0f889803940bc53fc265a 100644 (file)
@@ -61,7 +61,7 @@ template<class UI>
 class UiWidget : public QWidget, public UI
 {
 public:
-       UiWidget(QWidget * parent = 0) : QWidget(parent) { UI::setupUi(this); }
+       UiWidget(QWidget * parent) : QWidget(parent) { UI::setupUi(this); }
 };
 
 
@@ -86,12 +86,18 @@ public:
 
 public Q_SLOTS:
        void onBufferViewChanged();//override
+       // OK button clicked
+       void slotOK();
+       // Apply button clicked
+       void slotApply();
 
 private Q_SLOTS:
        void updateNumbering();
        void change_adaptor();
+       void shellescapeChanged();
        void includeonlyClicked(QTreeWidgetItem * item, int);
        void setListingsMessage();
+       void listingsPackageChanged(int);
        void saveDefaultClicked();
        void useDefaultsClicked();
        void setLSpacing(int);
@@ -109,6 +115,8 @@ private Q_SLOTS:
        void enableIndent(bool);
        void setSkip(int);
        void enableSkip(bool);
+       void allowMathIndent();
+       void enableMathIndent(int);
        void browseLayout();
        void browseMaster();
        void classChanged();
@@ -254,7 +262,7 @@ private:
        bool providesOSF(QString const & font) const;
        /// does this font provide true Small Caps?
        bool providesSC(QString const & font) const;
-       /** does this font provide OSF and Small Caps only via 
+       /** does this font provide OSF and Small Caps only via
         * a single, undifferentiated expert option?
         */
        bool hasMonolithicExpertSet(QString const & font) const;
@@ -299,6 +307,10 @@ private:
        bool biblioChanged_;
        /// Track if a non-module document param changed
        bool nonModuleChanged_;
+       /// Track if used modules changed
+       bool modulesChanged_;
+       /// Track if the shellescape param changed
+       bool shellescapeChanged_;
 };
 
 
@@ -306,7 +318,7 @@ class PreambleModule : public UiWidget<Ui::PreambleUi>
 {
        Q_OBJECT
 public:
-       PreambleModule();
+       PreambleModule(QWidget * parent);
        void update(BufferParams const & params, BufferId id);
        void apply(BufferParams & params);
 
@@ -329,7 +341,7 @@ class LocalLayout : public UiWidget<Ui::LocalLayoutUi>
 {
        Q_OBJECT
 public:
-       LocalLayout();
+       LocalLayout(QWidget * parent);
        void update(BufferParams const & params, BufferId id);
        void apply(BufferParams & params);
        bool isValid() const { return validated_; }
@@ -357,6 +369,8 @@ class FontModule : public UiWidget<Ui::FontUi>
 {
        Q_OBJECT
 public:
+       FontModule(QWidget * parent) : UiWidget<Ui::FontUi>(parent),
+          font_sf_scale(100), font_tt_scale(100) {}
        /// The roman font currently not selected by osFontsCB->isChecked()
        QString font_roman;
        /// The sans font currently not selected by osFontsCB->isChecked()