// -*- C++ -*- /** * \file QCharacter.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Edwin Leuven * \author John Levon * * Full author contact details are available in file CREDITS */ #ifndef QCHARACTER_H #define QCHARACTER_H #ifdef __GNUG__ #pragma interface #endif #include "Qt2Base.h" #include "controllers/character.h" #include "controllers/frnt_lang.h" #include "LString.h" #include 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