mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
e22ee4208d
in the inset mailers and in the controllers. Enable the include dialog to be lauched for a new inset (should please John ;-) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6374 a592a061-630c-0410-9148-cb99ea01b6c8
52 lines
829 B
C
52 lines
829 B
C
/**
|
|
* \file qt2/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 <config.h>
|
|
|
|
#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),
|
|
graphics(lv, d),
|
|
logfile(lv, d),
|
|
paragraph(lv, d),
|
|
prefs(lv, d),
|
|
print(lv, d),
|
|
search(lv, d),
|
|
sendto(lv, d),
|
|
spellchecker(lv, d),
|
|
tabularcreate(lv, d),
|
|
tabular(lv, d),
|
|
texinfo(lv, d),
|
|
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
thesaurus(lv, d),
|
|
#endif
|
|
|
|
vclogfile(lv, d)
|
|
{}
|