test data sent from hook file, square insert implemented
[lttv.git] / ltt / branches / poly / lttv / modules / guiControlFlow / Event_Hooks.h
CommitLineData
831a876d 1/* Event_hooks.c defines the hooks that are given to processTrace as parameter.
2 * These hooks call the Drawing API to draw the information on the screen,
3 * using information from Context, but mostly state (running, waiting...).
4 */
5
f0d936c0 6
7#ifndef _EVENT_HOOKS_H
8#define _EVENT_HOOKS_H
9
1ab818de 10#include <gtk/gtk.h>
11#include <lttv/mainWindow.h>
5f16133f 12#include "Process_List.h"
13
14void send_test_data(ProcessList *Process_List);
1ab818de 15
558aa013 16GtkWidget *hGuiControlFlow(mainWindow *pmParentWindow);
f0d936c0 17
18int Event_Selected_Hook(void *hook_data, void *call_data);
19
20/* Hook called before drawing. Gets the initial context at the beginning of the
21 * drawing interval and copy it to the context in Event_Request.
22 */
23int Draw_Before_Hook(void *hook_data, void *call_data);
24
25/*
26 * The draw event hook is called by the reading API to have a
27 * particular event drawn on the screen.
28 * @param hook_data ControlFlowData structure of the viewer.
29 * @param call_data Event context.
30 *
31 * This function basically draw lines and icons. Two types of lines are drawn :
32 * one small (3 pixels?) representing the state of the process and the second
33 * type is thicker (10 pixels?) representing on which CPU a process is running
34 * (and this only in running state).
35 *
36 * Extremums of the lines :
37 * x_min : time of the last event context for this process kept in memory.
38 * x_max : time of the current event.
39 * y : middle of the process in the process list. The process is found in the
40 * list, therefore is it's position in pixels.
41 *
42 * The choice of lines'color is defined by the context of the last event for this
43 * process.
44 */
45int Draw_Event_Hook(void *hook_data, void *call_data);
46
47int Draw_After_Hook(void *hook_data, void *call_data);
48
49#endif // _EVENT_HOOKS_H
This page took 0.023835 seconds and 4 git commands to generate.