summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-05-30 10:57:22 +0100
committerVincent Sanders <vince@kyllikki.org>2016-05-30 10:57:22 +0100
commit903c4dbef9fae1e24a66a8ff7b745c799f6726cd (patch)
treec158e403ac0cd9c8ca79a3606baefdc2556be76b /desktop
parent2dab078f21db7dec5a29079daf9a5f0a06a6e0bd (diff)
downloadnetsurf-903c4dbef9fae1e24a66a8ff7b745c799f6726cd.tar.gz
netsurf-903c4dbef9fae1e24a66a8ff7b745c799f6726cd.tar.bz2
move search header into public API
Diffstat (limited to 'desktop')
-rw-r--r--desktop/gui_factory.c2
-rw-r--r--desktop/gui_search.h75
2 files changed, 1 insertions, 76 deletions
diff --git a/desktop/gui_factory.c b/desktop/gui_factory.c
index 07848ee02..0aba19751 100644
--- a/desktop/gui_factory.c
+++ b/desktop/gui_factory.c
@@ -34,7 +34,7 @@
#include "desktop/gui_fetch.h"
#include "desktop/gui_misc.h"
#include "desktop/gui_window.h"
-#include "desktop/gui_search.h"
+#include "netsurf/search.h"
#include "desktop/gui_clipboard.h"
#include "desktop/gui_utf8.h"
#include "desktop/gui_layout.h"
diff --git a/desktop/gui_search.h b/desktop/gui_search.h
deleted file mode 100644
index 0b02ac8bb..000000000
--- a/desktop/gui_search.h
+++ /dev/null
@@ -1,75 +0,0 @@
-/*
- * Copyright 2014 Vincent Sanders <vince@netsurf-browser.org>
- *
- * 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/>.
- */
-
-/**
- * \file
- *
- * Interface to platform-specific search operations.
- */
-
-#ifndef _NETSURF_DESKTOP_GUI_SEARCH_H_
-#define _NETSURF_DESKTOP_GUI_SEARCH_H_
-
-/**
- * function table for page text search.
- */
-struct gui_search_table {
- /**
- * Change the displayed search status.
- *
- * \param found search pattern matched in text
- * \param p gui private data pointer provided with search callbacks
- */
- void (*status)(bool found, void *p);
-
- /**
- * display hourglass while searching.
- *
- * \param active start/stop indicator
- * \param p gui private data pointer provided with search callbacks
- */
- void (*hourglass)(bool active, void *p);
-
- /**
- * add search string to recent searches list
- * front has full liberty how to implement the bare notification;
- * core gives no guarantee of the integrity of the string
- *
- * \param string search pattern
- * \param p gui private data pointer provided with search callbacks
- */
- void (*add_recent)(const char *string, void *p);
-
- /**
- * activate search forwards button in gui
- *
- * \param active activate/inactivate
- * \param p gui private data pointer provided with search callbacks
- */
- void (*forward_state)(bool active, void *p);
-
- /**
- * activate search back button in gui
- *
- * \param active activate/inactivate
- * \param p gui private data pointer provided with search callbacks
- */
- void (*back_state)(bool active, void *p);
-};
-
-#endif