From ac408e8d4ce77389e65d69e9a1ff30fd54a25ada Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 8 Jan 2013 04:05:01 +0000 Subject: Add support for URID ports. Fix glib errors when resetting properties dialog. Move RDFS domain/range/classes/etc code to reusable location. Add preliminary "mesp" (message processing) plugin package. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4903 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/RDFS.hpp | 67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/gui/RDFS.hpp (limited to 'src/gui/RDFS.hpp') diff --git a/src/gui/RDFS.hpp b/src/gui/RDFS.hpp new file mode 100644 index 00000000..bdc0a7a1 --- /dev/null +++ b/src/gui/RDFS.hpp @@ -0,0 +1,67 @@ +/* + This file is part of Ingen. + Copyright 2012 David Robillard + + Ingen is free software: you can redistribute it and/or modify it under the + terms of the GNU Affero General Public License as published by the Free + Software Foundation, either version 3 of the License, or any later version. + + Ingen is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU Affero General Public License for details. + + You should have received a copy of the GNU Affero General Public License + along with Ingen. If not, see . +*/ + +#ifndef INGEN_GUI_RDF_HPP +#define INGEN_GUI_RDF_HPP + +#include +#include + +#include + +#include "raul/URI.hpp" +#include "raul/SharedPtr.hpp" + +namespace Ingen { + +class World; + +namespace Client { class ObjectModel; } + +namespace GUI { + +namespace RDFS { + +/** Set of URIs. */ +typedef std::set URISet; + +/** Map of object labels, keyed by object URI. */ +typedef std::map Objects; + +/** Return the label of @p node. */ +Glib::ustring +label(World* world, const LilvNode* node); + +/** Set @p types to its super/sub class closure. + * @param super If true, find all superclasses, otherwise all subclasses + */ +void classes(World* world, URISet& types, bool super); + +/** Get all instances of any class in @p types. */ +Objects +instances(World* world, const URISet& types); + +/** Get all the types which @p model is an instance of. */ +URISet types(World* world, SharedPtr model); + +/** Get all the properties with domains appropriate for @p model. */ +URISet properties(World* world, SharedPtr model); + +} // namespace RDFS +} // namespace GUI +} // namespace Ingen + +#endif // INGEN_GUI_RDF_HPP -- cgit v1.2.1