/usr/include/ggobi/display_tree.h is in ggobi 2.1.11-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | /* display_tree.h */
/*
* ggobi
* Copyright (C) AT&T, Duncan Temple Lang, Dianne Cook 1999-2005
*
* ggobi is free software; you may use, redistribute, and/or modify it
* under the terms of the Eclipse Public License, which is distributed
* with the source code and displayed on the ggobi web site,
* www.ggobi.org. For more information, contact the authors:
*
* Deborah F. Swayne dfs@research.att.com
* Di Cook dicook@iastate.edu
* Duncan Temple Lang duncan@wald.ucdavis.edu
* Andreas Buja andreas.buja@wharton.upenn.edu
*/
#ifndef DISPLAY_TREE_H
#define DISPLAY_TREE_H 1
#include <gtk/gtk.h>
#include "ggobi.h"
#include "vars.h"
/* Global variables for the window containing a tree listing
plots within displays */
typedef struct {
GtkWidget *window;
GtkWidget *tree;
GtkTreeModel *model;
} DisplayTree;
extern DisplayTree display_tree;
void display_add_tree(displayd *display);
gchar *display_tree_label(displayd *display);
GtkTreeView *plot_tree_display(ggobid *gg);
void show_display_tree_cb (GtkWidget *widget, ggobid *);
void show_display_tree (ggobid *gg, GtkWidget *widget);
void splot_add_tree(displayd *display, GtkTreeIter *parent);
gchar *splot_tree_label (splotd *, GGobiData *, ggobid *);
void display_tree_delete_cb(GtkWidget *w, GdkEvent *event, ggobid *gg);
gboolean tree_display_entry_remove(displayd *display, GtkWidget *w, ggobid *gg);
void display_tree_child_select(GtkTreeSelection *, gpointer cbd);
#endif
|