Modest/source/mycss/values/image.c
2016-11-02 03:30:13 +03:00

95 lines
3.5 KiB
C

/*
Copyright (C) 2016 Alexander Borisov
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Author: lex.borisov@gmail.com (Alexander Borisov)
*/
#include "mycss/values/image.h"
#include "mycss/values/image_resources.h"
#include "myhtml/utils/resources.h"
const mycss_values_image_function_index_static_entry_t * mycss_values_image_index_entry_by_name(const char* name, size_t length)
{
size_t idx = ((myhtml_string_chars_lowercase_map[ (const unsigned char)name[0] ] *
myhtml_string_chars_lowercase_map[ (const unsigned char)name[(length - 1)] ] *
length)
% MyCSS_IMAGE_FUNCTION_STATIC_INDEX_FOR_SEARCH_SIZE) + 1;
while (mycss_values_image_function_index_static_for_search[idx].name)
{
if(mycss_values_image_function_index_static_for_search[idx].name_length == length) {
if(myhtml_strncasecmp(mycss_values_image_function_index_static_for_search[idx].name, name, length) == 0)
return &mycss_values_image_function_index_static_for_search[idx];
if(mycss_values_image_function_index_static_for_search[idx].next)
idx = mycss_values_image_function_index_static_for_search[idx].next;
else
return NULL;
}
else if(mycss_values_image_function_index_static_for_search[idx].name_length > length) {
return NULL;
}
else {
idx = mycss_values_image_function_index_static_for_search[idx].next;
}
}
return NULL;
}
mycss_property_value_t mycss_values_image_id_by_name(const char *name, size_t length)
{
const mycss_values_image_function_index_static_entry_t *entry = mycss_values_image_index_entry_by_name(name, length);
if(entry)
return entry->type;
return MyCSS_PROPERTY_VALUE_UNDEF;
}
void * mycss_values_image_creator_url(mycss_entry_t* entry, mycss_values_image_t* image)
{
image->url = mycss_values_create(entry, sizeof(mycss_values_url_t));
return image->url;
}
void * mycss_values_image_creator_function_image(mycss_entry_t* entry, mycss_values_image_t* image)
{
image->ii = mycss_values_create(entry, sizeof(mycss_values_image_image_t));
return image->ii;
}
void * mycss_values_image_creator_image_set(mycss_entry_t* entry, mycss_values_image_t* image)
{
image->ii_set = mycss_values_create(entry, sizeof(mycss_values_image_image_set_t));
return image->ii_set;
}
void * mycss_values_image_creator_element(mycss_entry_t* entry, mycss_values_image_t* image)
{
image->element = mycss_values_create(entry, sizeof(mycss_values_element_t));
return image->element;
}
void * mycss_values_image_creator_cross_fade(mycss_entry_t* entry, mycss_values_image_t* image)
{
image->cross_fade = mycss_values_create(entry, sizeof(mycss_values_cross_fade_t));
return image->cross_fade;
}