Heraia  0.1.8
find_replace_window.h
Go to the documentation of this file.
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2 /*
3  find_replace_window.h
4  find_replace_window.h - Windows used to find text and find and replace text in
5  the opened hex documents.
6 
7  (C) Copyright 2010 - 2011 Olivier Delhomme
8  e-mail : heraia@delhomme.org
9  URL : http://heraia.tuxfamily.org
10 
11  This program is free software; you can redistribute it and/or modify
12  it under the terms of the GNU General Public License as published by
13  the Free Software Foundation; either version 2, or (at your option)
14  any later version.
15 
16  This program is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  GNU General Public License for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with this program; if not, write to the Free Software
23  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 */
25 /**
26  * @file find_replace_window.c
27  * Header file for the find window and the find and replace window
28  */
29 #ifndef _HERAIA_FIND_REPLACE_WINDOW_H_
30 #define _HERAIA_FIND_REPLACE_WINDOW_H_
31 
32 extern void find_window_show(GtkWidget *widget, gpointer data);
33 extern void find_window_init_interface(heraia_struct_t * main_struct);
34 
35 extern void fr_window_show(GtkWidget *widget, gpointer data);
36 extern void fr_window_init_interface(heraia_struct_t * main_struct);
37 
38 extern void fdft_window_show(GtkWidget *widget, gpointer data);
39 extern void fdft_window_init_interface(heraia_struct_t * main_struct);
40 
41 #endif /* _HERAIA_FIND_REPLACE_WINDOW_H_ */
void fr_window_show(GtkWidget *widget, gpointer data)
Show find and replace window.
This is the main structure.
Definition: libheraia.h:332
void find_window_show(GtkWidget *widget, gpointer data)
Show find window.
void find_window_init_interface(heraia_struct_t *main_struct)
Inits all the things in the find window (signal and such)
void fdft_window_init_interface(heraia_struct_t *main_struct)
Inits all the things in the find data from type window (signal and such)
void fr_window_init_interface(heraia_struct_t *main_struct)
Inits all the things in the find and replace window (signal and such)
void fdft_window_show(GtkWidget *widget, gpointer data)
Show find data from type window.