/* * Copyright (C) 2006, Jamie McCracken * Copyright (C) 2008, Nokia * * 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. */ #ifndef __LIBTRACKER_COMMON_LANGUAGE_H__ #define __LIBTRACKER_COMMON_LANGUAGE_H__ #include G_BEGIN_DECLS #if !defined (__LIBTRACKER_COMMON_INSIDE__) && !defined (TRACKER_COMPILATION) #error "only must be included directly." #endif #define TRACKER_TYPE_LANGUAGE (tracker_language_get_type ()) #define TRACKER_LANGUAGE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), TRACKER_TYPE_LANGUAGE, TrackerLanguage)) #define TRACKER_LANGUAGE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), TRACKER_TYPE_LANGUAGE, TrackerLanguageClass)) #define TRACKER_IS_LANGUAGE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), TRACKER_TYPE_LANGUAGE)) #define TRACKER_IS_LANGUAGE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), TRACKER_TYPE_LANGUAGE)) #define TRACKER_LANGUAGE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), TRACKER_TYPE_LANGUAGE, TrackerLanguageClass)) typedef struct _TrackerLanguage TrackerLanguage; typedef struct _TrackerLanguageClass TrackerLanguageClass; struct _TrackerLanguage { GObject parent; }; struct _TrackerLanguageClass { GObjectClass parent_class; }; GType tracker_language_get_type (void) G_GNUC_CONST; TrackerLanguage *tracker_language_new (const gchar *language_code); gboolean tracker_language_get_enable_stemmer (TrackerLanguage *language); GHashTable * tracker_language_get_stop_words (TrackerLanguage *language); gboolean tracker_language_is_stop_word (TrackerLanguage *language, const gchar *word); const gchar * tracker_language_get_language_code (TrackerLanguage *language); void tracker_language_set_enable_stemmer (TrackerLanguage *language, gboolean value); void tracker_language_set_language_code (TrackerLanguage *language, const gchar *language_code); gchar * tracker_language_stem_word (TrackerLanguage *language, const gchar *word, gint word_length); /* Utility functions */ const gchar * tracker_language_get_name_by_code (const gchar *language_code); G_END_DECLS #endif /* __LIBTRACKER_COMMON_LANGUAGE_H__ */