01: /*
02:  *  plot-win.h
03:  *  dde
04:  *
05:  *  Created by ashley on 01/12/2009.
06:  *  Copyright 2009 __MyCompanyName__. All rights reserved.
07:  *
08:  */
09: 
10: #include <gtk/gtk.h>
11: #include "dde-model.h"
12: #include "dde-graph2d.h"
13: 
14: struct _plotwin {
15:         GtkWidget *window;
16:         
17:         gint currentplot;
18: };
19: typedef struct _plotwin DDEPlotWin;
20: 
21: DDEPlotWin *make_plotwin(usercontrol *out);