From 8e68a209fd09c57b33c95cb402d2da728c42505e Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Sat, 30 Apr 2005 19:18:43 +0000 Subject: first try with guesing first try with guesing --- src/gipfel.cxx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/gipfel.cxx') diff --git a/src/gipfel.cxx b/src/gipfel.cxx index f3dc20d..4539913 100644 --- a/src/gipfel.cxx +++ b/src/gipfel.cxx @@ -1,5 +1,5 @@ // -// "$Id: gipfel.cxx,v 1.14 2005/04/30 09:42:47 hofmann Exp $" +// "$Id: gipfel.cxx,v 1.15 2005/04/30 21:18:43 hofmann Exp $" // // flpsed program. // @@ -90,6 +90,12 @@ void comp_cb(Fl_Widget *, void *) { } } +void guess_cb(Fl_Widget *, void *) { + if (gipf) { + gipf->guess(); + } +} + void about_cb() { fl_message("flpsed -- a pseudo PostScript editor\n" "(c) Johannes Hofmann 2004, 2005\n\n" @@ -207,6 +213,8 @@ int main(int argc, char** argv) { t->align(FL_ALIGN_LEFT); Fl_Button *b = new Fl_Button(200, 60, 20, 15, "comp"); b->callback(comp_cb); + Fl_Button *b1 = new Fl_Button(250, 60, 20, 15, "guess"); + b1->callback(guess_cb); scroll = new Fl_Scroll(0, 75, win->w(), win->h()-75); -- cgit v1.2.3