// -*- C++ -*- /** * \file GuiCharacter.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Angus Leeming * \author Edwin Leuven * \author John Levon * * Full author contact details are available in file CREDITS. */ #ifndef GUICHARACTER_H #define GUICHARACTER_H #include "GuiDialog.h" #include "ui_CharacterUi.h" #include "Font.h" #include #include #ifdef IGNORE #undef IGNORE #endif namespace lyx { namespace frontend { enum FontDeco { /// IGNORE, /// UNDERBAR, /// STRIKEOUT, /// XOUT, /// UULINE, /// UWAVE, /// INHERIT, /// NONE }; typedef std::pair FamilyPair; typedef std::pair FamilyPair; typedef std::pair SeriesPair; typedef std::pair ShapePair; typedef std::pair SizePair; typedef std::pair BarPair; typedef std::pair LanguagePair; class GuiCharacter : public GuiDialog, public Ui::CharacterUi { Q_OBJECT public: GuiCharacter(GuiView & lv); protected Q_SLOTS: void change_adaptor(); void on_emphCB_clicked(); void on_nounCB_clicked(); void on_nospellcheckCB_clicked(); void resetToDefault(); void resetToNoChange(); void checkRestoreDefaults(); private: /// \name Dialog inherited methods //@{ void applyView() override; void updateContents() override; bool initialiseParams(std::string const & data) override; void clearParams() override {} void dispatchParams() override; bool isBufferDependent() const override { return true; } FuncCode getLfun() const override { return LFUN_TEXTSTYLE_UPDATE; } void saveSession(QSettings & settings) const override; void restoreSession() override; //@} /// void paramsToDialog(Font const & font); /// void setBar(FontInfo & fi, FontDeco val); /// void setStrike(FontInfo & fi, FontDeco val); QList family; QList series; QList shape; QList size; QList bar; QList strike; QList color; QList language; /// Font font_; /// bool emph_; /// bool noun_; /// bool nospellcheck_; /// QAction * resetdefault_ = new QAction(this); /// QAction * resetnochange_ = new QAction(this); }; } // namespace frontend } // namespace lyx #endif // GUICHARACTER_H