Results for grid size settings translation from English to Greek

English

Translate

grid size settings

Translate

Greek

Translate
Translate

Instantly translate texts, documents and voice with Lara

Translate now

Human contributions

From professional translators, enterprises, web pages and freely available translation repositories.

Add a translation

English

Greek

Info

English

page size settings

Greek

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

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

English

grid size

Greek

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

Last Update: 2011-10-23
Usage Frequency: 3
Quality:

English

hex grid size

Greek

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

Last Update: 2020-04-20
Usage Frequency: 1
Quality:

English

enable this checkbox to change the font size settings.

Greek

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

Last Update: 2011-10-23
Usage Frequency: 1
Quality:

English

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

Greek

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

Last Update: 2020-04-20
Usage Frequency: 1
Quality:

English

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

Greek

#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

Get a better translation with
8,934,813,722 human contributions

Users are now asking for help:



We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. Learn more. OK