1 /*
2  *  inspect.h
3  *
4  *  Copyright 2012 Dimitar Toshkov Zhekov <dimitar.zhekov@gmail.com>
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program. If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef INSPECT_H
21 
22 void on_inspect_variable(GArray *nodes);
23 void on_inspect_format(GArray *nodes);
24 void on_inspect_evaluate(GArray *nodes);
25 void on_inspect_assign(GArray *nodes);
26 void on_inspect_children(GArray *nodes);
27 void on_inspect_ndeleted(GArray *nodes);
28 void on_inspect_path_expr(GArray *nodes);
29 void on_inspect_changelist(GArray *nodes);
30 void on_inspect_signal(const char *name);
31 
32 void inspects_clear(void);
33 gboolean inspects_update(void);
34 void inspects_apply(void);
35 
36 #define EXPAND_MAX 99999
37 
38 void inspect_add(const char *text);
39 void inspects_update_state(DebugState state);
40 void inspects_delete_all(void);
41 void inspects_load(GKeyFile *config);
42 void inspects_save(GKeyFile *config);
43 
44 void inspect_init(void);
45 void inspect_finalize(void);
46 
47 #define INSPECT_H 1
48 #endif
49