]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiDocument.h
Avoid extra space in tooltips
[lyx.git] / src / frontends / qt4 / GuiDocument.h
index 7527a59edc9cdf857c82ad856993ae2816e70c53..e4f32e25707e90506c69f9c4cdf267a51ce7cfbb 100644 (file)
@@ -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);
@@ -110,7 +116,7 @@ private Q_SLOTS:
        void setSkip(int);
        void enableSkip(bool);
        void allowMathIndent();
-       void setMathIndent(int);
+       void enableMathIndent(int);
        void browseLayout();
        void browseMaster();
        void classChanged();
@@ -256,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;
@@ -290,6 +296,8 @@ private:
        ///
        bool isBiblatex() const;
        ///
+       void checkPossibleCiteEngines();
+       ///
        BufferParams bp_;
        /// List of names of available modules
        std::list<modInfoStruct> moduleNames_;
@@ -301,6 +309,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_;
 };
 
 
@@ -320,10 +332,14 @@ private:
        void closeEvent(QCloseEvent *);
        void on_preambleTE_textChanged() { changed(); }
 
-private:
        typedef std::map<BufferId, std::pair<int,int> > Coords;
        Coords preamble_coords_;
        BufferId current_id_;
+
+private Q_SLOTS:
+       ///
+       void checkFindButton();
+       void findText();
 };