From professional translators, enterprises, web pages and freely available translation repositories.
page size settings
Ρυθμίσεις μεγέθους σελίδας
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
grid size
Μέγεθος καννάβου
Last Update: 2011-10-23
Usage Frequency: 3
Quality:
hex grid size
Δεκαεξαδικό μέγεθος πλέγματος
Last Update: 2020-04-20
Usage Frequency: 1
Quality:
enable this checkbox to change the font size settings.
Ενεργοποιήστε αυτό το πλαίσιο επιλογής για να αλλάξετε τις ρυθμίσεις μεγέθους γραμματοσειράς. @ info: tooltip
Last Update: 2011-10-23
Usage Frequency: 1
Quality:
inherit size setting from gcompris (800x600, 640x480)
Ρυθμίσεις ανάλυσης οθόνης παρμένες από το gcompris (800x600, 640x480)
Last Update: 2020-04-20
Usage Frequency: 1
Quality:
#include <gtk/gtk.h>/* this is the callback function. it is a handler function which reacts to the * signal. in this case, if the row selected is not the first one of the * combobox, we write its value in the terminal for the user. */static voidon_changed (gtkcombobox *widget, gpointer user_data){ gtkcombobox *combo_box = widget; if (gtk_combo_box_get_active (combo_box) != 0) { gchar *distro = gtk_combo_box_text_get_active_text (gtk_combo_box_text(combo_box)); g_print (\"you chose \\", distro); g_free (distro); }}static voidactivate (gtkapplication *app, gpointer user_data){ gint i; gtkwidget *view; gtkwidget *window; gtkwidget *combo_box; /* create a window with a title, border width, and a default size. setting the * size to -1 means to use the \"natural\" default size. * (the size request of the window) */ window = gtk_application_window_new (app); gtk_window_set_title (gtk_window (window), \"welcome to gnome\"); gtk_window_set_default_size (gtk_window (window), 200, -1); gtk_container_set_border_width (gtk_container (window), 10); /* create the combo box and append your string values to it. */ combo_box = gtk_combo_box_text_new (); const char *distros[] = {\"select distribution\", \"fedora\", \"mint\", \"suse\"}; /* g_n_elements is a macro which determines the number of elements in an array.*/ for (i = 0; i < g_n_elements (distros); i++){ gtk_combo_box_text_append_text (gtk_combo_box_text (combo_box), distros[i]); } /* choose to set the first row as the active one by default, from the beginning */ gtk_combo_box_set_active (gtk_combo_box (combo_box), 0); /* connect the signal emitted when a row is selected to the appropriate * callback function. */ g_signal_connect (combo_box, \"changed\", g_callback (on_changed), null); /* add it to the window */ gtk_container_add (gtk_container (window), combo_box); gtk_widget_show_all (window);}intmain (int argc, char **argv){ gtkapplication *app; int status; app = gtk_application_new (\"org.gtk.example\", g_application_flags_none); g_signal_connect (app, \"activate\", g_callback (activate), null); status = g_application_run (g_application (app), argc, argv); g_object_unref (app); return status;}
#include <gtk/gtk.h>/* this is the callback function. it is a handler function which reacts to the * signal. in this case, if the row selected is not the first one of the * combobox, we write its value in the terminal for the user. */static voidon_changed (gtkcombobox *widget, gpointer user_data){ gtkcombobox *combo_box = widget; if (gtk_combo_box_get_active (combo_box) != 0) { gchar *distro = gtk_combo_box_text_get_active_text (gtk_combo_box_text(combo_box)); g_print (\"you chose \\", distro); g_free (distro); }}static voidactivate (gtkapplication *app, gpointer user_data){ gint i; gtkwidget *view; gtkwidget *window; gtkwidget *combo_box; /* create a window with a title, border width, and a default size. setting the * size to -1 means to use the \"natural\" default size. * (the size request of the window) */ window = gtk_application_window_new (app); gtk_window_set_title (gtk_window (window), \"welcome to gnome\"); gtk_window_set_default_size (gtk_window (window), 200, -1); gtk_container_set_border_width (gtk_container (window), 10); /* create the combo box and append your string values to it. */ combo_box = gtk_combo_box_text_new (); const char *distros[] = {\"select distribution\", \"fedora\", \"mint\", \"suse\"}; /* g_n_elements is a macro which determines the number of elements in an array.*/ for (i = 0; i < g_n_elements (distros); i++){ gtk_combo_box_text_append_text (gtk_combo_box_text (combo_box), distros[i]); } /* choose to set the first row as the active one by default, from the beginning */ gtk_combo_box_set_active (gtk_combo_box (combo_box), 0); /* connect the signal emitted when a row is selected to the appropriate * callback function. */ g_signal_connect (combo_box, \"changed\", g_callback (on_changed), null); /* add it to the window */ gtk_container_add (gtk_container (window), combo_box); gtk_widget_show_all (window);}intmain (int argc, char **argv){ gtkapplication *app; int status; app = gtk_application_new (\"org.gtk.example\", g_application_flags_none); g_signal_connect (app, \"activate\", g_callback (activate), null); status = g_application_run (g_application (app), argc, argv); g_object_unref (app); return status;}
Last Update: 2020-04-20
Usage Frequency: 1
Quality:
Warning: Contains invisible HTML formatting