Hai cercato la traduzione di grid size settings da Inglese a Greco

Inglese

Traduttore

grid size settings

Traduttore

Greco

Traduttore
Traduttore

Traduci istantaneamente testi, documenti e voce con Lara

Traduci ora

Contributi umani

Da traduttori professionisti, imprese, pagine web e archivi di traduzione disponibili gratuitamente al pubblico.

Aggiungi una traduzione

Inglese

Greco

Informazioni

Inglese

page size settings

Greco

Ρυθμίσεις μεγέθους σελίδας

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 1
Qualità:

Inglese

grid size

Greco

Μέγεθος καννάβου

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 3
Qualità:

Inglese

hex grid size

Greco

Δεκαεξαδικό μέγεθος πλέγματος

Ultimo aggiornamento 2020-04-20
Frequenza di utilizzo: 1
Qualità:

Inglese

enable this checkbox to change the font size settings.

Greco

Ενεργοποιήστε αυτό το πλαίσιο επιλογής για να αλλάξετε τις ρυθμίσεις μεγέθους γραμματοσειράς. @ info: tooltip

Ultimo aggiornamento 2011-10-23
Frequenza di utilizzo: 1
Qualità:

Inglese

inherit size setting from gcompris (800x600, 640x480)

Greco

Ρυθμίσεις ανάλυσης οθόνης παρμένες από το gcompris (800x600, 640x480)

Ultimo aggiornamento 2020-04-20
Frequenza di utilizzo: 1
Qualità:

Inglese

#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;}

Greco

#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;}

Ultimo aggiornamento 2020-04-20
Frequenza di utilizzo: 1
Qualità:

Attenzione: contiene formattazione HTML nascosta

Ottieni una traduzione migliore grazie a
8,950,817,973 contributi umani

Ci sono utenti che chiedono aiuto:



I cookie ci aiutano a fornire i nostri servizi. Utilizzando tali servizi, accetti l'utilizzo dei cookie da parte nostra. Maggiori informazioni. OK