// -*- 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 "frontend_helpers.h" // for LanguagePair #include "Font.h" #include namespace lyx { class Color_color; namespace frontend { enum FontState { /// IGNORE, /// EMPH_TOGGLE, /// UNDERBAR_TOGGLE, /// NOUN_TOGGLE, /// INHERIT }; typedef std::pair FamilyPair; typedef std::pair SeriesPair; typedef std::pair ShapePair; typedef std::pair SizePair; typedef std::pair BarPair; typedef std::pair ColorPair; class GuiCharacter : public GuiDialog, public Ui::CharacterUi, public Controller { Q_OBJECT public: GuiCharacter(LyXView & lv); protected Q_SLOTS: void change_adaptor(); private: void closeEvent(QCloseEvent * e); /// parent controller Controller & controller() { return *this; } /// Apply changes void applyView(); /// update void updateContents(); std::vector family; std::vector series; std::vector shape; std::vector size; std::vector bar; std::vector color; std::vector language; /// bool initialiseParams(std::string const & data); /// void clearParams() {} /// void dispatchParams(); /// bool isBufferDependent() const { return true; } /// kb_action getLfun() const { return LFUN_FONT_FREE_UPDATE; } /// void setFamily(Font::FONT_FAMILY); /// void setSeries(Font::FONT_SERIES); /// void setShape(Font::FONT_SHAPE); /// void setSize(Font::FONT_SIZE); /// void setBar(FontState); /// void setColor(Color_color); /// void setLanguage(std::string const &); /// void setToggleAll(bool); /// Font::FONT_FAMILY getFamily() const; /// Font::FONT_SERIES getSeries() const; /// Font::FONT_SHAPE getShape() const; /// Font::FONT_SIZE getSize() const; /// FontState getBar() const; /// Color_color getColor() const; /// std::string getLanguage() const; /// bool getToggleAll() const; private: /// Font font_; /// bool toggleall_; /// If true the language should be reset. /// If false the language of font_ is used. bool reset_lang_; }; } // namespace frontend } // namespace lyx #endif // GUICHARACTER_H