2001-04-26 18:58:49 +00:00
|
|
|
/* This file is part of
|
2002-03-21 21:21:28 +00:00
|
|
|
* ======================================================
|
|
|
|
*
|
2001-04-26 18:58:49 +00:00
|
|
|
* LyX, The Document Processor
|
2002-03-21 21:21:28 +00:00
|
|
|
*
|
2001-04-26 18:58:49 +00:00
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
* Copyright 1995-2001 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* \file Dialogs.C
|
|
|
|
* \author Angus Leeming <a.leeming@ic.ac.uk>
|
|
|
|
*
|
|
|
|
* Methods common to all frontends' Dialogs that should not be inline
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "Dialogs.h"
|
|
|
|
#include "support/LAssert.h"
|
|
|
|
|
2002-03-04 10:51:40 +00:00
|
|
|
// Signal enabling all visible dialogs to be redrawn if so desired.
|
|
|
|
// E.g., when the GUI colours have been remapped.
|
|
|
|
SigC::Signal0<void> Dialogs::redrawGUI;
|
|
|
|
|
2002-03-11 09:54:42 +00:00
|
|
|
|
|
|
|
// toggle tooltips on/off in all dialogs.
|
|
|
|
SigC::Signal0<void> Dialogs::toggleTooltips;
|
|
|
|
|
2001-04-26 18:58:49 +00:00
|
|
|
void Dialogs::add(DialogBase * ptr)
|
|
|
|
{
|
|
|
|
lyx::Assert(ptr);
|
|
|
|
dialogs_.push_back(db_ptr(ptr));
|
|
|
|
}
|