![]() |
![]() |
![]() |
Gwyddion Widgets Library Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Implemented Interfaces |
#include <libgwydgets/gwydgets.h> struct GwyGraphWindow; struct GwyGraphWindowClass; GtkWidget * gwy_graph_window_new (GwyGraph *graph
); GtkWidget * gwy_graph_window_get_graph (GwyGraphWindow *graphwindow
); GtkWidget * gwy_graph_window_get_graph_data (GwyGraphWindow *graphwindow
); GtkWidget * gwy_graph_window_get_graph_curves (GwyGraphWindow *graphwindow
); void gwy_graph_window_class_set_tooltips (GtkTooltips *tips
); GtkTooltips * gwy_graph_window_class_get_tooltips (void
);
GObject +----GInitiallyUnowned +----GtkObject +----GtkWidget +----GtkContainer +----GtkBin +----GtkWindow +----GwyGraphWindow
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()
.
struct GwyGraphWindowClass { GtkWindowClass parent_class; void (*reserved1)(void); void (*reserved2)(void); void (*reserved3)(void); void (*reserved4)(void); };
GtkWidget * gwy_graph_window_new (GwyGraph *graph
);
Creates a new window showing graph
.
|
A GwyGraph object containing the graph. |
Returns : |
A newly created graph window as GtkWidget. |
GtkWidget * gwy_graph_window_get_graph (GwyGraphWindow *graphwindow
);
Gets the graph widget a graph window currently shows.
|
A graph window. |
Returns : |
The currently shown GwyGraph. |
GtkWidget * gwy_graph_window_get_graph_data (GwyGraphWindow *graphwindow
);
Gets the graph data widget of a graph window.
|
A graph window. |
Returns : |
The GwyGraphData widget of this graph window. Its model and column layout must be considered private. |
Since 2.5
GtkWidget * gwy_graph_window_get_graph_curves (GwyGraphWindow *graphwindow
);
Gets the graph curves widget of a graph window.
|
A graph window. |
Returns : |
The GwyGraphCurves widget of this graph window. Its model and column layout must be considered private. |
Since 2.5
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.
|
GtkTooltips object GwyGraphWindow should use for setting tooltips.
A NULL value disables tooltips altogether. |
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). |