ChartTest: spare redraw() removed.
This commit is contained in:
parent
78c5475619
commit
5db6a7dfd6
|
@ -425,7 +425,6 @@ int main (string[] args) {
|
||||||
|
|
||||||
return true;//ret;
|
return true;//ret;
|
||||||
});
|
});
|
||||||
da.queue_draw_area(0, 0, da.get_allocated_width(), da.get_allocated_height());
|
|
||||||
|
|
||||||
da.button_press_event.connect((event) => {
|
da.button_press_event.connect((event) => {
|
||||||
if (!point_in_chart(chart, event.x, event.y)) return true;
|
if (!point_in_chart(chart, event.x, event.y)) return true;
|
||||||
|
@ -446,14 +445,12 @@ int main (string[] args) {
|
||||||
case 2: // start zoom area selection
|
case 2: // start zoom area selection
|
||||||
sel_x0 = sel_x1 = event.x;
|
sel_x0 = sel_x1 = event.x;
|
||||||
sel_y0 = sel_y1 = event.y;
|
sel_y0 = sel_y1 = event.y;
|
||||||
da.queue_draw_area(0, 0, da.get_allocated_width(), da.get_allocated_height());
|
|
||||||
mouse_state = MouseState.DRAW_SELECTION;
|
mouse_state = MouseState.DRAW_SELECTION;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3: // start moving
|
case 3: // start moving
|
||||||
mov_x0 = event.x;
|
mov_x0 = event.x;
|
||||||
mov_y0 = event.y;
|
mov_y0 = event.y;
|
||||||
da.queue_draw_area(0, 0, da.get_allocated_width(), da.get_allocated_height());
|
|
||||||
mouse_state = MouseState.MOVING_CHART;
|
mouse_state = MouseState.MOVING_CHART;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -472,7 +469,6 @@ int main (string[] args) {
|
||||||
//mouse_state = MouseState.FREE;
|
//mouse_state = MouseState.FREE;
|
||||||
} else { // add cursor
|
} else { // add cursor
|
||||||
chart.add_active_cursor ();
|
chart.add_active_cursor ();
|
||||||
da.queue_draw_area(0, 0, da.get_allocated_width(), da.get_allocated_height());
|
|
||||||
mouse_state = MouseState.FREE;
|
mouse_state = MouseState.FREE;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -489,7 +485,6 @@ int main (string[] args) {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
da.queue_draw_area(0, 0, da.get_allocated_width(), da.get_allocated_height());
|
|
||||||
mouse_state = MouseState.FREE;
|
mouse_state = MouseState.FREE;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue