// -*- C++ -*- /** * \file QPrefs.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author John Levon * * Full author contact details are available in file CREDITS */ #ifndef QPREFS_H #define QPREFS_H #ifdef __GNUG__ #pragma interface #endif #include "converter.h" #include "Qt2Base.h" #include "ControlPrefs.h" #include class QPrefsDialog; class QPrefs : public Qt2CB > { public: friend class QPrefsDialog; QPrefs(); private: /// Apply changes virtual void apply(); /// update (do we need this?) virtual void update_contents(); /// build the dialog virtual void build_dialog(); /// languages std::vector lang_; /// converters Converters converters_; /// formats Formats formats_; }; #endif // QPREFS_H