summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2005-11-10 20:46:19 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2005-11-10 20:46:19 +0100
commit370cd0086f94d6740a56b3f6f574c47350343919 (patch)
tree5a47c07b520b15d770c0c2ba68c8655ba22ee28f /src
parentb5c43579f9aa405a7d6d3ded0973341afde8d0c2 (diff)
remove hide_value slider.
Diffstat (limited to 'src')
-rw-r--r--src/gipfel.cxx20
1 files changed, 2 insertions, 18 deletions
diff --git a/src/gipfel.cxx b/src/gipfel.cxx
index f283704..7bec5c6 100644
--- a/src/gipfel.cxx
+++ b/src/gipfel.cxx
@@ -56,7 +56,6 @@ char *data_file = DEFAULT_DATAFILE;
GipfelWidget *gipf = NULL;
Fl_Dial *s_center = NULL;
Fl_Slider *s_nick, *s_scale, *s_tilt, *s_height_dist, *s_track_width;
-Fl_Slider *s_hide_value;
Fl_Value_Input *i_view_lat, *i_view_long, *i_view_height;
Fl_Box *b_viewpoint;
Fl_Menu_Bar *mb;
@@ -140,10 +139,6 @@ void track_width_cb(Fl_Value_Input* o, void*) {
gipf->set_track_width(o->value());
}
-void hide_value_cb(Fl_Value_Input* o, void*) {
- gipf->set_hide_value(o->value());
-}
-
void viewpoint_cb(Fl_Value_Input* o, void*) {
Hill *m = choose_hill(gipf->get_mountains(), "Choose Viewpoint");
if (m) {
@@ -273,17 +268,6 @@ create_control_window() {
s_track_width->callback((Fl_Callback*)track_width_cb);
s_track_width->align(FL_ALIGN_TOP);
- s_hide_value = new Fl_Value_Slider(235, 210, 160, 15, "Hide Value");
- s_hide_value->type(1);
- s_hide_value->box(FL_THIN_DOWN_BOX);
- s_hide_value->labelsize(10);
- s_hide_value->step(0.01);
- s_hide_value->bounds(0.1, 8.0);
- s_hide_value->value(1.0);
- s_hide_value->slider(FL_UP_BOX);
- s_hide_value->callback((Fl_Callback*)hide_value_cb);
- s_hide_value->align(FL_ALIGN_TOP);
-
// Viewpoint Stuff
b_viewpoint = new Fl_Box(FL_DOWN_BOX, 30, 255, 300, 80, "");
@@ -308,10 +292,10 @@ create_control_window() {
i_view_height->callback((Fl_Callback*)view_height_cb);
// Buttons
- Fl_Button *b = new Fl_Button(240, 240, 50, 15, "comp");
+ Fl_Button *b = new Fl_Button(240, 210, 50, 15, "comp");
b->color(FL_RED);
b->callback(comp_cb);
- Fl_Button *b1 = new Fl_Button(320, 240, 50, 15, "guess");
+ Fl_Button *b1 = new Fl_Button(320, 210, 50, 15, "guess");
b1->callback(guess_cb);
b1->color(FL_GREEN);