X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2Fqt4%2FGuiDocument.h;h=0bfbc1692e9512cd28562f49892729f0f30bc981;hb=be5965ae9183ebd17e71b74d4721520d85be6e6c;hp=ac9dda04b07417b532d683a9a77ff05e60262b85;hpb=5faad9ca68779c2a9f03a6ad0986ec1d7be6b5ec;p=lyx.git diff --git a/src/frontends/qt4/GuiDocument.h b/src/frontends/qt4/GuiDocument.h index ac9dda04b0..0bfbc1692e 100644 --- a/src/frontends/qt4/GuiDocument.h +++ b/src/frontends/qt4/GuiDocument.h @@ -13,52 +13,50 @@ #ifndef GUIDOCUMENT_H #define GUIDOCUMENT_H -#include "GuiDialog.h" -#include "BulletsModule.h" -#include "GuiSelectionManager.h" -#include "BufferParams.h" +#include -#include "support/types.h" +#include "BufferParams.h" +#include "BulletsModule.h" +#include "GuiDialog.h" +#include "GuiIdListModel.h" +#include "ui_BiblioUi.h" +#include "ui_ColorUi.h" #include "ui_DocumentUi.h" -#include "ui_EmbeddedFilesUi.h" #include "ui_FontUi.h" -#include "ui_TextLayoutUi.h" -#include "ui_MathsUi.h" -#include "ui_LaTeXUi.h" -#include "ui_PageLayoutUi.h" #include "ui_LanguageUi.h" -#include "ui_BiblioUi.h" -#include "ui_NumberingUi.h" +#include "ui_LaTeXUi.h" +#include "ui_ListingsSettingsUi.h" +#include "ui_LocalLayoutUi.h" #include "ui_MarginsUi.h" -#include "ui_PreambleUi.h" +#include "ui_MasterChildUi.h" +#include "ui_MathsUi.h" +#include "ui_ModulesUi.h" +#include "ui_NumberingUi.h" +#include "ui_OutputUi.h" +#include "ui_PageLayoutUi.h" #include "ui_PDFSupportUi.h" - -#include -#include - -class FloatPlacement; +#include "ui_PreambleUi.h" +#include "ui_TextLayoutUi.h" namespace lyx { class BufferParams; +class LayoutModuleList; class TextClass; namespace frontend { +class FloatPlacement; class GuiBranches; +class GuiIndices; +class ModuleSelectionManager; class PreambleModule; +class LocalLayout; /// typedef void const * BufferId; -#include -#include -#include - -#include -#include - template class UiWidget : public QWidget, public UI { @@ -67,119 +65,128 @@ public: }; -class ModuleSelMan : public GuiSelectionManager -{ -public: - ModuleSelMan( - QListView * availableLV, - QListView * selectedLV, - QPushButton * addPB, - QPushButton * delPB, - QPushButton * upPB, - QPushButton * downPB, - QStringListModel * availableModel, - QStringListModel * selectedModel); -private: - /// - virtual void updateAddPB(); - /// - virtual void updateUpPB(); - /// - virtual void updateDownPB(); - /// - virtual void updateDelPB(); -}; - - 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 updateEngineType(std::string const &, CiteEngineType const &); 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 setMargins(); + 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 languagePackageChanged(int); + void biblioChanged(); + void bibtexChanged(int); + void setAuthorYear(bool); + void setNumerical(bool); void updateModuleInfo(); - void updateEmbeddedFileList(); - + void modulesChanged(); + void changeBackgroundColor(); + void deleteBackgroundColor(); + void changeFontColor(); + void deleteFontColor(); + void changeNoteFontColor(); + void deleteNoteFontColor(); + void changeBoxBackgroundColor(); + void deleteBoxBackgroundColor(); + void languageChanged(int); + void osFontsChanged(bool); + void mathFontChanged(int); + void branchesRename(docstring const &, docstring const &); private: - void closeEvent(QCloseEvent * e); + /// validate listings parameters and return an error message, if any + QString validateListingsParameters(); -private: UiWidget *textLayoutModule; + UiWidget *masterChildModule; UiWidget *fontModule; UiWidget *pageLayoutModule; UiWidget *marginsModule; UiWidget *langModule; + UiWidget *colorModule; UiWidget *numberingModule; UiWidget *biblioModule; UiWidget *mathsModule; UiWidget *latexModule; UiWidget *pdfSupportModule; - UiWidget *embeddedFilesModule; - PreambleModule *preambleModule; - - GuiBranches *branchesModule; + UiWidget *modulesModule; + UiWidget *outputModule; + UiWidget *listingsModule; + PreambleModule * preambleModule; + LocalLayout * localLayout; + + GuiBranches * branchesModule; + GuiIndices * indicesModule; BulletsModule * bulletsModule; FloatPlacement * floatModule; - GuiSelectionManager * selectionManager; - - // FIXME - std::vector lang_; + ModuleSelectionManager * selectionManager; /// Available modules - QStringListModel * availableModel() { return &available_model_; } + GuiIdListModel * availableModel() { return &modules_av_model_; } /// Selected modules - QStringListModel * selectedModel() { return &selected_model_; } -private: + GuiIdListModel * selectedModel() { return &modules_sel_model_; } + /// Apply changes void applyView(); /// update void updateContents(); + /// + void updateAvailableModules(); + /// + void updateSelectedModules(); + /// + void updateIncludeonlys(); /// save as default template void saveDocDefault(); /// reset to default params void useClassDefaults(); + /// + void setLayoutComboByIDString(std::string const & idString); + /// available modules - QStringListModel available_model_; + GuiIdListModel modules_av_model_; /// selected modules - QStringListModel selected_model_; + GuiIdListModel modules_sel_model_; + /// current buffer + BufferId current_id_; -protected: /// return false if validate_listings_params returns error bool isValid(); - /// font family names for BufferParams::fontsDefaultFamily + /// font family names for BufferParams::fonts_default_family static char const * const fontfamilies[5]; /// GUI names corresponding fontfamilies static char const * fontfamilies_gui[5]; @@ -190,46 +197,78 @@ 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; } /// - TextClass const & textClass() const; + DocumentClass const & documentClass() const; /// BufferParams & params() { return bp_; } /// - BufferParams const & params() const { return bp_; } - /// BufferId id() const; + /// + struct modInfoStruct { + QString name; + std::string id; + QString description; + }; /// List of available modules - std::vector const & getModuleNames(); + std::list const & getModuleInfo(); /// Modules in use in current buffer - std::vector const & getSelectedModules(); + std::list const getSelectedModules(); + /// + std::list const getProvidedModules(); + /// + std::list const + makeModuleInfo(LayoutModuleList const & mods); /// void setLanguage() const; /// void saveAsDefault() const; - /// - bool isFontAvailable(std::string const & font) const; /// does this font provide Old Style figures? - bool providesOSF(std::string const & font) const; + bool providesOSF(QString const & font) const; /// does this font provide true Small Caps? - bool providesSC(std::string const & font) const; + bool providesSC(QString const & font) const; /// does this font provide size adjustment? - bool providesScale(std::string const & font) const; + bool providesScale(QString const & font) const; + /// does this font provide an alternative without math? + bool providesNoMath(QString const & font) const; + /// + void executeBranchRenaming() const; + /// + void setCustomPapersize(bool custom); private: /// - void loadModuleNames(); + void loadModuleInfo(); + /// + void updateUnknownBranches(); + /// + void updateTexFonts(); + /// + void updateMathFonts(QString const & rm); + /// + void updateFontOptions(); + /// + bool ot1() const; + /// + bool completeFontset() const; + /// + bool noMathFont() const; /// BufferParams bp_; /// List of names of available modules - std::vector moduleNames_; + std::list moduleNames_; + /// + std::map changedBranches_; + /// + std::list includeonlys_; + /// + bool biblioChanged_; }; -typedef void const * BufferId; - - class PreambleModule : public UiWidget { Q_OBJECT @@ -253,7 +292,34 @@ private: }; +class LocalLayout : public UiWidget +{ + Q_OBJECT +public: + LocalLayout(); + void update(BufferParams const & params, BufferId id); + void apply(BufferParams & params); + bool isValid() const { return validated_; } + +Q_SIGNALS: + /// signal that something's changed in the Widget. + void changed(); + +private: + void validate(); + void convert(); +private Q_SLOTS: + void textChanged(); + void validatePressed(); + void convertPressed(); + +private: + BufferId current_id_; + bool validated_; +}; + + } // namespace frontend } // namespace lyx -#endif // QDOCUMENT_H +#endif // GUIDOCUMENT_H