Moving files, first attempt at gcrypt compatibility, more interface
[tinc] / src / pokey / interface.h
1 /*
2     interface.h -- header for interface.c
3     Copyright (C) 2002 Guus Sliepen <guus@sliepen.warande.net>,
4                   2002 Ivo Timmermans <itimmermans@bigfoot.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, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: interface.h,v 1.2 2002/04/28 12:46:26 zarq Exp $
21 */
22
23 #ifndef __TINC_INTERFACE_H__
24 #define __TINC_INTERFACE_H__
25
26 #include <gtk/gtk.h>
27 #include <glade/glade.h>
28 #include <libgnomeui/gnome-canvas.h>
29
30 #include "node.h"
31 #include "edge.h"
32
33 #define INTERFACE_FILE "pokey.glade"
34
35 typedef struct graph_t {
36   struct graph_t *attractors[20];
37   struct graph_t *repellors[20];
38   int nat;
39   int nrp;
40   node_t *node;
41 } graph_t;
42
43 struct if_subnet_data {
44   GnomeCanvasItem *item;           /* The gnome canvas item associated with the line */
45   GtkCTreeNode *ctn;
46 };
47
48 struct if_node_data {
49   double x, y;
50   int visible;
51   int id;
52   GnomeCanvasItem *item;
53   GtkCTreeNode *ctn;
54   GladeXML *hi_xml;
55 };
56
57 extern int build_graph;
58
59 void if_build_graph(void);
60 int init_interface(void);
61
62 #endif /* __TINC_INTERFACE_H__ */