// // "$Id: GipfelWidget.cxx,v 1.18 2005/05/03 21:36:39 hofmann Exp $" // // PSEditWidget routines. // // Copyright 2004 by Johannes Hofmann // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Library General Public // License as published by the Free Software Foundation; either // version 2 of the License, or (at your option) any later version. // // This library 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 // Library General Public License for more details. // // You should have received a copy of the GNU Library General Public // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "GipfelWidget.H" static Fl_Menu_Item menuitems[] = { { "&File", 0, 0, 0, FL_SUBMENU }, { "&Open File...", FL_CTRL + 'o', NULL}, {0}, { 0 } }; GipfelWidget::GipfelWidget(int X,int Y,int W, int H): Fl_Widget(X, Y, W, H) { int i; img = NULL; pan = new Panorama(); cur_mountain = NULL; mb = NULL; marker = new Mountains(); for (i=0; i<=3; i++) { marker->add(new Mountain(i * 10, 0)); } fl_register_images(); } int GipfelWidget::load_image(const char *file) { img = new Fl_JPEG_Image(file); if (img == NULL) { return 1; } w(img->w()); h(img->h()); mb = new Fl_Menu_Button(x(),y(),w()+x(),h()+y(),"&popup"); mb->type(Fl_Menu_Button::POPUP3); mb->box(FL_NO_BOX); mb->menu(menuitems); return 0; } int GipfelWidget::load_data(const char *file) { return pan->load_file(file); } int GipfelWidget::set_viewpoint(const char *pos) { return pan->set_viewpoint(pos); } void GipfelWidget::draw() { Mountains *mnts; Mountain *m; int center_x = w() / 2; int center_y = h() / 2; int i; if (img == NULL) { return; } fl_push_clip(x(), y(), w(), h()); img->draw(x(),y(),w(),h(),0,0); fl_font(FL_HELVETICA, 8); mnts = pan->get_visible_mountains(); for (i=0; iget_num(); i++) { m = mnts->get(i); if (m == cur_mountain) { fl_color(FL_RED); } else { fl_color(FL_BLACK); } fl_xyline(center_x + m->x + x() - 2, center_y + m->y + y(), center_x + m->x + x() + 2); fl_yxline(center_x + m->x + x(), center_y + m->label_y + y() - 2, center_y + m->y + y() + 2); fl_draw(m->name, center_x + m->x + x(), center_y + m->label_y + y()); } for (i=0; iget_num(); i++) { m = marker->get(i); fl_color(FL_GREEN); fl_xyline(center_x + m->x + x() - 3, center_y + m->y + y(), center_x + m->x + x() + 3); fl_yxline(center_x + m->x + x(), center_y + m->y + y() - 3, center_y + m->y + y() + 3); } fl_pop_clip(); } void GipfelWidget::set_labels(Mountains *v) { int i, j, width, height; Mountain *m, *n; fl_font(FL_HELVETICA, 8); for (i=0; iget_num(); i++) { m = v->get(i); fl_measure(m->name, width, height); m->label_x = m->x + width; m->label_y = m->y; for (j=0; jget_num() && j < i; j++) { n = v->get(j); if (n->label_x >= m->x && n->label_y >= m->label_y - 1 && n->label_y <= m->label_y + height + 1) { m->label_y = n->label_y - height - 1; } } } } int GipfelWidget::set_cur_mountain(int m_x, int m_y) { Mountains *mnts = pan->get_visible_mountains(); Mountain *m; int center = w() / 2; int i; for (i=0; iget_num(); i++) { m = mnts->get(i); if (m_x - center >= m->x - 2 && m_x - center < m->x + 2) { cur_mountain = m; redraw(); return 0; } } for (i=0; iget_num(); i++) { m = marker->get(i); if (m_x - center >= m->x - 2 && m_x - center < m->x + 2) { cur_mountain = m; redraw(); return 0; } } cur_mountain = NULL; redraw(); return 1; } int GipfelWidget::set_mountain(int m_x, int m_y) { int ret; int center_x = w() / 2; int center_y = h() / 2; if (cur_mountain == NULL) { return 1; } ret = pan->set_mountain(cur_mountain, m_x - center_x, m_y - center_y); redraw(); return ret; } void GipfelWidget::set_center_angle(double a) { pan->set_center_angle(a); set_labels(pan->get_visible_mountains()); redraw(); } void GipfelWidget::set_nick_angle(double a) { pan->set_nick_angle(a); set_labels(pan->get_visible_mountains()); redraw(); } void GipfelWidget::set_tilt_angle(double a) { pan->set_tilt_angle(a); set_labels(pan->get_visible_mountains()); redraw(); } void GipfelWidget::set_scale(double s) { pan->set_scale(s); set_labels(pan->get_visible_mountains()); redraw(); } void GipfelWidget::set_height_dist_ratio(double r) { pan->set_height_dist_ratio(r); set_labels(pan->get_visible_mountains()); redraw(); } int GipfelWidget::comp_params() { pan->comp_params(); set_labels(pan->get_visible_mountains()); redraw(); } int GipfelWidget::guess() { pan->guess(marker); set_labels(pan->get_visible_mountains()); redraw(); } int GipfelWidget::update() { redraw(); Fl::wait(1.0); } int GipfelWidget::handle(int event) { int mark_x, mark_y; switch(event) { case FL_PUSH: if (Fl::event_button() == 1) { mark_x = Fl::event_x()-x(); mark_y = Fl::event_y()-y(); fprintf(stderr, "x %d, y %d\n", mark_x, mark_y); set_cur_mountain(mark_x, mark_y); Fl::focus(this); return 1; } break; case FL_DRAG: set_mountain(Fl::event_x()-x(), Fl::event_y()-y()); return 1; break; case FL_FOCUS: return 1; break; case FL_UNFOCUS: return 0; break; } return 0; }