Drawing to drawing name change
[lttv.git] / ltt / branches / poly / lttv / modules / guiControlFlow / Process_List.h
index bd8f97ee8443859c650551c0db7b3445c905ebf1..d3272160e4fd6ee2ee9222f2ba60e6b6af233030 100644 (file)
@@ -29,22 +29,20 @@ typedef struct _ProcessInfo {
 
 typedef struct _HashedProcessData {
   
-  GtkTreeRowReference *RowRef;
+  GtkTreeRowReference *row_ref;
   DrawContext *draw_context;
 
 } HashedProcessData;
   
 struct _ProcessList {
   
-  GtkWidget *process_list_VC;
-  GtkListStore *Store_M;
+  GtkWidget *process_list_widget;
+  GtkListStore *list_store;
 
   /* A hash table by PID to speed up process position find in the list */
-  GHashTable *Process_Hash;
+  GHashTable *process_hash;
   
   guint number_of_process;
-  gboolean Test_Process_Sent;
-
 };
 
 
@@ -56,8 +54,7 @@ GtkWidget *processlist_get_widget(ProcessList *process_list);
 
 // out : success (0) and height
 int processlist_add(ProcessList *process_list, guint pid, LttTime *birth,
-    gchar *name,
-    guint *height, HashedProcessData **Hashed_Process_Data);
+    gchar *name, guint *height, HashedProcessData **hashed_process_data);
 // out : success (0) and height
 int processlist_remove(ProcessList *process_list, guint pid, LttTime *birth);
 
@@ -67,11 +64,11 @@ guint processlist_get_height(ProcessList *process_list);
 gint processlist_get_process_pixels(ProcessList *process_list,
         guint pid, LttTime *birth,
         guint *y, guint *height,
-        HashedProcessData **Hashed_Process_Data);
+        HashedProcessData **hashed_process_data);
 
 gint processlist_get_pixels_from_data(  ProcessList *process_list,
           ProcessInfo *process_info,
-          HashedProcessData *Hashed_Process_Data,
+          HashedProcessData *hashed_process_data,
           guint *y,
           guint *height);
 
This page took 0.02629 seconds and 4 git commands to generate.