Add config.h support : will fix the LARGEFILE problem
[lttv.git] / ltt / branches / poly / lttv / modules / gui / controlflow / processlist.c
index 6629babc0f8f5a3dba19463635af1571acf904c8..4ecef3d2cb452dbca8e44f35efe53287144ab2a4 100644 (file)
  * MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <gtk/gtk.h>
 #include <glib.h>
 #include <string.h>
  *                       Methods to synchronize process list                 *
  *****************************************************************************/
 
-//static inline guint get_cpu_number_from_name(GQuark name);
-  
-/* Enumeration of the columns */
-enum
-{
-  PROCESS_COLUMN,
-  PID_COLUMN,
-  PPID_COLUMN,
-  CPU_COLUMN,
-  BIRTH_S_COLUMN,
-  BIRTH_NS_COLUMN,
-  TRACE_COLUMN,
-  N_COLUMNS
-};
-
 
 gint process_sort_func  ( GtkTreeModel *model,
         GtkTreeIter *it_a,
@@ -94,27 +83,27 @@ gint process_sort_func  ( GtkTreeModel *model,
   if(a_pid == 0 &&  b_pid == 0) {
     /* If 0, order by CPU */
     if(a_cpu > b_cpu) return 1;
-    if(a_cpu < b_cpu) return 0;
+    if(a_cpu < b_cpu) return -1;
 
   } else { /* if not 0, order by pid */
 
     if(a_pid > b_pid) return 1;
-    if(a_pid < b_pid) return 0;
+    if(a_pid < b_pid) return -1;
   }
 
   /* Order by birth second */
 
   if(a_birth_s > b_birth_s) return 1;
-  if(a_birth_s < b_birth_s) return 0;
+  if(a_birth_s < b_birth_s) return -1;
   
 
   /* Order by birth nanosecond */
   if(a_birth_ns > b_birth_ns) return 1;
-  if(a_birth_ns < b_birth_ns) return 0;
+  if(a_birth_ns < b_birth_ns) return -1;
   
   /* Order by trace_num */
   if(a_trace > b_trace) return 1;
-  if(a_trace < b_trace) return 0;
+  if(a_trace < b_trace) return -1;
 
   return 0;
 
@@ -166,7 +155,7 @@ static void update_index_to_pixmap_each(ProcessInfo *key,
 }
 
 
-static void update_index_to_pixmap(ProcessList *process_list)
+void update_index_to_pixmap(ProcessList *process_list)
 {
   g_ptr_array_set_size(process_list->index_to_pixmap,
                        g_hash_table_size(process_list->process_hash));
@@ -288,7 +277,6 @@ void copy_pixmap_to_screen(ProcessList *process_list,
   if(process_list->index_to_pixmap->len == 0) return;
   guint cell_height = process_list->cell_height;
 
-  //cell_height = 24; //FIXME
   /* Get indexes */
   gint begin = floor(y/(double)cell_height);
   gint end = MIN(ceil((y+height)/(double)cell_height),
@@ -346,20 +334,22 @@ ProcessList *processlist_construct(void)
   process_list->process_list_widget = 
     gtk_tree_view_new_with_model
     (GTK_TREE_MODEL (process_list->list_store));
+
   g_object_unref (G_OBJECT (process_list->list_store));
 
-  gtk_tree_sortable_set_sort_func(
+  gtk_tree_sortable_set_default_sort_func(
       GTK_TREE_SORTABLE(process_list->list_store),
-      PID_COLUMN,
       process_sort_func,
       NULL,
       NULL);
-  
+
   gtk_tree_sortable_set_sort_column_id(
       GTK_TREE_SORTABLE(process_list->list_store),
-      PID_COLUMN,
+      GTK_TREE_SORTABLE_DEFAULT_SORT_COLUMN_ID,
       GTK_SORT_ASCENDING);
-  
+
+
   process_list->process_hash = g_hash_table_new_full(
       process_list_hash_fct, process_list_equ_fct,
       destroy_hash_key, destroy_hash_data
@@ -383,6 +373,11 @@ ProcessList *processlist_construct(void)
       NULL,
       &process_list->cell_height);
   
+  guint ypad;
+  g_object_get(G_OBJECT(renderer), "ypad", &ypad, NULL);
+
+  process_list->cell_height += ypad;
+  
   column = gtk_tree_view_column_new_with_attributes ( "Process",
                 renderer,
                 "text",
@@ -585,7 +580,6 @@ int processlist_add(  ProcessList *process_list,
 
   hashed_process_data->height = process_list->cell_height;
 
-  //hashed_process_data->height = 24; // FIXME
   g_assert(hashed_process_data->height != 0);
 
   *height = hashed_process_data->height * process_list->number_of_process;
This page took 0.024785 seconds and 4 git commands to generate.