Multiline text

2006-07-26 Thread Steven Boyls
I'm using a multiline text widget and I would like to limit the length of text on each line. Can someone share how I can accomplish this? Thanks, Steve ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listi

Using the combobox

2006-08-28 Thread Steven Boyls
I'm using Glade to design a front-end for my application. My question is how to I get the answer from the combobox? The gtk documentation for the functions that I'm trying to use tell me that I can only use these functions if the combobox was created using gtk_combo_box_new_text(). Well, if I'm

GtkComboboxEntry

2006-09-21 Thread Steven Boyls
Hi, I need to know how to insert and delete items from a ComboboxEntry. I've read through the docs but I'm stilled confused. Thanks, Steve ___ gtk-app-devel-list mailing list gtk-app-devel-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtk-app-d

Changing the color od a widget

2006-10-04 Thread Steven Boyls
Hi, I'd like to know if there is a way to change/set the color of a widget. All default colors seem to be a dull gray color. I'd like to make my application more visually appealing. Thanks for any help, Steve ___ gtk-app-devel-list mailing list gtk-a

Gtk/C code development tools

2006-11-16 Thread Steven Boyls
I'd like to get an idea on what development processes and tools tools people are using for their Gtk/C applications. My previous experience was object oriented and included C++/Java/C#. We used a number to different development processes such as RUP and others. I now work in a small group and

How do you get the data from a GList?

2006-11-17 Thread Steven Boyls
I have created a GList with the following code : GList *my_list; GtkTreeSelection *selection; GtkTreeModel *model; selection = gtk_tree_view_get_selection(list_file_treeview); model = gtk_tree_view_get_model(list_file_treeview); my_list = gtk_tree_select

RadioButton question

2006-12-18 Thread Steven Boyls
How do you determine which radio button is selected? I would think that there would be a procedure like gtk_radio_button_group_get_selected(), but I don't see one. So, if you know I would appreciate some help. Thanks in advance, Steve Boyls ___ gtk-ap