| Top |
GObject
╰── GInitiallyUnowned
╰── GtkWidget
╰── GtkContainer
╰── GtkBin
╰── GtkWindow
╰── GtkDialog
╰── GwyGraphCurveDialog
GtkWidget *
gwy_graph_curve_dialog_new (void);
Creates a new dialog for modifying properties of graph curves.
The dialog is useless without a curve model. Use gwy_graph_curve_dialog_set_model() to set it, or create the dialog
directly with a model using gwy_graph_curve_dialog_new_with_model().
[constructor]
GtkWidget *
gwy_graph_curve_dialog_new_with_model (GwyGraphCurveModel *cmodel);
Creates a new dialog for modifying properties of graph curves using a graph curve model.
[constructor]
GwyGraphCurveModel *
gwy_graph_curve_dialog_get_model (GwyGraphCurveDialog *dialog);
Gets the curve model of a graph curve property dialog.
void gwy_graph_curve_dialog_set_model (GwyGraphCurveDialog *dialog,GwyGraphCurveModel *cmodel);
Switches a graph curve property dialog to a new curve model.
void gwy_graph_curve_dialog_set_switching (GwyGraphCurveDialog *dialog,gboolean prev_possible,gboolean next_possible);
Controls whether switching to previous and next curve is allowed in a graph curve properties dialog.
“next” signalvoid user_function (GwyGraphCurveDialog *gwygraphareadialog, gpointer user_data)
The ::next signal is emitted when the Next button is clicked and the next curve should be edited. The dialog itself does not switch curves because it only knows about the curve currently being edited.
gwygraphareadialog |
The GwyGraphCurveDialog which received the signal. |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run First
“previous” signalvoid user_function (GwyGraphCurveDialog *gwygraphareadialog, gpointer user_data)
The ::previous signal is emitted when the Prev button is clicked and the previous curve should be edited. The dialog itself does not switch curves because it only knows about the curve currently being edited.
gwygraphareadialog |
The GwyGraphCurveDialog which received the signal. |
|
user_data |
user data set when the signal handler was connected. |
Flags: Run First