Kouhei Sutou
kous****@users*****
2006年 11月 27日 (月) 18:17:30 JST
Index: tomoe/lib/tomoe-dict.h diff -u tomoe/lib/tomoe-dict.h:1.46 tomoe/lib/tomoe-dict.h:1.47 --- tomoe/lib/tomoe-dict.h:1.46 Mon Nov 27 18:05:48 2006 +++ tomoe/lib/tomoe-dict.h Mon Nov 27 18:17:30 2006 @@ -21,7 +21,7 @@ * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307 USA * - * $Id: tomoe-dict.h,v 1.46 2006/11/27 09:05:48 kous Exp $ + * $Id: tomoe-dict.h,v 1.47 2006/11/27 09:17:30 kous Exp $ */ /** @@ -130,16 +130,20 @@ TomoeChar *tomoe_dict_get_char (TomoeDict *dict, const gchar *utf8); +/* search methods */ /** - * @brief Return an GPtrArray of TomoeChar which is kept in a TomoeDict. + * @brief Match number of strokes of TomoeChar with range. * @param dict - Pointer to the TomoeDict struct. - * @return The array of TomoeChar. + * @param min - Minimum value of the number of strokes. Use + * -1 for no limit. + * @param max - Maximum value of the number of strokes. Use + * -1 for no limit. + * @return The GList of TomoeCandidate. */ GList *tomoe_dict_search_by_n_strokes (TomoeDict *dict, gint min, gint max); -/* search methods */ /** * @brief Match reading of TomoeChar with input. * @param dict - Pointer to the TomoeDict object.