/* Part of XPCE --- The SWI-Prolog GUI toolkit
Author: Jan Wielemaker and Anjo Anjewierden
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi.psy.uva.nl/projects/xpce/
Copyright (c) 2003-2012, University of Amsterdam
VU University Amsterdam
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
:- module(emacs_rdf_mode, []).
:- use_module(library(pce)).
:- use_module(library(emacs_extend)).
:- use_module(sgml_mode).
:- use_module(library(rdf)).
:- use_module(library(semweb/rdf_db)).
:- pce_autoload(rdf_diagram, library(rdf_diagram)).
:- emacs_begin_mode(
rdf, xml,
"Mode for editing RDF documents",
[ - = button(sgml),
show_diagram = button(sgml),
rdf_make = key('\\C-c\\C-m') + button(compile),
rdf_load = key('\\C-c\\C-b') + button(compile)
],
[]).
open_document(M) :->
"Insert document header"::
send(M, format,
'\n\n\c
\n \c
\n\c
]>\n\n\c
\n\n\c
\n').
show_diagram(M) :->
"Show diagram of file"::
get(M, text_buffer, TB),
pce_open(TB, read, In),
load_rdf(stream(In), Triples,
[ expand_foreach(true)
]),
close(In),
new(D, rdf_diagram(string('RDF triple diagram'))),
send(new(report_dialog), below, D),
send(D, triples, Triples),
send(D, open).
rdf_make(M) :->
"Run rdf_make/0"::
send(@emacs, save_some_buffers),
rdf_make,
send(M, report, status, 'RDF Make done').
rdf_load(M) :->
"Run rdf_load on the file"::
get(M?text_buffer, file, File),
( send(File, instance_of, file)
-> send(M, save_if_modified),
get(File, name, Path),
rdf_load(Path),
send(M, report, status, '%s loaded', Path)
; send(M, report, error,
'Buffer is not connected to a file')
).
:- emacs_end_mode.
:- emacs_begin_mode(rdfs, rdf,
"Mode for editing RDFS documents",
[],
[]).
open_document(M) :->
"Insert document header"::
send(M, format,
'\n\n\c
\n \c
\n \c
\n\c
]>\n\n\c
\n\n\c
\n').
:- emacs_end_mode.
:- emacs_begin_mode(owl, rdfs,
"Mode for editing OWL documents",
[],
[]).
open_document(M) :->
"Insert document header"::
send(M, format,
'\n\n\c
\n \c
\n \c
\n \c
\n \c
\n\c
]>\n\n\c
\n\n\c
\n\c
\n\n\c
\n').
:- emacs_end_mode.