MCPcopy Create free account
hub / github.com/HandBrake/HandBrake / spin_configure

Function spin_configure

gtk/src/callbacks.c:1227–1243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1225}
1226
1227static void
1228spin_configure (signal_user_data_t *ud, const char *name,
1229 double val, double min, double max)
1230{
1231 GtkSpinButton *spin;
1232 GtkAdjustment *adj;
1233 double step, page, page_sz;
1234
1235 spin = GTK_SPIN_BUTTON(ghb_builder_widget(name));
1236
1237 adj = gtk_spin_button_get_adjustment(spin);
1238 step = gtk_adjustment_get_step_increment(adj);
1239 page = gtk_adjustment_get_page_increment(adj);
1240 page_sz = gtk_adjustment_get_page_size(adj);
1241
1242 adjustment_configure(adj, val, min, max, step, page, page_sz);
1243}
1244
1245void
1246ghb_scale_configure(

Callers 2

set_widget_rangesFunction · 0.85
ptop_widget_changed_cbFunction · 0.85

Calls 2

ghb_builder_widgetFunction · 0.85
adjustment_configureFunction · 0.85

Tested by

no test coverage detected