// -*- 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 #ifdef IGNORE #undef IGNORE #endif namespace lyx { namespace frontend { enum FontState { /// 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(); private: /// \name Dialog inherited methods //@{ void applyView(); void updateContents(); bool initialiseParams(std::string const & data); void clearParams() {} void dispatchParams(); bool isBufferDependent() const { return true; } FuncCode getLfun() const { return LFUN_TEXTSTYLE_UPDATE; } void saveSession(QSettings & settings) const; void restoreSession(); //@} /// void paramsToDialog(Font const & font); /// void setBar(FontInfo & fi, FontState val); /// void setStrike(FontInfo & fi, FontState 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_; }; } // namespace frontend } // namespace lyx #endif // GUICHARACTER_H