]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiDocument.h
Improve wording (#10670)
[lyx.git] / src / frontends / qt4 / GuiDocument.h
index 4206a9bf21ed07fec2257d8b6df9f1b280e3f5b4..b5e09d3ec4cea0fecdcc16cdce6438a4992977e7 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); }
 };
 
 
@@ -75,6 +75,8 @@ public:
        void updateFontsize(std::string const &, std::string const &);
        void updateFontlist();
        void updateDefaultFormat();
+       void updateCiteStyles(std::vector<std::string> const &,
+                             CiteEngineType const & sel = ENGINE_TYPE_AUTHORYEAR);
        void updateEngineType(std::string const &, CiteEngineType const &);
        void updatePagestyle(std::string const &, std::string const &);
        bool isChildIncluded(std::string const &);
@@ -107,15 +109,24 @@ private Q_SLOTS:
        void enableIndent(bool);
        void setSkip(int);
        void enableSkip(bool);
+       void allowMathIndent();
+       void enableMathIndent(int);
        void browseLayout();
        void browseMaster();
        void classChanged();
        void classChanged_adaptor();
        void languagePackageChanged(int);
        void biblioChanged();
+       void rescanBibFiles();
+       void resetDefaultBibfile(std::string const & which = std::string());
+       void resetDefaultBbxBibfile();
+       void resetDefaultCbxBibfile();
+       void citeEngineChanged(int);
+       void citeStyleChanged();
        void bibtexChanged(int);
-       void setAuthorYear(bool);
-       void setNumerical(bool);
+       void updateResetDefaultBiblio();
+       void matchBiblatexStyles();
+       void updateEngineDependends();
        void updateModuleInfo();
        void modulesChanged();
        void changeBackgroundColor();
@@ -178,6 +189,9 @@ private:
        void updateSelectedModules();
        ///
        void updateIncludeonlys();
+       ///
+       void updateDefaultBiblio(std::string const & style,
+                                std::string const & which = std::string());
        /// save as default template
        void saveDocDefault();
        /// reset to default params
@@ -274,6 +288,8 @@ private:
        ///
        void allPackages(int);
        ///
+       bool isBiblatex() const;
+       ///
        BufferParams bp_;
        /// List of names of available modules
        std::list<modInfoStruct> moduleNames_;
@@ -292,7 +308,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);
 
@@ -315,7 +331,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_; }
@@ -343,6 +359,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()