move all projects into the trunk directory
[lttv.git] / ltt / branches / poly / lttv / modules / gui / histogram / histocfv.h
diff --git a/ltt/branches/poly/lttv/modules/gui/histogram/histocfv.h b/ltt/branches/poly/lttv/modules/gui/histogram/histocfv.h
deleted file mode 100644 (file)
index 6f6ba95..0000000
+++ /dev/null
@@ -1,98 +0,0 @@
-/* This file is part of the Linux Trace Toolkit viewer
- * Copyright (C) 2006 Parisa heidari (inspired from CFV by Mathieu Desnoyers)
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License Version 2 as
- * published by the Free Software Foundation;
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, 
- * MA 02111-1307, USA.
- */
-
-
-
-#ifndef _HISTOCFV_H
-#define _HISTOCFV_H
-
-#include <gtk/gtk.h>
-#include <lttvwindow/mainwindow.h>
-#include <lttvwindow/lttv_plugin_tab.h>
-
-//#include "histobuttonwidget.h"
-
-extern GQuark LTT_NAME_CPU;
-
-
-#ifndef TYPE_histoDrawing_t_DEFINED
-#define TYPE_histoDrawing_t_DEFINED
-typedef struct _histoDrawing_t histoDrawing_t;
-#endif //TYPE_histoDrawing_t_DEFINED
-
-#ifndef TYPE_ButtonWidget_DEFINED
-#define TYPE_ButtonWidget_DEFINED
-typedef struct _ButtonWidget ButtonWidget;
-#endif //TYPE_ButtonWidget_DEFINED
-
-#ifndef TYPE_HistoControlFlowData_DEFINED
-#define TYPE_HistoControlFlowData_DEFINED
-typedef struct _HistoControlFlowData HistoControlFlowData;
-#endif //TYPE_HistoControlFlowData_DEFINED
-
-
-
-struct _HistoControlFlowData {
-
-  GtkWidget *top_widget;//The hbox containing buttons and drawing area.
-  LttvPluginTab *ptab;
-  Tab *tab; 
-  GtkWidget *box;
-  GtkWidget *ev_box;//for histogram
-  ButtonWidget *buttonwidget;
-
-  histoDrawing_t *drawing;
-  //GtkAdjustment *v_adjust ;//may be used later for scrollbar
-
-  /* Shown events information */
-//  TimeWindow time_window;
-//  LttTime current_time;
-  
-  //guint currently_Selected_Event  ;
-  GArray  *number_of_process;//number of events
-  guint background_info_waiting; /* Number of background requests waited for
-                                    in order to have all the info ready. */
-// For histogram  
-  guint max_height;
-
-  LttvFilter *histo_main_win_filter;
-  gboolean chunk_has_begun;
-} ;
-
-/* Control Flow Data constructor */
-HistoControlFlowData *guihistocontrolflow(LttvPluginTab *ptab);
-void
-guihistocontrolflow_destructor_full(HistoControlFlowData *histo_control_flow_data);
-void
-guihistocontrolflow_destructor(HistoControlFlowData *histo_control_flow_data);
-
-static inline GtkWidget *guihistocontrolflow_get_widget(
-                         HistoControlFlowData *histo_control_flow_data)
-{
-  return histo_control_flow_data->top_widget ;
-}
-
-static inline ButtonWidget *guihistocontrolflow_get_buttonwidget
-    (HistoControlFlowData *histo_control_flow_data)
-{
-    return histo_control_flow_data->buttonwidget ;
-}
-
-
-
-#endif // _HISTOCFV_H
This page took 0.023533 seconds and 4 git commands to generate.