summaryrefslogtreecommitdiff
path: root/gtk/gtk_completion.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2011-01-29 23:40:22 +0000
committerVincent Sanders <vince@netsurf-browser.org>2011-01-29 23:40:22 +0000
commit42f89d4e0b35bbe768918305b624e20ef654d619 (patch)
treede555d8fc6dcf8c1ed61c73301552bf0a9e06b8e /gtk/gtk_completion.c
parentcd5950936ade8320f3801ed213df41153e573f8b (diff)
downloadnetsurf-42f89d4e0b35bbe768918305b624e20ef654d619.tar.gz
netsurf-42f89d4e0b35bbe768918305b624e20ef654d619.tar.bz2
fixup gtk source file names
svn path=/trunk/netsurf/; revision=11529
Diffstat (limited to 'gtk/gtk_completion.c')
-rw-r--r--gtk/gtk_completion.c74
1 files changed, 0 insertions, 74 deletions
diff --git a/gtk/gtk_completion.c b/gtk/gtk_completion.c
deleted file mode 100644
index 8566f1c6d..000000000
--- a/gtk/gtk_completion.c
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Copyright 2006 Rob Kendrick <rjek@rjek.com>
- *
- * This file is part of NetSurf, http://www.netsurf-browser.org/
- *
- * NetSurf is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * NetSurf 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include <gtk/gtk.h>
-#include "gtk/gtk_completion.h"
-#include "content/urldb.h"
-#include "utils/log.h"
-#include "desktop/options.h"
-
-GtkListStore *nsgtk_completion_list;
-
-static void nsgtk_completion_empty(void);
-static bool nsgtk_completion_udb_callback(const char *url,
- const struct url_data *data);
-
-void nsgtk_completion_init(void)
-{
- nsgtk_completion_list = gtk_list_store_new(1, G_TYPE_STRING);
-
-}
-
-gboolean nsgtk_completion_match(GtkEntryCompletion *completion,
- const gchar *key,
- GtkTreeIter *iter,
- gpointer user_data)
-{
- char *b[4096]; /* no way of finding out its length :( */
- gtk_tree_model_get(GTK_TREE_MODEL(nsgtk_completion_list), iter,
- 0, b, -1);
-
- /* TODO: work out why this works, when there's no code to implement
- * it. I boggle. */
-
- return TRUE;
-
-}
-
-void nsgtk_completion_empty(void)
-{
- gtk_list_store_clear(nsgtk_completion_list);
-}
-
-bool nsgtk_completion_udb_callback(const char *url, const struct url_data *data)
-{
- GtkTreeIter iter;
-
- if (data->visits != 0) {
- gtk_list_store_append(nsgtk_completion_list, &iter);
- gtk_list_store_set(nsgtk_completion_list, &iter, 0, url, -1);
- }
- return true;
-}
-
-void nsgtk_completion_update(const char *prefix)
-{
- nsgtk_completion_empty();
- if (option_url_suggestion == true)
- urldb_iterate_partial(prefix, nsgtk_completion_udb_callback);
-}