]> git.lyx.org Git - lyx.git/blob - src/frontends/guiapi.C
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / guiapi.C
1 /**
2  * \file guiapi.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "guiapi.h"
15 #include "Dialogs.h"
16
17
18 extern "C" {
19
20 void gui_show_dialog(Dialogs * d, char const * name, char const * data)
21 {
22         d->show(name, data, 0);
23 }
24
25 void gui_ShowDocument(Dialogs & d)
26 {
27         d.showDocument();
28 }
29
30
31 void gui_ShowForks(Dialogs & d)
32 {
33         d.showForks();
34 }
35
36
37 void gui_ShowPreamble(Dialogs & d)
38 {
39         d.showPreamble();
40 }
41
42
43 void gui_ShowPreferences(Dialogs & d)
44 {
45         d.showPreferences();
46 }
47
48
49 void gui_ShowPrint(Dialogs & d)
50 {
51         d.showPrint();
52 }
53
54
55 void gui_ShowSearch(Dialogs & d)
56 {
57         d.showSearch();
58 }
59
60
61 void gui_ShowSendto(Dialogs & d)
62 {
63         d.showSendto();
64 }
65
66
67 void gui_ShowSpellchecker(Dialogs & d)
68 {
69         d.showSpellchecker();
70 }
71
72
73 } // extern "C"