]> git.lyx.org Git - lyx.git/blob - src/lyx_gui_misc.h
Add GraphicsTypes.h to libgraphics_la_SOURCES
[lyx.git] / src / lyx_gui_misc.h
1 // -*- C++ -*-
2 /* This file is part of
3  * ======================================================
4  * 
5  *           LyX, The Document Processor
6  *        
7  *           Copyright 1995 1996 Matthias Ettrich
8  *           Copyright 1995-2001 The LyX Team
9  *
10  * ====================================================== */
11
12 // Misc. GUI specific routines
13
14 #ifndef LYX_GUI_MISC_H
15 #define LYX_GUI_MISC_H
16
17 #ifdef __GNUG__
18 #pragma interface
19 #endif
20
21 #include FORMS_H_LOCATION
22
23 /// Prevents LyX from being killed when the close box is pressed in a popup.
24 extern "C"
25 int CancelCloseBoxCB(FL_FORM *, void *);
26
27 /** Redraw the form (on receipt of a Signal indicating, for example,
28     that the xform colors have been re-mapped). */
29 void RedrawAllBufferRelatedDialogs();
30
31 /// Prevents LyX from crashing when no buffers available
32 void CloseAllBufferRelatedDialogs();
33
34 #endif