/** * \file xforms/Dialogs.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Angus Leeming * * Full author contact details are available in file CREDITS */ #include #include "Dialogs_impl.h" void Dialogs::init_pimpl() { pimpl_ = new Impl(lyxview_, *this); } Dialogs::~Dialogs() { delete pimpl_; } Dialogs::Impl::Impl(LyXView & lv, Dialogs & d) : aboutlyx(lv, d), changes(lv, d), character(lv, d), document(lv, d), file(lv, d), forks(lv, d), graphics(lv, d), logfile(lv, d), mathpanel(lv, d), paragraph(lv, d), preamble(lv, d), preferences(lv, d), print(lv, d), search(lv, d), sendto(lv, d), spellchecker(lv, d), tabular(lv, d), tabularcreate(lv, d), texinfo(lv, d), #ifdef HAVE_LIBAIKSAURUS thesaurus(lv, d), #endif vclogfile(lv, d) {}