Root/
Source at commit 8a1a3103964533b0d517a29312ddeabdab1d6271 created 4 years 11 months ago. By Werner Almesberger, inst.c (find_point_vec): correct indentation | |
---|---|
1 | /* |
2 | * gui_frame.h - GUI, frame window |
3 | * |
4 | * Written 2009, 2010, 2012 by Werner Almesberger |
5 | * Copyright 2009, 2010, 2012 by Werner Almesberger |
6 | * |
7 | * This program is free software; you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published by |
9 | * the Free Software Foundation; either version 2 of the License, or |
10 | * (at your option) any later version. |
11 | */ |
12 | |
13 | |
14 | #ifndef GUI_FRAME_H |
15 | #define GUI_FRAME_H |
16 | |
17 | #include <gtk/gtk.h> |
18 | |
19 | #include "obj.h" |
20 | |
21 | |
22 | extern int show_vars; |
23 | |
24 | |
25 | void reselect_var(struct var *var); |
26 | |
27 | void make_popups(void); |
28 | |
29 | void select_frame(struct frame *frame); |
30 | |
31 | void gui_frame_select_inst(struct inst *inst); |
32 | void gui_frame_deselect_inst(struct inst *inst); |
33 | |
34 | void build_frames(GtkWidget *vbox, int warp_width); |
35 | |
36 | #endif /* !GUI_FRAME_H */ |
37 |
Branches:
master