mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
9d82588e3e
size of the dialog. http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg145035.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26953 a592a061-630c-0410-9148-cb99ea01b6c8
235 lines
5.4 KiB
C++
235 lines
5.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiDocument.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
* \author Richard Heck (modules)
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUIDOCUMENT_H
|
|
#define GUIDOCUMENT_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "BufferParams.h"
|
|
#include "BulletsModule.h"
|
|
#include "GuiDialog.h"
|
|
#include "GuiIdListModel.h"
|
|
|
|
#include "ui_DocumentUi.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_MarginsUi.h"
|
|
#include "ui_PreambleUi.h"
|
|
#include "ui_PDFSupportUi.h"
|
|
#include "ui_ModulesUi.h"
|
|
|
|
#include <list>
|
|
#include <map>
|
|
|
|
namespace lyx {
|
|
|
|
class BufferParams;
|
|
class FloatPlacement;
|
|
class TextClass;
|
|
|
|
namespace frontend {
|
|
|
|
class GuiBranches;
|
|
class ModuleSelectionManager;
|
|
class PreambleModule;
|
|
|
|
///
|
|
typedef void const * BufferId;
|
|
|
|
template<class UI>
|
|
class UiWidget : public QWidget, public UI
|
|
{
|
|
public:
|
|
UiWidget(QWidget * parent = 0) : QWidget(parent) { UI::setupUi(this); }
|
|
};
|
|
|
|
|
|
class GuiDocument : public GuiDialog, public Ui::DocumentUi
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GuiDocument(GuiView & lv);
|
|
|
|
void paramsToDialog();
|
|
void apply(BufferParams & params);
|
|
|
|
void updateFontsize(std::string const &, std::string const &);
|
|
void updatePagestyle(std::string const &, std::string const &);
|
|
|
|
void showPreamble();
|
|
|
|
private Q_SLOTS:
|
|
void updateNumbering();
|
|
void change_adaptor();
|
|
void setListingsMessage();
|
|
void saveDefaultClicked();
|
|
void useDefaultsClicked();
|
|
void setLSpacing(int);
|
|
void setMargins(bool);
|
|
void setCustomPapersize(int);
|
|
void setColSep();
|
|
void setCustomMargins(bool);
|
|
void romanChanged(int);
|
|
void sansChanged(int);
|
|
void ttChanged(int);
|
|
void setSkip(int);
|
|
void enableSkip(bool);
|
|
void portraitChanged();
|
|
void browseLayout();
|
|
void browseMaster();
|
|
void classChanged();
|
|
void updateModuleInfo();
|
|
|
|
private:
|
|
/// validate listings parameters and return an error message, if any
|
|
QString validateListingsParameters();
|
|
|
|
UiWidget<Ui::TextLayoutUi> *textLayoutModule;
|
|
UiWidget<Ui::FontUi> *fontModule;
|
|
UiWidget<Ui::PageLayoutUi> *pageLayoutModule;
|
|
UiWidget<Ui::MarginsUi> *marginsModule;
|
|
UiWidget<Ui::LanguageUi> *langModule;
|
|
UiWidget<Ui::NumberingUi> *numberingModule;
|
|
UiWidget<Ui::BiblioUi> *biblioModule;
|
|
UiWidget<Ui::MathsUi> *mathsModule;
|
|
UiWidget<Ui::LaTeXUi> *latexModule;
|
|
UiWidget<Ui::PDFSupportUi> *pdfSupportModule;
|
|
UiWidget<Ui::ModulesUi> *modulesModule;
|
|
PreambleModule *preambleModule;
|
|
|
|
GuiBranches *branchesModule;
|
|
|
|
BulletsModule * bulletsModule;
|
|
FloatPlacement * floatModule;
|
|
|
|
ModuleSelectionManager * selectionManager;
|
|
|
|
/// Available modules
|
|
GuiIdListModel * availableModel() { return &modules_av_model_; }
|
|
/// Selected modules
|
|
GuiIdListModel * selectedModel() { return &modules_sel_model_; }
|
|
|
|
/// Apply changes
|
|
void applyView();
|
|
/// update
|
|
void updateContents();
|
|
///
|
|
void updateAvailableModules();
|
|
///
|
|
void updateSelectedModules();
|
|
/// save as default template
|
|
void saveDocDefault();
|
|
/// reset to default params
|
|
void useClassDefaults();
|
|
///
|
|
void setLayoutComboByIDString(std::string const & idString);
|
|
/// available classes
|
|
GuiIdListModel classes_model_;
|
|
/// available modules
|
|
GuiIdListModel modules_av_model_;
|
|
/// selected modules
|
|
GuiIdListModel modules_sel_model_;
|
|
/// current buffer
|
|
BufferId current_id_;
|
|
|
|
/// return false if validate_listings_params returns error
|
|
bool isValid();
|
|
|
|
/// font family names for BufferParams::fontsDefaultFamily
|
|
static char const * const fontfamilies[5];
|
|
/// GUI names corresponding fontfamilies
|
|
static char const * fontfamilies_gui[5];
|
|
///
|
|
bool initialiseParams(std::string const & data);
|
|
///
|
|
void clearParams();
|
|
///
|
|
void dispatchParams();
|
|
///
|
|
bool isBufferDependent() const { return true; }
|
|
/// always true since we don't manipulate document contents
|
|
bool canApply() const { return true; }
|
|
///
|
|
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::list<modInfoStruct> const & getModuleInfo();
|
|
/// Modules in use in current buffer
|
|
std::list<modInfoStruct> const getSelectedModules();
|
|
///
|
|
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;
|
|
/// does this font provide true Small Caps?
|
|
bool providesSC(std::string const & font) const;
|
|
/// does this font provide size adjustment?
|
|
bool providesScale(std::string const & font) const;
|
|
private:
|
|
///
|
|
void loadModuleInfo();
|
|
///
|
|
BufferParams bp_;
|
|
/// List of names of available modules
|
|
std::list<modInfoStruct> moduleNames_;
|
|
};
|
|
|
|
|
|
class PreambleModule : public UiWidget<Ui::PreambleUi>
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
PreambleModule();
|
|
void update(BufferParams const & params, BufferId id);
|
|
void apply(BufferParams & params);
|
|
|
|
Q_SIGNALS:
|
|
/// signal that something's changed in the Widget.
|
|
void changed();
|
|
|
|
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_;
|
|
};
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUIDOCUMENT_H
|