// -*- C++ -*- /** * \file QCharacter.h * Copyright 2001 the LyX Team * Read the file COPYING * * \author Edwin Leuven, leuven@fee.uva.nl * \author John Levon */ #ifndef QCHARACTER_H #define QCHARACTER_H #include #include #include "LString.h" #include "Qt2Base.h" #include "controllers/character.h" #include "controllers/frnt_lang.h" class ControlCharacter; class QCharacterDialog; class QCharacter : public Qt2CB > { friend class QCharacterDialog; public: QCharacter(); private: /// Apply changes virtual void apply(); /// update virtual void update_contents(); /// build the dialog virtual void build_dialog(); std::vector family; std::vector series; std::vector shape; std::vector size; std::vector bar; std::vector color; std::vector language; }; #endif // QCHARACTER_H