mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
13349032cb
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5758 a592a061-630c-0410-9148-cb99ea01b6c8
87 lines
1.5 KiB
C
87 lines
1.5 KiB
C
/**
|
|
* \file xforms/Dialogs.C
|
|
* Copyright 1995 Matthias Ettrich
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Allan Rae
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "Dialogs_impl.h"
|
|
|
|
Dialogs::Dialogs(LyXView & lv)
|
|
: pimpl_(new Impl(lv, *this))
|
|
{
|
|
// reduce the number of connections needed in
|
|
// dialogs by a simple connection here.
|
|
hideAll.connect(hideBufferDependent);
|
|
}
|
|
|
|
|
|
Dialogs::~Dialogs()
|
|
{}
|
|
|
|
|
|
void Dialogs::toggleTooltips()
|
|
{
|
|
Tooltips::toggleEnabled();
|
|
}
|
|
|
|
|
|
/// Are the tooltips on or off?
|
|
bool Dialogs::tooltipsEnabled()
|
|
{
|
|
return Tooltips::enabled();
|
|
}
|
|
|
|
|
|
Dialogs::Impl::Impl(LyXView & lv, Dialogs & d)
|
|
: aboutlyx(lv, d),
|
|
bibitem(lv, d),
|
|
bibtex(lv, d),
|
|
character(lv, d),
|
|
citation(lv, d),
|
|
document(lv, d),
|
|
error(lv, d),
|
|
ert(lv, d),
|
|
external(lv, d),
|
|
file(lv, d),
|
|
floats(lv, d),
|
|
forks(lv, d),
|
|
graphics(lv, d),
|
|
include(lv, d),
|
|
index(lv, d),
|
|
logfile(lv, d),
|
|
mathpanel(lv, d),
|
|
minipage(lv, d),
|
|
paragraph(lv, d),
|
|
preamble(lv, d),
|
|
preferences(lv, d),
|
|
print(lv, d),
|
|
ref(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
|
|
|
|
toc(lv, d),
|
|
url(lv, d),
|
|
vclogfile(lv, d),
|
|
wrap(lv, d)
|
|
{}
|