* It plots!!!!
[scdataviz] / scdataviz.c
1 /*
2 ** scdataviz.c
3 ** 
4 ** Made by (Johnny Q. Hacker)
5 ** Login   <solarion@johnathan>
6 ** 
7 ** Holds the SC graphing widget.
8
9
10
11     Copyright (C) 2008 Joseph Pingenot
12
13     This program is free software: you can redistribute it and/or modify
14     it under the terms of the GNU Affero General Public License as published by
15     the Free Software Foundation, either version 3 of the License, or
16     (at your option) any later version.
17
18     This program is distributed in the hope that it will be useful,
19     but WITHOUT ANY WARRANTY; without even the implied warranty of
20     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21     GNU Affero General Public License for more details.
22
23     You should have received a copy of the GNU Affero General Public License
24     along with this program.  If not, see <http://www.gnu.org/licenses/>.
25
26 ** Started on  Thu Jul 17 11:03:27 2008 Johnny Q. Hacker
27 ** Last update Sun May 12 01:17:25 2002 Speed Blue
28 */
29
30 #include <gtk/gtk.h>
31 #include <graphwidget.h>
32 #include <matdb-dotcode.h>
33
34 struct xy_properties {
35   GString *xprop;
36   GString *yprop;
37   Graph *graph;
38 };
39
40 static void put_mat_in_graph(gpointer key, gpointer value, gpointer user_data) {
41   struct xy_properties *propmap = user_data;
42   struct matdb_material *mat = value;
43   double *x, *y;
44   #ifdef DEBUG
45   fprintf(stderr, "put_mat_in_graph(%s) (x->%s, y->%s): ", (char*)key, propmap->xprop->str, propmap->yprop->str);
46   #endif
47   if(((x=g_hash_table_lookup(mat->properties, propmap->xprop->str)) != NULL)
48      && ((y=g_hash_table_lookup(mat->properties, propmap->yprop->str)) != NULL)) {
49     graph_add_point(propmap->graph, *x, *y);
50   #ifdef DEBUG
51     fprintf(stderr, "added (x->%s=%g, y->%s=%g)\n", propmap->xprop->str, *x, propmap->yprop->str, *y);
52   }else{
53     fprintf(stderr, "no such properties (x->%s, y->%s)\n", propmap->xprop->str, propmap->yprop->str);
54   #endif
55   }
56 }
57
58 int main(int   argc, char *argv[]) 
59 {
60     GtkWidget *window;
61     GtkWidget *button;
62     GtkWidget *graph;
63     GString *file = g_string_new("../matdb");
64     int err=0;
65     struct matdb *mdb = read_matdb_dotcode(file, &err);
66     //fprintf(stderr, "read_matdb_dotcode(%s, %d)=%x", file->str, err,
67     //(int)mdb);
68     fprintf(stderr, "err=%d\n", err);
69     print_matdb(mdb);
70     
71     
72     gtk_init (&argc, &argv);
73
74     
75     
76     window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
77     graph = graph_widget_new();
78
79     struct xy_properties propmap;
80     propmap.xprop = g_string_new("a_lc");
81     propmap.yprop = g_string_new("E_g_Gamma");
82     propmap.graph = graph_widget_get_graph(GRAPH_WIDGET(graph));
83     g_hash_table_foreach(mdb->materials, &put_mat_in_graph, &propmap);
84
85
86     //Connect signals
87     g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(gtk_main_quit), NULL);
88
89     gtk_container_add(GTK_CONTAINER(window), graph);
90     /*
91     graph_add_point(graph_widget_get_graph(graph), 5, 3);
92     graph_add_point(graph_widget_get_graph(graph), 8, 12);
93     graph_add_point(graph_widget_get_graph(graph), 11, 48);
94     */
95     
96     gtk_widget_show_all  (window);
97     
98     gtk_main ();
99     
100     return 0;
101 }