/* SLV2 * Copyright (C) 2007-2011 David Robillard * * This library is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This library 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 General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ #define _XOPEN_SOURCE 500 #include #include #include #include "slv2_internal.h" #ifdef HAVE_SUIL #include "suil/suil.h" #endif SLV2UI slv2_ui_new(SLV2World world, SLV2Value uri, SLV2Value type_uri, SLV2Value binary_uri) { assert(uri); assert(type_uri); assert(binary_uri); struct _SLV2UI* ui = malloc(sizeof(struct _SLV2UI)); ui->world = world; ui->uri = uri; ui->binary_uri = binary_uri; // FIXME: kludge char* bundle = strdup(slv2_value_as_string(ui->binary_uri)); char* last_slash = strrchr(bundle, '/') + 1; *last_slash = '\0'; ui->bundle_uri = slv2_value_new_uri(world, bundle); free(bundle); ui->classes = slv2_values_new(); slv2_array_append(ui->classes, type_uri); return ui; } void slv2_ui_free(SLV2UI ui) { slv2_value_free(ui->uri); ui->uri = NULL; slv2_value_free(ui->bundle_uri); ui->bundle_uri = NULL; slv2_value_free(ui->binary_uri); ui->binary_uri = NULL; slv2_values_free(ui->classes); free(ui); } SLV2_API SLV2Value slv2_ui_get_uri(SLV2UI ui) { assert(ui); assert(ui->uri); return ui->uri; } SLV2_API bool slv2_ui_supported(SLV2UI ui, SLV2Value widget_type_uri) { #ifdef HAVE_SUIL return suil_ui_type_supported( slv2_value_as_uri(widget_type_uri), slv2_value_as_uri(slv2_values_get_at(ui->classes, 0))); #else return false; #endif } SLV2_API SLV2Values slv2_ui_get_classes(SLV2UI ui) { return ui->classes; } SLV2_API bool slv2_ui_is_a(SLV2UI ui, SLV2Value ui_class_uri) { return slv2_values_contains(ui->classes, ui_class_uri); } SLV2_API SLV2Value slv2_ui_get_bundle_uri(SLV2UI ui) { assert(ui); assert(ui->bundle_uri); return ui->bundle_uri; } SLV2_API SLV2Value slv2_ui_get_binary_uri(SLV2UI ui) { assert(ui); assert(ui->binary_uri); return ui->binary_uri; }