From: woohyun Date: Tue, 15 Nov 2011 08:26:02 +0000 (+0000) Subject: elementary/elm_entry : Text filter should consider some tags like X-Git-Tag: REL_F_I9500_20120323_1~17^2~1339 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e112d32ba27b39bf109aba16b57dce7db92065f;p=framework%2Fuifw%2Felementary.git elementary/elm_entry : Text filter should consider some tags like
. Now tag itself has its own size, then max size filter callback will calculate that. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@65225 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c index ea2665f..72613fd 100644 --- a/src/lib/elm_entry.c +++ b/src/lib/elm_entry.c @@ -2037,67 +2037,63 @@ _add_chars_till_limit(Evas_Object *obj, char **text, int can_add, Length_Unit un current_len = strlen(*text); while (*new_text) { + int idx = 0, unit_size = 0; + char *markup, *utfstr; if (*new_text == '<') { - while (*new_text != '>') + while (*(new_text + idx) != '>') { - new_text++; - if (!*new_text) break; + idx++; + if (!*(new_text + idx)) break; } - new_text++; } - else + else if (*new_text == '&') { - int idx = 0, unit_size = 0; - char *markup, *utfstr; - if (*new_text == '&') + while (*(new_text + idx) != ';') { - while (*(new_text + idx) != ';') - { - idx++; - if (!*(new_text + idx)) break; - } + idx++; + if (!*(new_text + idx)) break; } - idx = evas_string_char_next_get(new_text, idx, NULL); - markup = malloc(idx + 1); - if (markup) + } + idx = evas_string_char_next_get(new_text, idx, NULL); + markup = malloc(idx + 1); + if (markup) + { + strncpy(markup, new_text, idx); + markup[idx] = 0; + utfstr = elm_entry_markup_to_utf8(markup); + if (utfstr) { - strncpy(markup, new_text, idx); - markup[idx] = 0; - utfstr = elm_entry_markup_to_utf8(markup); - if (utfstr) - { - if (unit == LENGTH_UNIT_BYTE) - unit_size = strlen(utfstr); - else if (unit == LENGTH_UNIT_CHAR) - unit_size = evas_string_char_len_get(utfstr); - free(utfstr); - utfstr = NULL; - } - free(markup); - markup = NULL; + if (unit == LENGTH_UNIT_BYTE) + unit_size = strlen(utfstr); + else if (unit == LENGTH_UNIT_CHAR) + unit_size = evas_string_char_len_get(utfstr); + free(utfstr); + utfstr = NULL; } - if (can_add < unit_size) - { - if (!i) - { - evas_object_smart_callback_call(obj, "maxlength,reached", NULL); - free(*text); - *text = NULL; - return; - } - can_add = 0; - strncpy(new_text, new_text + idx, current_len - ((new_text + idx) - *text)); - current_len -= idx; - (*text)[current_len] = 0; - } - else + free(markup); + markup = NULL; + } + if (can_add < unit_size) + { + if (!i) { - new_text += idx; - can_add -= unit_size; + evas_object_smart_callback_call(obj, "maxlength,reached", NULL); + free(*text); + *text = NULL; + return; } - i++; + can_add = 0; + strncpy(new_text, new_text + idx, current_len - ((new_text + idx) - *text)); + current_len -= idx; + (*text)[current_len] = 0; + } + else + { + new_text += idx; + can_add -= unit_size; } + i++; } evas_object_smart_callback_call(obj, "maxlength,reached", NULL); }