2002-03-11 17:00:41 +00:00
|
|
|
/**
|
2002-03-11 22:47:41 +00:00
|
|
|
* \file xforms/Dialogs.C
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2000-11-13 10:35:02 +00:00
|
|
|
*
|
2002-12-01 22:59:25 +00:00
|
|
|
* \author Angus Leeming
|
2002-09-05 14:10:50 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2000-11-13 10:35:02 +00:00
|
|
|
*/
|
|
|
|
|
2000-06-12 11:55:12 +00:00
|
|
|
#include <config.h>
|
2001-03-15 13:37:04 +00:00
|
|
|
|
2002-08-15 17:48:53 +00:00
|
|
|
#include "Dialogs_impl.h"
|
|
|
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
void Dialogs::init_pimpl()
|
2002-08-15 17:48:53 +00:00
|
|
|
{
|
2003-02-25 14:51:38 +00:00
|
|
|
pimpl_ = new Impl(lyxview_, *this);
|
2002-08-15 17:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
Dialogs::~Dialogs()
|
2002-08-15 17:48:53 +00:00
|
|
|
{
|
2003-02-25 14:51:38 +00:00
|
|
|
delete pimpl_;
|
2002-08-15 17:48:53 +00:00
|
|
|
}
|
2002-08-16 20:07:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
Dialogs::Impl::Impl(LyXView & lv, Dialogs & d)
|
|
|
|
: aboutlyx(lv, d),
|
2003-02-08 19:18:01 +00:00
|
|
|
changes(lv, d),
|
2002-08-16 20:07:39 +00:00
|
|
|
character(lv, d),
|
|
|
|
document(lv, d),
|
|
|
|
file(lv, d),
|
|
|
|
forks(lv, d),
|
|
|
|
graphics(lv, d),
|
|
|
|
logfile(lv, d),
|
|
|
|
mathpanel(lv, d),
|
|
|
|
minipage(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
|
|
|
|
|
2002-09-10 10:18:58 +00:00
|
|
|
vclogfile(lv, d),
|
|
|
|
wrap(lv, d)
|
2002-08-16 20:07:39 +00:00
|
|
|
{}
|