X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=scdataviz.c;h=0ca44687a3af92efe46a5e09461dd6827ccaa7de;hb=9e58fff9554349ce00ede966b94275cd9318ed79;hp=1024a12275ebc422777c5f0805edc64fc9f2aa1e;hpb=07dd48ff5e45f3168ebaf267f33d92f5332c0b94;p=scdataviz diff --git a/scdataviz.c b/scdataviz.c index 1024a12..0ca4468 100644 --- a/scdataviz.c +++ b/scdataviz.c @@ -6,20 +6,22 @@ ** ** Holds the SC graphing widget. -Copyright (C) 2008 Joseph Pingenot -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. + Copyright (C) 2008 Joseph Pingenot -You should have received a copy of the GNU General Public License -along with this program. If not, see . + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . ** Started on Thu Jul 17 11:03:27 2008 Johnny Q. Hacker ** Last update Sun May 12 01:17:25 2002 Speed Blue @@ -44,6 +46,9 @@ int main(int argc, char *argv[]) g_signal_connect(G_OBJECT(window), "destroy", G_CALLBACK(gtk_main_quit), NULL); gtk_container_add(GTK_CONTAINER(window), graph); + graph_add_point(graph_widget_get_graph(graph), 5, 3); + graph_add_point(graph_widget_get_graph(graph), 8, 12); + graph_add_point(graph_widget_get_graph(graph), 11, 48); gtk_widget_show_all (window);