]> git.lyx.org Git - features.git/commitdiff
* guiapi.[Ch]: deleted.
authorAbdelrazak Younes <younes@lyx.org>
Mon, 30 Oct 2006 08:13:02 +0000 (08:13 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Mon, 30 Oct 2006 08:13:02 +0000 (08:13 +0000)
Angus L. explanation: Lars introduced it years ago when he got exited by the idea
of dll-importing the frontend library, but the idea never came to anything
concrete. The file can always be resurrected later on; it's meant to be a C-
language wrapper to our C++ frontend library calls.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15611 a592a061-630c-0410-9148-cb99ea01b6c8

development/scons/scons_manifest.py
src/frontends/Makefile.am
src/frontends/guiapi.C [deleted file]
src/frontends/guiapi.h [deleted file]

index b3db3ac34675c9a95523eb542873ceb87eebba4c..19ffd565c413c2c4f0e378492e1299de31b2fde7 100644 (file)
@@ -446,7 +446,6 @@ src_frontends_header_files = Split('''
     Timeout.h
     Toolbars.h
     WorkArea.h
-    guiapi.h
     key_state.h
     mouse_state.h
     nullpainter.h
@@ -462,7 +461,6 @@ src_frontends_files = Split('''
     Timeout.C
     Toolbars.C
     WorkArea.C
-    guiapi.C
 ''')
 
 
index 7678c7bcd0e46f8b53fa13b2fa7586c770833f02..38eb4bae764ef8f78df8c1be0c6ccf61abd9a284 100644 (file)
@@ -41,8 +41,6 @@ libfrontends_la_SOURCES = \
        Selection.h \
        WorkArea.C \
        WorkArea.h \
-       guiapi.h \
-       guiapi.C \
        key_state.h \
        mouse_state.h \
        nullpainter.h
diff --git a/src/frontends/guiapi.C b/src/frontends/guiapi.C
deleted file mode 100644 (file)
index 9990517..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * \file guiapi.C
- * This file is part of LyX, the document processor.
- * Licence details can be found in the file COPYING.
- *
- * \author Lars Gullik Bjønnes
- * \author Angus Leeming
- *
- * Full author contact details are available in file CREDITS.
- */
-
-#include <config.h>
-
-#include "guiapi.h"
-#include "Dialogs.h"
-
-
-namespace lyx {
-
-
-extern "C" {
-
-void gui_show_dialog(Dialogs * d, char const * name, char const * data)
-{
-       d->show(name, data, 0);
-}
-
-} // extern "C"
-
-
-} // namespace lyx
diff --git a/src/frontends/guiapi.h b/src/frontends/guiapi.h
deleted file mode 100644 (file)
index e7b6cf4..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// -*- C++ -*-
-/**
- * \file guiapi.h
- * This file is part of LyX, the document processor.
- * Licence details can be found in the file COPYING.
- *
- * \author Lars Gullik Bjønnes
- *
- * Full author contact details are available in file CREDITS.
- */
-
-#ifndef GUIAPI_H
-#define GUIAPI_H
-
-namespace lyx {
-
-class Dialogs;
-
-extern "C" {
-
-void gui_show_dialog(Dialogs *, char const * name, char const * data);
-
-} // extern "C"
-
-
-} // namespace lyx
-
-#endif // GUIAPI_H