I'm only starting to learn GTK3, but I'm having a real struggle. All of the documentation that i could find is for GTK2 and the gnome dev web site is simply not good enough. Now I am trying to get the selected text/item from a GtkComboBox, here is some of the code which I have tried.
gint array =gtk_combo_box_get_active(cbox_quaity);
//or
gchar *array =gtk_combo_box_get_active(cbox_quaity);
If i use the gint, the printout will be "0" (zero) no matter what itom of the list I select. If I use gchar, I get back "(null)". In addition, I get these warnings while compiling.
gcc -c -g -O0 -Wall -pthread -pipe src/main.c `pkg-config --cflags --libs gtk+-3.0` -o main.o
src/main.c: In function ‘btn_start_click’:
src/main.c:41:17: warning: initialization makes pointer from integer without a cast [-Wint-conversion]
gchar *array =gtk_combo_box_get_active(cbox_quaity);
^~~~~~~~~~~~~~~~~~~~~~~~
gcc -o tstreamer-gtk main.o -pthread `pkg-config --cflags --libs gtk+-3.0` -export-dynamic
The user interface was created in glade and the combo box used a GtkListStore. Also, here is the source code of the C code:
#include <gtk/gtk.h>
#include <stdio.h>
GtkWidget *btn_start;
GtkComboBox *cbox_quaity;
#define MAX_WORD_SIZE 32
void btn_start_click(){
gint active_item = gtk_combo_box_get_active(cbox_quaity);
printf("%d\n",active_item);
}
int main(int argc, char *argv[]){
GtkBuilder *builder;
GtkWidget *window;
gtk_init(&argc, &argv);
builder = gtk_builder_new();
gtk_builder_add_from_file (builder, "glade/window_main.glade", NULL);
window = GTK_WIDGET(gtk_builder_get_object(builder, "window_main"));
gtk_builder_connect_signals(builder, NULL);
btn_start = GTK_WIDGET(gtk_builder_get_object(builder, "btn_start"));
g_object_unref(builder);
gtk_widget_show(window);
gtk_main();
return 0;
}
// called when window is closed
void on_window_main_destroy(){
gtk_main_quit();
}
You are doing a few things wrong.
First, GtkBuilder does not automatically bind controls to variables. You explicitly have to call
gtk_builder_get_object()
on all the controls you need to get to, includingcbox_quaity
.Now, you can't program on examples alone; you'll need the documentation to find out what you can do and how. If you check the docs, you'll see
gtk_combo_box_get_active()
returns agint
with the index of the selected item, so thegint array
step was right. The reason you kept getting 0 from that function was because, as above, you forgot to initializecbox_quaity
, so it was doinggtk_combo_box_get_active(NULL)
, which of course makes no sense.(GtkBuilder can connect signals automatically by name because of how dynamic linking works, but that is a different discussion.)
Your signal method signatures are also wrong. You need to have the same signatures as the signal you are connecting, which you can get... from the documentation. In your case,
btn_start_click()
needs to match the signal forGtkButton::clicked
andon_window_main_destroy()
needs to match the signal forGtkWidget::destroy
. Each signal function begins with a parameter that is the widget in question, and each signal function ends with a parameter that allows you to pass data of your choice around, as a more futureproof alternative to using global variables. In the case of GtkBuilder signals, this is the second argument togtk_builder_connect_signals()
. Mind your return values too; if a signal returns a value, that return value is important!All GTK+ types have macros like
GTK_WIDGET()
(which you did use at one point) andGTK_COMBO_BOX()
to allow run-time-type-checked conversions between GTK+ widget types; this allows GTK+ widgets to be polymorphic in C. Therefore, most GTK+ code returns and storesGtkWidget *
s directly.And finally, the documentation is NOT devoid of examples. Not only is there a full introductory section in the documentation proper, which includes a detailed tutorial as well as smaller examples, there is also a program included with GTK+ called
gtk3-demo
that provides a lot of sample applications AND source code for those applications. (Some Linux distributions may split this program and a few related ones into a separate package named something likegtk3-examples
.)Good luck!