Re: [gtk-list] Re: Double float for spinbutton.adjustment.value ?
- From: Adrian Feiguin <feiguin magnet fsu edu>
- To: gtk-list redhat com
- Subject: Re: [gtk-list] Re: Double float for spinbutton.adjustment.value ?
- Date: Wed, 24 Nov 1999 13:51:15 -0500 (EST)
You should use a gtkentry and do the following:
numeric_entry = gtk_entry_new();
gtk_signal_connect(GTK_OBJECT(numeric_entry),
"insert_text",
GTK_SIGNAL_FUNC(insert_text), gpointer
GINT_TO_POINTER(digits));
}
static void
insert_text(GtkEditable *editable,
gchar *new_text,
gint new_text_length,
gint *position,
gpointer data)
{
gint digits;
digits = GPOINTER_TO_GINT(data);
cut & paste code from gtk_spin_button_insert_text and hack arround using
digits instead of spin->digits.
I'm planning to make an entry widget with formatted text adding a field
gchar *picture and hacking gtkentry. Probably it istn't very easy.
Regards,
<ADRIAN>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]