2001-08-19 13:25:15 +00:00
|
|
|
/**
|
2002-03-11 22:47:41 +00:00
|
|
|
* \file qt2/Dialogs.C
|
2002-09-24 13:57:09 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2001-01-26 10:16:05 +00:00
|
|
|
*
|
2002-10-20 01:48:28 +00:00
|
|
|
* \author Angus Leeming
|
2002-09-24 13:57:09 +00:00
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS
|
2001-01-26 10:16:05 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2002-08-15 19:07:17 +00:00
|
|
|
#include "Dialogs_impl.h"
|
|
|
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
void Dialogs::init_pimpl()
|
2001-01-26 10:16:05 +00:00
|
|
|
{
|
2003-02-25 14:51:38 +00:00
|
|
|
pimpl_ = new Impl(lyxview_, *this);
|
2001-03-15 16:34:44 +00:00
|
|
|
}
|
2002-04-16 22:37:46 +00:00
|
|
|
|
2002-04-23 08:16:27 +00:00
|
|
|
|
2002-08-15 19:07:17 +00:00
|
|
|
Dialogs::~Dialogs()
|
2002-04-16 22:37:46 +00:00
|
|
|
{
|
2003-02-25 14:51:38 +00:00
|
|
|
delete pimpl_;
|
2002-04-23 08:16:27 +00:00
|
|
|
}
|
2002-08-15 19:07:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
Dialogs::Impl::Impl(LyXView & lv, Dialogs & d)
|
|
|
|
: aboutlyx(lv, d),
|
2003-02-09 00:11:51 +00:00
|
|
|
changes(lv, d),
|
2002-08-15 19:07:17 +00:00
|
|
|
character(lv, d),
|
2002-10-09 08:59:02 +00:00
|
|
|
document(lv, d),
|
2002-08-15 19:07:17 +00:00
|
|
|
file(lv, d),
|
|
|
|
logfile(lv, d),
|
|
|
|
paragraph(lv, d),
|
2002-11-13 02:22:48 +00:00
|
|
|
prefs(lv, d),
|
2002-08-15 19:07:17 +00:00
|
|
|
print(lv, d),
|
|
|
|
search(lv, d),
|
2002-10-16 21:26:35 +00:00
|
|
|
sendto(lv, d),
|
2002-08-15 19:07:17 +00:00
|
|
|
spellchecker(lv, d),
|
|
|
|
texinfo(lv, d),
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
|
|
thesaurus(lv, d),
|
|
|
|
#endif
|
|
|
|
|
2003-03-05 23:19:45 +00:00
|
|
|
vclogfile(lv, d)
|
2002-08-15 19:07:17 +00:00
|
|
|
{}
|