#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
#define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
-
/*****************************************************************************
* Drawing functions *
*****************************************************************************/
/* Function responsible for updating the exposed area.
* It must call processTrace() to ask for this update.
+ * Note : this function cannot clear the background, because it may
+ * erase drawing already present (SAFETY).
*/
void drawing_data_request(Drawing_t *Drawing,
GdkPixmap **Pixmap,
LttvTracesetContext * tsc =
get_traceset_context(control_flow_data->Parent_Window);
- gdk_draw_rectangle (*Pixmap,
- Drawing->Drawing_Area_V->style->white_gc,
- TRUE,
- x, y,
- width, // do not overlap
- height);
-
- //send_test_process(
+ //send_test_process(
//guicontrolflow_get_process_list(Drawing->Control_Flow_Data),
//Drawing);
//send_test_drawing(
/* New Pixmap, size of the configure event */
GdkPixmap *Pixmap = gdk_pixmap_new(widget->window,
- widget->allocation.width,
- widget->allocation.height,
+ widget->allocation.width + SAFETY,
+ widget->allocation.height + SAFETY,
-1);
g_critical("drawing configure event");
{
Drawing->Pixmap = gdk_pixmap_new(
widget->window,
- widget->allocation.width,
- widget->allocation.height,
+ widget->allocation.width + SAFETY,
+ widget->allocation.height + SAFETY,
//ProcessList_get_height
// (GuiControlFlow_get_Process_List(Drawing->Control_Flow_Data)),
-1);
- Drawing->width = widget->allocation.width;
- Drawing->height = widget->allocation.height;
-g_critical("init data");
- /* Initial data request */
- drawing_data_request(Drawing, &Drawing->Pixmap, 0, 0,
+ Drawing->width = widget->allocation.width;
+ Drawing->height = widget->allocation.height;
+
+ // Clear the image
+ gdk_draw_rectangle (Drawing->Pixmap,
+ widget->style->white_gc,
+ TRUE,
+ 0, 0,
+ widget->allocation.width+SAFETY,
+ widget->allocation.height+SAFETY);
+
+ g_info("init data request");
+
+
+ /* Initial data request */
+ drawing_data_request(Drawing, &Drawing->Pixmap, 0, 0,
widget->allocation.width,
- widget->allocation.height);
+ widget->allocation.height);
}
// /* Draw empty background */
gdk_pixmap_unref(Drawing->Pixmap);
Drawing->Pixmap = Pixmap;
+
+ // Clear the bottom part of the image (SAFETY)
+ gdk_draw_rectangle (Pixmap,
+ widget->style->white_gc,
+ TRUE,
+ 0, Drawing->height+SAFETY,
+ Drawing->width+SAFETY, // do not overlap
+ (widget->allocation.height) - Drawing->height);
+ // Clear the right part of the image (SAFETY)
+ gdk_draw_rectangle (Pixmap,
+ widget->style->white_gc,
+ TRUE,
+ Drawing->width+SAFETY, 0,
+ (widget->allocation.width) - Drawing->width, // do not overlap
+ Drawing->height+SAFETY);
- /* Request data for missing space */
-g_critical("missing data");
- drawing_data_request(Drawing, &Pixmap, Drawing->width, 0,
- widget->allocation.width - Drawing->width,
+ /* Clear the backgound for data request, but not SAFETY */
+ gdk_draw_rectangle (Pixmap,
+ Drawing->Drawing_Area_V->style->white_gc,
+ TRUE,
+ Drawing->width + SAFETY, 0,
+ widget->allocation.width - Drawing->width, // do not overlap
+ widget->allocation.height+SAFETY);
+ /* Request data for missing space */
+ g_info("missing data request");
+ drawing_data_request(Drawing, &Pixmap, Drawing->width, 0,
+ widget->allocation.width - Drawing->width,
widget->allocation.height);
// we do not request data vertically!
// drawing_data_request(Drawing, &Pixmap, 0, Drawing->height,
// widget->allocation.width -
// Drawing->width,
// widget->allocation.height);
-
- // Clear the bottom part of the image
- gdk_draw_rectangle (Pixmap,
- widget->style->white_gc,
- TRUE,
- 0, Drawing->height,
- Drawing->width, // do not overlap
- widget->allocation.height - Drawing->height);
-
Drawing->width = widget->allocation.width;
Drawing->height = widget->allocation.height;
/* Allocate a new pixmap with new height */
GdkPixmap *Pixmap = gdk_pixmap_new(Drawing->Drawing_Area_V->window,
- Drawing->width,
- Drawing->height + height,
+ Drawing->width + SAFETY,
+ Drawing->height + height + SAFETY,
-1);
/* Copy the high region */
Drawing->Pixmap,
0, 0,
0, 0,
- Drawing->width, y);
+ Drawing->width + SAFETY, y);
Drawing->Drawing_Area_V->style->black_gc,
TRUE,
0, y,
- Drawing->width, // do not overlap
+ Drawing->width + SAFETY, // do not overlap
height);
Drawing->Pixmap,
0, y,
0, y + height,
- Drawing->width, Drawing->height - y);
+ Drawing->width, Drawing->height - y + SAFETY);
/* Allocate a new pixmap with new height */
GdkPixmap *Pixmap = gdk_pixmap_new(
Drawing->Drawing_Area_V->window,
- Drawing->width,
- Drawing->height - height,
+ Drawing->width + SAFETY,
+ Drawing->height - height + SAFETY,
-1);
/* Copy the high region */
Drawing->Pixmap,
0, 0,
0, 0,
- Drawing->width, y);
+ Drawing->width + SAFETY, y);
Drawing->Pixmap,
0, y + height,
0, y,
- Drawing->width, Drawing->height - y - height);
+ Drawing->width, Drawing->height - y - height + SAFETY);
if (Drawing->Pixmap)
* process position */
guint pid = tfs->process->pid;
LttTime birth = tfs->process->creation_time;
+ gchar *name = strdup("name");
guint y = 0, height = 0, pl_height = 0;
HashedProcessData *Hashed_Process_Data = NULL;
processlist_add(process_list,
pid,
&birth,
+ name,
&pl_height,
&Hashed_Process_Data);
+ g_free(name);
drawing_insert_square( Event_Request->Control_Flow_Data->Drawing, y, height);
}
x, 0,
0, 0,
-1, -1);
+
+ convert_time_to_pixels(
+ *ns,
+ new_end,
+ old_end,
+ width,
+ &x);
*Old_Time_Window = *New_Time_Window;
+ /* Clear the data request background, but not SAFETY */
+ gdk_draw_rectangle (control_flow_data->Drawing->Pixmap,
+ control_flow_data->Drawing->Drawing_Area_V->style->white_gc,
+ TRUE,
+ x+SAFETY, 0,
+ control_flow_data->Drawing->width - x, // do not overlap
+ control_flow_data->Drawing->height+SAFETY);
/* Get new data for the rest. */
drawing_data_request(control_flow_data->Drawing,
&control_flow_data->Drawing->Pixmap,
-1, -1);
*Old_Time_Window = *New_Time_Window;
+
+ /* Clean the data request background */
+ gdk_draw_rectangle (control_flow_data->Drawing->Pixmap,
+ control_flow_data->Drawing->Drawing_Area_V->style->white_gc,
+ TRUE,
+ 0, 0,
+ x, // do not overlap
+ control_flow_data->Drawing->height+SAFETY);
/* Get new data for the rest. */
drawing_data_request(control_flow_data->Drawing,
&control_flow_data->Drawing->Pixmap,
g_info("scrolling far");
/* Cannot reuse any part of the screen : far jump */
*Old_Time_Window = *New_Time_Window;
+
+
+ gdk_draw_rectangle (control_flow_data->Drawing->Pixmap,
+ control_flow_data->Drawing->Drawing_Area_V->style->white_gc,
+ TRUE,
+ 0, 0,
+ control_flow_data->Drawing->width+SAFETY, // do not overlap
+ control_flow_data->Drawing->height+SAFETY);
drawing_data_request(control_flow_data->Drawing,
&control_flow_data->Drawing->Pixmap,
g_info("zoom");
*Old_Time_Window = *New_Time_Window;
-
+
+ gdk_draw_rectangle (control_flow_data->Drawing->Pixmap,
+ control_flow_data->Drawing->Drawing_Area_V->style->white_gc,
+ TRUE,
+ 0, 0,
+ control_flow_data->Drawing->width+SAFETY, // do not overlap
+ control_flow_data->Drawing->height+SAFETY);
+
+
drawing_data_request(control_flow_data->Drawing,
&control_flow_data->Drawing->Pixmap,
0, 0,