00001 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */ 00002 /* 00003 find_replace_window.h 00004 find_replace_window.h - Windows used to find text and find and replace text in 00005 the opened hex documents. 00006 00007 (C) Copyright 2010 - 2011 Olivier Delhomme 00008 e-mail : heraia@delhomme.org 00009 URL : http://heraia.tuxfamily.org 00010 00011 This program is free software; you can redistribute it and/or modify 00012 it under the terms of the GNU General Public License as published by 00013 the Free Software Foundation; either version 2, or (at your option) 00014 any later version. 00015 00016 This program is distributed in the hope that it will be useful, 00017 but WITHOUT ANY WARRANTY; without even the implied warranty of 00018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00019 GNU General Public License for more details. 00020 00021 You should have received a copy of the GNU General Public License 00022 along with this program; if not, write to the Free Software 00023 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00024 */ 00025 /** 00026 * @file find_replace_window.c 00027 * Header file for the find window and the find and replace window 00028 */ 00029 #ifndef _HERAIA_FIND_REPLACE_WINDOW_H_ 00030 #define _HERAIA_FIND_REPLACE_WINDOW_H_ 00031 00032 extern void find_window_show(GtkWidget *widget, gpointer data); 00033 extern void find_window_init_interface(heraia_struct_t * main_struct); 00034 00035 extern void fr_window_show(GtkWidget *widget, gpointer data); 00036 extern void fr_window_init_interface(heraia_struct_t * main_struct); 00037 00038 extern void fdft_window_show(GtkWidget *widget, gpointer data); 00039 extern void fdft_window_init_interface(heraia_struct_t * main_struct); 00040 00041 #endif /* _HERAIA_FIND_REPLACE_WINDOW_H_ */