change function names, fixes
[lttv.git] / ltt / branches / poly / lttv / modules / guiControlFlow / Event_Hooks.c
index bc278874d8561e79752a8bd4a5dd8b232f2c6dbd..aa44c659cf9d097d3beffaa31e180bc798310bd9 100644 (file)
  *****************************************************************************/
 
 
+//#define PANGO_ENABLE_BACKEND
 #include <gtk/gtk.h>
 #include <gdk/gdk.h>
 #include <glib.h>
 
+//#include <pango/pango.h>
+
 #include <lttv/hook.h>
 #include <lttv/common.h>
 
 #include "Event_Hooks.h"
 #include "CFV.h"
 #include "Process_List.h"
+#include "Drawing.h"
+#include "CFV-private.h"
+
+
+/* NOTE : no drawing data should be sent there, as the drawing widget
+ * has not been initialized */
+void send_test_drawing(ProcessList *Process_List,
+                       Drawing_t *Drawing,
+                       GdkPixmap *Pixmap,
+                       gint x, gint y, // y not used here?
+                       gint width,
+                       gint height) // height won't be used here ?
+{
+       int i;
+       ProcessInfo Process_Info = {10000, 12000, 55600};
+       //ProcessInfo Process_Info = {156, 14000, 55500};
+       GtkTreeRowReference *got_RowRef;
+       PangoContext *context;
+       PangoLayout *layout;
+       PangoFontDescription *FontDesc;// = pango_font_description_new();
+       gint Font_Size;
+
+       /* Sent text data */
+       layout = gtk_widget_create_pango_layout(Drawing->Drawing_Area_V,
+                       NULL);
+       context = pango_layout_get_context(layout);
+       FontDesc = pango_context_get_font_description(context);
+       Font_Size = pango_font_description_get_size(FontDesc);
+       pango_font_description_set_size(FontDesc, Font_Size-3*PANGO_SCALE);
+       
+       
+
+
+       LttTime birth;
+       birth.tv_sec = 12000;
+       birth.tv_nsec = 55500;
+       g_critical("we have : x : %u, y : %u, width : %u, height : %u", x, y, width, height);
+       processlist_get_process_pixels(Process_List,
+                                       1,
+                                       &birth,
+                                       &y,
+                                       &height);
+       
+       g_critical("we draw : x : %u, y : %u, width : %u, height : %u", x, y, width, height);
+       drawing_draw_line(
+               Drawing, Pixmap, x,
+               y+(height/2), x + width, y+(height/2),
+               Drawing->Drawing_Area_V->style->black_gc);
+
+       pango_layout_set_text(layout, "Test", -1);
+       gdk_draw_layout(Pixmap, Drawing->Drawing_Area_V->style->black_gc,
+                       0, y+height, layout);
+
+       birth.tv_sec = 14000;
+       birth.tv_nsec = 55500;
+
+       processlist_get_process_pixels(Process_List,
+                                       156,
+                                       &birth,
+                                       &y,
+                                       &height);
+       
+
+       drawing_draw_line(
+               Drawing, Pixmap, x,
+               y+(height/2), x + width, y+(height/2),
+               Drawing->Drawing_Area_V->style->black_gc);
+
+       g_critical("y : %u, height : %u", y, height);
+
+       birth.tv_sec = 12000;
+       birth.tv_nsec = 55700;
+
+       processlist_get_process_pixels(Process_List,
+                                       10,
+                                       &birth,
+                                       &y,
+                                       &height);
+       
+
+       drawing_draw_line(
+               Drawing, Pixmap, x,
+               y+(height/2), x + width, y+(height/2),
+               Drawing->Drawing_Area_V->style->black_gc);
+
+       g_critical("y : %u, height : %u", y, height);
+
+       for(i=0; i<10; i++)
+       {
+               birth.tv_sec = i*12000;
+               birth.tv_nsec = i*55700;
+
+               processlist_get_process_pixels(Process_List,
+                                               i,
+                                               &birth,
+                                               &y,
+                                               &height);
+               
+
+               drawing_draw_line(
+                       Drawing, Pixmap, x,
+                       y+(height/2), x + width, y+(height/2),
+                       Drawing->Drawing_Area_V->style->black_gc);
+
+               g_critical("y : %u, height : %u", y, height);
+
+       }
+
+       birth.tv_sec = 12000;
+       birth.tv_nsec = 55600;
+
+       processlist_get_process_pixels(Process_List,
+                                       10,
+                                       &birth,
+                                       &y,
+                                       &height);
+       
+
+       drawing_draw_line(
+               Drawing, Pixmap, x,
+               y+(height/2), x + width, y+(height/2),
+               Drawing->Drawing_Area_V->style->black_gc);
+
+       g_critical("y : %u, height : %u", y, height);
+
 
-void send_test_data(ProcessList *Process_List)
+       pango_font_description_set_size(FontDesc, Font_Size);
+       g_free(layout);
+       //g_free(context);
+}
+
+void send_test_process(ProcessList *Process_List, Drawing_t *Drawing)
 {
-       guint height;
+       guint height, y;
        int i;
        ProcessInfo Process_Info = {10000, 12000, 55600};
        //ProcessInfo Process_Info = {156, 14000, 55500};
        GtkTreeRowReference *got_RowRef;
 
        LttTime birth;
+
+       if(Process_List->Test_Process_Sent) return;
+
        birth.tv_sec = 12000;
        birth.tv_nsec = 55500;
 
-       ProcessList_add(Process_List,
+       processlist_add(Process_List,
                        1,
                        &birth,
-                       &height);
-
-       g_critical("height : %u", height);
+                       &y);
+       processlist_get_process_pixels(Process_List,
+                                       1,
+                                       &birth,
+                                       &y,
+                                       &height);
+       drawing_insert_square( Drawing, y, height);
+       
+       //g_critical("y : %u, height : %u", y, height);
        
        birth.tv_sec = 14000;
        birth.tv_nsec = 55500;
 
-       ProcessList_add(Process_List,
+       processlist_add(Process_List,
                        156,
                        &birth,
-                       &height);
-
-       g_critical("height : %u", height);
-
+                       &y);
+       processlist_get_process_pixels(Process_List,
+                                       156,
+                                       &birth,
+                                       &y,
+                                       &height);
+       drawing_insert_square( Drawing, y, height);
+       
+       //g_critical("y : %u, height : %u", y, height);
+       
        birth.tv_sec = 12000;
        birth.tv_nsec = 55700;
 
-       ProcessList_add(Process_List,
+       processlist_add(Process_List,
                        10,
                        &birth,
                        &height);
+       processlist_get_process_pixels(Process_List,
+                                       10,
+                                       &birth,
+                                       &y,
+                                       &height);
+       drawing_insert_square( Drawing, y, height);
+       
+       //g_critical("y : %u, height : %u", y, height);
+       
+       //drawing_insert_square( Drawing, height, 5);
 
        for(i=0; i<10; i++)
        {
                birth.tv_sec = i*12000;
                birth.tv_nsec = i*55700;
 
-               ProcessList_add(Process_List,
+               processlist_add(Process_List,
                                i,
                                &birth,
                                &height);
-
+               processlist_get_process_pixels(Process_List,
+                                               i,
+                                               &birth,
+                                               &y,
+                                               &height);
+               drawing_insert_square( Drawing, y, height);
+       
+       //      g_critical("y : %u, height : %u", y, height);
+       
        }
-       g_critical("height : %u", height);
+       //g_critical("height : %u", height);
 
        birth.tv_sec = 12000;
        birth.tv_nsec = 55600;
 
-       ProcessList_add(Process_List,
+       processlist_add(Process_List,
                        10,
                        &birth,
-                       &height);
-       g_critical("height : %u", height);
-
-       ProcessList_add(Process_List,
+                       &y);
+       processlist_get_process_pixels(Process_List,
+                                       10,
+                                       &birth,
+                                       &y,
+                                       &height);
+       drawing_insert_square( Drawing, y, height);
+       
+       //g_critical("y : %u, height : %u", y, height);
+       
+       processlist_add(Process_List,
                        10000,
                        &birth,
                        &height);
-       g_critical("height : %u", height);
+       processlist_get_process_pixels(Process_List,
+                                       10000,
+                                       &birth,
+                                       &y,
+                                       &height);
+       drawing_insert_square( Drawing, y, height);
+       
+       //g_critical("y : %u, height : %u", y, height);
+       
+       //drawing_insert_square( Drawing, height, 5);
+       //g_critical("height : %u", height);
 
 
-       ProcessList_remove(     Process_List,
+       processlist_get_process_pixels(Process_List,
+                               10000,
+                               &birth,
+                               &y, &height);
+       processlist_remove(     Process_List,
                                10000,
                                &birth);
+
+       drawing_remove_square( Drawing, y, height);
        
        if(got_RowRef = 
                (GtkTreeRowReference*)g_hash_table_lookup(
@@ -98,6 +287,8 @@ void send_test_data(ProcessList *Process_List)
                
        }
 
+       Process_List->Test_Process_Sent = TRUE;
+
 }
 
 
@@ -111,16 +302,26 @@ void send_test_data(ProcessList *Process_List)
  * @return The widget created.
  */
 GtkWidget *
-hGuiControlFlow(mainWindow *pmParentWindow)
+h_guicontrolflow(MainWindow *pmParentWindow, LttvTracesetSelector * s, char * key)
 {
        g_critical("hGuiControlFlow");
-       ControlFlowData *Control_Flow_Data = GuiControlFlow() ;
-
-       return GuiControlFlow_get_Widget(Control_Flow_Data) ;
+       ControlFlowData *Control_Flow_Data = guicontrolflow() ;
+
+       get_time_window(pmParentWindow,
+                       GuiControlFlow_get_Time_Window(Control_Flow_Data));
+       get_current_time(pmParentWindow,
+                       GuiControlFlow_get_Current_Time(Control_Flow_Data));
+
+       // Unreg done in the GuiControlFlow_Destructor
+       reg_update_time_window(update_time_window_hook, Control_Flow_Data,
+                               pmParentWindow);
+       reg_update_current_time(update_current_time_hook, Control_Flow_Data,
+                               pmParentWindow);
+       return guicontrolflow_get_widget(Control_Flow_Data) ;
        
 }
 
-int Event_Selected_Hook(void *hook_data, void *call_data)
+int event_selected_hook(void *hook_data, void *call_data)
 {
        ControlFlowData *Control_Flow_Data = (ControlFlowData*) hook_data;
        guint *Event_Number = (guint*) call_data;
@@ -130,7 +331,7 @@ int Event_Selected_Hook(void *hook_data, void *call_data)
 //     Control_Flow_Data->Currently_Selected_Event = *Event_Number;
 //     Control_Flow_Data->Selected_Event = TRUE ;
        
-//     Tree_V_set_cursor(Control_Flow_Data);
+//     tree_v_set_cursor(Control_Flow_Data);
 
 }
 
@@ -138,7 +339,7 @@ int Event_Selected_Hook(void *hook_data, void *call_data)
 /* Hook called before drawing. Gets the initial context at the beginning of the
  * drawing interval and copy it to the context in Event_Request.
  */
-int Draw_Before_Hook(void *hook_data, void *call_data)
+int draw_before_hook(void *hook_data, void *call_data)
 {
        EventRequest *Event_Request = (EventRequest*)hook_data;
        EventsContext Events_Context = (EventsContext*)call_data;
@@ -168,7 +369,7 @@ int Draw_Before_Hook(void *hook_data, void *call_data)
  * The choice of lines'color is defined by the context of the last event for this
  * process.
  */
-int Draw_Event_Hook(void *hook_data, void *call_data)
+int draw_event_hook(void *hook_data, void *call_data)
 {
        EventRequest *Event_Request = (EventRequest*)hook_data;
        
@@ -176,7 +377,7 @@ int Draw_Event_Hook(void *hook_data, void *call_data)
 }
 
 
-int Draw_After_Hook(void *hook_data, void *call_data)
+int draw_after_hook(void *hook_data, void *call_data)
 {
        EventRequest *Event_Request = (EventRequest*)hook_data;
        
@@ -184,3 +385,58 @@ int Draw_After_Hook(void *hook_data, void *call_data)
        return 0;
 }
 #endif
+
+
+
+
+void update_time_window_hook(void *hook_data, void *call_data)
+{
+       ControlFlowData *Control_Flow_Data = (ControlFlowData*) hook_data;
+       TimeWindow* Time_Window = 
+               guicontrolflow_get_time_window(Control_Flow_Data);
+       TimeWindow *New_Time_Window = ((TimeWindow*)call_data);
+
+       // As the time interval change will mostly be used for
+       // zoom in and out, it's not useful to keep old drawing
+       // sections, as scale will be changed.
+       
+
+       *Time_Window = *New_Time_Window;
+       g_critical("New time window HOOK : %u, %u to %u, %u",
+                       Time_Window->start_time.tv_sec,
+                       Time_Window->start_time.tv_nsec,
+                       Time_Window->time_width.tv_sec,
+                       Time_Window->time_width.tv_nsec);
+
+       drawing_data_request(Control_Flow_Data->Drawing,
+                       &Control_Flow_Data->Drawing->Pixmap,
+                       0, 0,
+                       Control_Flow_Data->Drawing->width,
+                       Control_Flow_Data->Drawing->height);
+
+       drawing_refresh(Control_Flow_Data->Drawing,
+                       0, 0,
+                       Control_Flow_Data->Drawing->width,
+                       Control_Flow_Data->Drawing->height);
+
+}
+
+void update_current_time_hook(void *hook_data, void *call_data)
+{
+       ControlFlowData *Control_Flow_Data = (ControlFlowData*) hook_data;
+       LttTime* Current_Time = 
+               guicontrolflow_get_current_time(Control_Flow_Data);
+       *Current_Time = *((LttTime*)call_data);
+       g_critical("New Current time HOOK : %u, %u", Current_Time->tv_sec,
+                                                       Current_Time->tv_nsec);
+
+       /* If current time is inside time interval, just move the highlight
+        * bar */
+
+       /* Else, we have to change the time interval. We have to tell it
+        * to the main window. */
+       /* The time interval change will take care of placing the current
+        * time at the center of the visible area */
+       
+}
+
This page took 0.037901 seconds and 4 git commands to generate.