mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-28 04:17:43 +00:00
f1c24d1009
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4417 a592a061-630c-0410-9148-cb99ea01b6c8
38 lines
607 B
C
38 lines
607 B
C
/**
|
|
* \file xforms/Dialogs.C
|
|
* Copyright 1995 Matthias Ettrich
|
|
* Copyright 1995-2001 The LyX Team.
|
|
* See the file COPYING.
|
|
*
|
|
* \author Allan Rae, rae@lyx.org
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "Dialogs.h"
|
|
#include "Tooltips.h"
|
|
|
|
LyXView * dialogs_lyxview;
|
|
|
|
|
|
/// Are the tooltips on or off?
|
|
bool Dialogs::tooltipsEnabled()
|
|
{
|
|
return Tooltips::enabled();
|
|
}
|
|
|
|
|
|
Dialogs::Dialogs(LyXView * lv)
|
|
{
|
|
#if 1
|
|
dialogs_lyxview = lv;
|
|
#endif
|
|
// reduce the number of connections needed in
|
|
// dialogs by a simple connection here.
|
|
hideAll.connect(hideBufferDependent);
|
|
}
|