GwyGraphWindow

GwyGraphWindow — Graph display window

Synopsis




                    GwyGraphWindow;
                    GwyGraphWindowClass;
GtkWidget*          gwy_graph_window_new                (GwyGraph *graph);
GtkWidget*          gwy_graph_window_get_graph          (GwyGraphWindow *graphwindow);
void                gwy_graph_window_class_set_tooltips (GtkTooltips *tips);
GtkTooltips*        gwy_graph_window_class_get_tooltips (void);

Object Hierarchy


  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkContainer
                           +----GtkBin
                                 +----GtkWindow
                                       +----GwyGraphWindow

Implemented Interfaces

GwyGraphWindow implements AtkImplementorIface.

Description

GwyGraphWindow encapsulates a GwyGraph together with other controls and graph data view. You can create a graph window for a graph with gwy_graph_window_new().

Details

GwyGraphWindow

typedef struct _GwyGraphWindow GwyGraphWindow;


GwyGraphWindowClass

typedef struct {
    GtkWindowClass parent_class;

    void (*reserved1)(void);
    void (*reserved2)(void);
    void (*reserved3)(void);
    void (*reserved4)(void);
} GwyGraphWindowClass;


gwy_graph_window_new ()

GtkWidget*          gwy_graph_window_new                (GwyGraph *graph);

Creates a new window showing graph.

graph : A GwyGraph object containing the graph.
Returns : A newly created graph window as GtkWidget.

gwy_graph_window_get_graph ()

GtkWidget*          gwy_graph_window_get_graph          (GwyGraphWindow *graphwindow);

Returns the GwyGraph widget this graph window currently shows.

graphwindow : a graph window.
Returns : The currently shown GwyGraph widget. (Do not free).

gwy_graph_window_class_set_tooltips ()

void                gwy_graph_window_class_set_tooltips (GtkTooltips *tips);

Sets the tooltips object to use for adding tooltips to graph window parts.

This is a class method. It affects only newly created graph windows, existing graph windows will continue to use the tooltips they were constructed with.

If no class tooltips object is set before first GwyGraphWindow is created, the class instantiates one on its own. You can normally obtain it with gwy_graph_window_class_get_tooltips() then. The class takes a reference on the tooltips in either case.

tips : GtkTooltips object GwyGraphWindow should use for setting tooltips. A NULL value disables tooltips altogether.

gwy_graph_window_class_get_tooltips ()

GtkTooltips*        gwy_graph_window_class_get_tooltips (void);

Gets the tooltips object used for adding tooltips to Graph window parts.

Returns : The GtkTooltips object. (Do not free).