sl@0: /* GLIB - Library of useful routines for C programming sl@0: * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald sl@0: * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved. sl@0: * This library is free software; you can redistribute it and/or sl@0: * modify it under the terms of the GNU Lesser General Public sl@0: * License as published by the Free Software Foundation; either sl@0: * version 2 of the License, or (at your option) any later version. sl@0: * sl@0: * This library is distributed in the hope that it will be useful, sl@0: * but WITHOUT ANY WARRANTY; without even the implied warranty of sl@0: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU sl@0: * Lesser General Public License for more details. sl@0: * sl@0: * You should have received a copy of the GNU Lesser General Public sl@0: * License along with this library; if not, write to the sl@0: * Free Software Foundation, Inc., 59 Temple Place - Suite 330, sl@0: * Boston, MA 02111-1307, USA. sl@0: */ sl@0: sl@0: /* sl@0: * Modified by the GLib Team and others 1997-2000. See the AUTHORS sl@0: * file for a list of people on the GLib Team. See the ChangeLog sl@0: * files for a list of changes. These files are distributed with sl@0: * GLib at ftp://ftp.gtk.org/pub/gtk/. sl@0: */ sl@0: #include sl@0: sl@0: #include "glib.h" sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: #include "mrt2_glib2_test.h" sl@0: #endif /*__SYMBIAN32__*/ sl@0: sl@0: sl@0: int main (int argc, char *argv[]) sl@0: { sl@0: GCompletion *cmp; sl@0: GList *items; sl@0: gchar *prefix; sl@0: sl@0: #ifdef __SYMBIAN32__ sl@0: g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL); sl@0: g_set_print_handler(mrtPrintHandler); sl@0: #endif /*__SYMBIAN32__*/ sl@0: sl@0: sl@0: cmp = g_completion_new (NULL); sl@0: sl@0: items = NULL; sl@0: items = g_list_append (items, "a\302\243"); sl@0: items = g_list_append (items, "a\302\244"); sl@0: items = g_list_append (items, "bb"); sl@0: items = g_list_append (items, "bc"); sl@0: g_completion_add_items (cmp, items); sl@0: sl@0: items = g_completion_complete (cmp, "a", &prefix); sl@0: g_assert (!strcmp ("a\302", prefix)); sl@0: g_assert (g_list_length (items) == 2); sl@0: g_free (prefix); sl@0: sl@0: items = g_completion_complete_utf8 (cmp, "a", &prefix); sl@0: g_assert (!strcmp ("a", prefix)); sl@0: g_assert (g_list_length (items) == 2); sl@0: g_free (prefix); sl@0: sl@0: items = g_completion_complete (cmp, "b", &prefix); sl@0: g_assert (!strcmp ("b", prefix)); sl@0: g_assert (g_list_length (items) == 2); sl@0: g_free (prefix); sl@0: sl@0: items = g_completion_complete_utf8 (cmp, "b", &prefix); sl@0: g_assert (!strcmp ("b", prefix)); sl@0: g_assert (g_list_length (items) == 2); sl@0: g_free (prefix); sl@0: sl@0: items = g_completion_complete (cmp, "a", NULL); sl@0: g_assert (g_list_length (items) == 2); sl@0: sl@0: items = g_completion_complete_utf8 (cmp, "a", NULL); sl@0: g_assert (g_list_length (items) == 2); sl@0: sl@0: g_completion_free (cmp); sl@0: #if __SYMBIAN32__ sl@0: testResultXml("completion-test"); sl@0: #endif /* EMULATOR */ sl@0: sl@0: return 0; sl@0: }