Re: [gtk-list] RE: Radio buttons and GSList



Thanks, I realized that about 15 minutes after I posted =(

Miranda

-----Original Message-----
From: BIRCH, JANET M <JBIRCH@entergy.com>
To: 'gtk-list@redhat.com' <gtk-list@redhat.com>
Date: Tuesday, May 11, 1999 2:09 PM
Subject: [gtk-list] RE: Radio buttons and GSList


>have you assigned them into their group ?
>
>btn_grp = NULL;
>
>btn = gtk_radio_button_new_with_label(NULL,"lbl");
>gtk_box_pack_start(GTK_BOX(box),btn,TRUE,TRUE,0);
>gtk_widget_show(btn);
>btn_grp = gtk_radio_button_group(GTK_RADIO_BUTTON(btn));    <--- if you
dont
>assign
>                                                                 to the
>group they
>                                                                 do
whatever
>they want.
>
>btn = gtk_radio_button_new_with_label(btn_grp,"lbl");
>gtk_box_pack_start(GTK_BOX(box),btn,TRUE,TRUE,0);
>gtk_widget_show(btn);
>btn_grp = gtk_radio_button_group(GTK_RADIO_BUTTON(btn));
>
>
>




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]