信号

GtkSpinButton::output

声明

gboolean
output (
  GtkSpinButton* self,
  gpointer user_data
)

描述 [源]

发出以调整显示的值格式。

// show leading zeros
static gboolean
on_output (GtkSpinButton *spin,
           gpointer       data)
{
   char *text;
   int value;

   value = gtk_spin_button_get_value_as_int (spin);
   text = g_strdup_printf ("%02d", value);
   gtk_editable_set_text (GTK_EDITABLE (spin), text):
   g_free (text);

   return TRUE;
}
默认处理程序

默认处理程序在通过g_signal_connect()添加的处理程序之后调用。

返回值

类型: gboolean

TRUE 如果值已经显示。