move lttv to root
[lttv.git] / lttv / modules / gui / lttvwindow / lttvwindow / toolbar.c
diff --git a/lttv/modules/gui/lttvwindow/lttvwindow/toolbar.c b/lttv/modules/gui/lttvwindow/lttvwindow/toolbar.c
new file mode 100644 (file)
index 0000000..a01986d
--- /dev/null
@@ -0,0 +1,77 @@
+/* This file is part of the Linux Trace Toolkit viewer
+ * Copyright (C) 2003-2004 XangXiu Yang
+ *
+ * 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.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <lttv/lttv.h>
+#include <lttvwindow/toolbar.h>
+
+LttvToolbars *lttv_toolbars_new() {
+  return g_array_new(FALSE, FALSE, sizeof(LttvToolbarClosure));
+}
+
+/* MD: delete elements of the array also, but don't free pointed addresses
+ * (functions).
+ */
+void lttv_toolbars_destroy(LttvToolbars *h) {
+  g_debug("lttv_toolbars_destroy");
+  g_array_free(h, TRUE);
+}
+
+LttvToolbarClosure lttv_toolbars_add(LttvToolbars *h,
+    lttvwindow_viewer_constructor f,
+    char* tooltip, char ** pixmap, GtkWidget *widget)
+{
+  LttvToolbarClosure c;
+
+  c.con = f;
+  c.tooltip = tooltip;
+  c.pixmap = pixmap;
+  c.widget = widget;
+  if(h != NULL) g_array_append_val(h,c);
+
+  return c;
+}
+
+GtkWidget *lttv_toolbars_remove(LttvToolbars *h, lttvwindow_viewer_constructor f)
+{
+  LttvToolbarClosure * tmp;
+  guint i;
+  GtkWidget *widget;
+
+  for(i=0;i<h->len;i++){
+    tmp = & g_array_index(h, LttvToolbarClosure, i);
+    if(tmp->con == f) {
+      widget = tmp->widget;
+      break;
+    }
+  }
+  if(i<h->len){
+    g_array_remove_index(h, i);
+    return widget;
+  }else return NULL;
+}
+
+unsigned lttv_toolbars_number(LttvToolbars *h)
+{
+  return h->len;
+}
+
+
This page took 0.023627 seconds and 4 git commands to generate.