]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/GuiDocument.h
* fix spelling in comments to please John.
[lyx.git] / src / frontends / qt4 / GuiDocument.h
index 9cd42926a1e26d1abe2994387e0448477991a8df..920e95145d102319956b8c1ddc407bae1b3b3c5e 100644 (file)
 #include "BulletsModule.h"
 #include "GuiDialog.h"
 #include "GuiIdListModel.h"
-#include "GuiSelectionManager.h"
 
 #include "ui_DocumentUi.h"
 #include "ui_FontUi.h"
 #include "ui_TextLayoutUi.h"
+#include "ui_MasterChildUi.h"
 #include "ui_MathsUi.h"
 #include "ui_LaTeXUi.h"
 #include "ui_PageLayoutUi.h"
 #include "ui_MarginsUi.h"
 #include "ui_PreambleUi.h"
 #include "ui_PDFSupportUi.h"
+#include "ui_ModulesUi.h"
+#include "ui_OutputUi.h"
+#include "ui_ListingsSettingsUi.h"
 
+#include <list>
 #include <map>
-#include <vector>
-
-class FloatPlacement;
 
 namespace lyx {
 
 class BufferParams;
+class FloatPlacement;
+class LayoutModuleList;
 class TextClass;
 
 namespace frontend {
 
 class GuiBranches;
+class GuiIndices;
+class ModuleSelectionManager;
 class PreambleModule;
 
-///
-QModelIndex getSelectedIndex(QListView * lv);
-
 ///
 typedef void const * BufferId;
 
@@ -63,84 +65,60 @@ public:
 };
 
 
-/// SelectionManager for use with modules
-class ModuleSelMan : public GuiSelectionManager 
-{
-public:
-       ModuleSelMan(
-               QListView * availableLV, 
-               QListView * selectedLV,
-               QPushButton * addPB, 
-               QPushButton * delPB, 
-               QPushButton * upPB, 
-               QPushButton * downPB,
-               GuiIdListModel * availableModel,
-               GuiIdListModel * selectedModel);
-private:
-       ///
-       virtual void updateAddPB();
-       ///
-       virtual void updateUpPB();
-       ///
-       virtual void updateDownPB();
-       ///
-       virtual void updateDelPB();
-       /// returns availableModel as a GuiIdListModel
-       GuiIdListModel * getAvailableModel() 
-       {
-               return dynamic_cast<GuiIdListModel *>(availableModel);
-       };
-       /// returns selectedModel as a GuiIdListModel
-       GuiIdListModel * getSelectedModel() 
-       {
-               return dynamic_cast<GuiIdListModel *>(selectedModel);
-       };
-};
-
-
 class GuiDocument : public GuiDialog, public Ui::DocumentUi
 {
        Q_OBJECT
 public:
        GuiDocument(GuiView & lv);
 
-       void updateParams(BufferParams const & params);
-       void apply(BufferParams & params);
-
+       void paramsToDialog();
        void updateFontsize(std::string const &, std::string const &);
+       void updateFontlist();
+       void updateDefaultFormat();
        void updatePagestyle(std::string const &, std::string const &);
+       bool isChildIncluded(std::string const &);
 
        void showPreamble();
-       /// validate listings parameters and return an error message, if any
-       docstring validate_listings_params();
+       ///
+       BufferParams const & params() const { return bp_; }
 
-public Q_SLOTS:
+private Q_SLOTS:
        void updateNumbering();
        void change_adaptor();
-       void set_listings_msg();
+       void includeonlyClicked(QTreeWidgetItem * item, int);
+       void setListingsMessage();
        void saveDefaultClicked();
        void useDefaultsClicked();
-
-private Q_SLOTS:
-       void updateParams();
        void setLSpacing(int);
        void setMargins(bool);
-       void setCustomPapersize(int);
+       void papersizeChanged(int);
        void setColSep();
        void setCustomMargins(bool);
+       void fontencChanged(int);
        void romanChanged(int);
        void sansChanged(int);
        void ttChanged(int);
+       void setIndent(int);
+       void enableIndent(bool);
        void setSkip(int);
        void enableSkip(bool);
        void portraitChanged();
        void browseLayout();
        void browseMaster();
        void classChanged();
+       void bibtexChanged(int);
        void updateModuleInfo();
-
+       void modulesChanged();
+       void changeBackgroundColor();
+       void deleteBackgroundColor();
+       void xetexChanged(bool);
+       void branchesRename(docstring const &, docstring const &);
 private:
+       /// validate listings parameters and return an error message, if any
+       QString validateListingsParameters();
+
        UiWidget<Ui::TextLayoutUi> *textLayoutModule;
+       UiWidget<Ui::MasterChildUi> *masterChildModule;
        UiWidget<Ui::FontUi> *fontModule;
        UiWidget<Ui::PageLayoutUi> *pageLayoutModule;
        UiWidget<Ui::MarginsUi> *marginsModule;
@@ -150,30 +128,34 @@ private:
        UiWidget<Ui::MathsUi> *mathsModule;
        UiWidget<Ui::LaTeXUi> *latexModule;
        UiWidget<Ui::PDFSupportUi> *pdfSupportModule;
-       PreambleModule *preambleModule;
+       UiWidget<Ui::ModulesUi> *modulesModule;
+       UiWidget<Ui::OutputUi> *outputModule;
+       UiWidget<Ui::ListingsSettingsUi> *listingsModule;
+       PreambleModule * preambleModule;
        
-       GuiBranches *branchesModule;
+       GuiBranches * branchesModule;
+       GuiIndices * indicesModule;
 
        BulletsModule * bulletsModule;
        FloatPlacement * floatModule;
 
-       GuiSelectionManager * selectionManager;
+       ModuleSelectionManager * selectionManager;
 
        /// Available modules
        GuiIdListModel * availableModel() { return &modules_av_model_; }
        /// Selected modules
        GuiIdListModel * selectedModel() { return &modules_sel_model_; }
-private:
+
        /// Apply changes
        void applyView();
        /// update
        void updateContents();
-       /// force content update
-       void forceUpdate();
        ///
        void updateAvailableModules();
        ///
        void updateSelectedModules();
+       ///
+       void updateIncludeonlys();
        /// save as default template
        void saveDocDefault();
        /// reset to default params
@@ -189,7 +171,6 @@ private:
        /// current buffer
        BufferId current_id_;
 
-protected:
        /// return false if validate_listings_params returns error
        bool isValid();
 
@@ -204,6 +185,8 @@ protected:
        ///
        void dispatchParams();
        ///
+       void modulesToParams(BufferParams &);
+       ///
        bool isBufferDependent() const { return true; }
        /// always true since we don't manipulate document contents
        bool canApply() const { return true; }
@@ -212,8 +195,6 @@ protected:
        ///
        BufferParams & params() { return bp_; }
        ///
-       BufferParams const & params() const { return bp_; }
-       ///
        BufferId id() const;
        ///
        struct modInfoStruct {
@@ -222,9 +203,14 @@ protected:
                QString description;
        };
        /// List of available modules
-       std::vector<modInfoStruct> const & getModuleInfo();
+       std::list<modInfoStruct> const & getModuleInfo();
        /// Modules in use in current buffer
-       std::vector<modInfoStruct> const getSelectedModules();
+       std::list<modInfoStruct> const getSelectedModules();
+       ///
+       std::list<modInfoStruct> const getProvidedModules();
+       ///
+       std::list<modInfoStruct> const 
+                       makeModuleInfo(LayoutModuleList const & mods);
        ///
        void setLanguage() const;
        ///
@@ -237,13 +223,23 @@ protected:
        bool providesSC(std::string const & font) const;
        /// does this font provide size adjustment?
        bool providesScale(std::string const & font) const;
+       ///
+       void executeBranchRenaming() const;
+       ///
+       void setCustomPapersize(bool custom);
 private:
        ///
        void loadModuleInfo();
        ///
+       void updateUnknownBranches();
+       ///
        BufferParams bp_;
        /// List of names of available modules
-       std::vector<modInfoStruct> moduleNames_;
+       std::list<modInfoStruct> moduleNames_;
+       ///
+       std::map<docstring, docstring> changedBranches_;
+       ///
+       std::list<std::string> includeonlys_;
 };