]> git.lyx.org Git - features.git/blob - src/frontends/guiapi.h
Replace LString.h with support/std_string.h,
[features.git] / src / frontends / guiapi.h
1 // -*- C++ -*-
2 /**
3  * \file guiapi.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Lars Gullik Bjønnes
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GUIAPI_H
13 #define GUIAPI_H
14
15
16 #include "support/std_string.h"
17
18 class Dialogs;
19
20 extern "C" {
21
22 void gui_show_dialog(Dialogs *, char const * name, char const * data);
23
24 void gui_ShowDocument(Dialogs &);
25 void gui_ShowForks(Dialogs &);
26 void gui_ShowPreamble(Dialogs &);
27 void gui_ShowPreferences(Dialogs &);
28 void gui_ShowPrint(Dialogs &);
29 void gui_ShowSearch(Dialogs &);
30 void gui_ShowSendto(Dialogs &);
31 void gui_ShowSpellchecker(Dialogs &);
32
33 } // extern "C"
34
35 #endif // GUIAPI_H