mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
66ad217fcf
Lars, shall I change over the xforms code to this scheme? git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5005 a592a061-630c-0410-9148-cb99ea01b6c8
77 lines
1.2 KiB
C
77 lines
1.2 KiB
C
/**
|
|
* \file qt2/Dialogs.C
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
* See the file COPYING.
|
|
*
|
|
* \author Allan Rae, rae@lyx.org
|
|
* \author Angus Leeming <leeming@lyx.org>
|
|
*/
|
|
|
|
#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()
|
|
{}
|
|
|
|
|
|
/// Are the tooltips on or off?
|
|
bool Dialogs::tooltipsEnabled()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
Dialogs::Impl::Impl(LyXView & lv, Dialogs & d)
|
|
: aboutlyx(lv, d),
|
|
bibitem(lv, d),
|
|
bibtex(lv, d),
|
|
character(lv, d),
|
|
citation(lv, d),
|
|
error(lv, d),
|
|
ert(lv, d),
|
|
external(lv, d),
|
|
file(lv, d),
|
|
floats(lv, d),
|
|
graphics(lv, d),
|
|
include(lv, d),
|
|
index(lv, d),
|
|
logfile(lv, d),
|
|
minipage(lv, d),
|
|
paragraph(lv, d),
|
|
preamble(lv, d),
|
|
print(lv, d),
|
|
ref(lv, d),
|
|
search(lv, d),
|
|
spellchecker(lv, d),
|
|
tabularcreate(lv, d),
|
|
texinfo(lv, d),
|
|
|
|
#ifdef HAVE_LIBAIKSAURUS
|
|
thesaurus(lv, d),
|
|
#endif
|
|
|
|
toc(lv, d),
|
|
url(lv, d),
|
|
vclogfile(lv, d)
|
|
{}
|