您搜索了: haiku (英语 - 希腊语)

人工翻译

来自专业的译者、企业、网页和免费的翻译库。

添加一条翻译

英语

希腊语

信息

英语

haiku

希腊语

Χαϊκούcity name (optional, probably does not need a translation)

最后更新: 2011-10-23
使用频率: 1
质量:

英语

it is also used (in an edited form) and named libroot.so in beos and haiku.

希腊语

Χρησιμοποιείται τέλος, σε τροποποιημένη μορφή, ως η "libroot" του beos και συνεπώς του haiku.

最后更新: 2016-03-03
使用频率: 1
质量:

警告:包含不可见的HTML格式

英语

* ntfs-3g, ntfs driver for linux, mac os x, freebsd, netbsd, opensolaris, qnx, haiku, and other operating systems.

希腊语

* Το ntfs-3g, οδηγός ntfs για linux, mac os x, freebsd, netbsd, opensolaris, qnx, haiku, και άλλα λειτουργικά συστήματα.

最后更新: 2016-03-03
使用频率: 1
质量:

英语

#!/usr/bin/gjsconst gobject = imports.gi.gobject;const gtk = imports.gi.gtk;const lang = imports.lang;const comboboxexample = new lang.class ({ name: 'combobox example', // create the application itself _init: function () { this.application = new gtk.application ({ application_id: 'org.example.jscombobox'}); // connect 'activate' and 'startup' signals to the callback functions this.application.connect('activate', lang.bind(this, this._onactivate)); this.application.connect('startup', lang.bind(this, this._onstartup)); }, // callback function for 'activate' signal presents windows when active _onactivate: function () { this._window.present (); }, // callback function for 'startup' signal builds the ui _onstartup: function () { this._buildui (); }, // build the application's ui _buildui: function () { // create the application window this._window = new gtk.applicationwindow ({ application: this.application, window_position: gtk.windowposition.center, title: \"welcome to gnome\", default_width: 200, border_width: 10 }); // create the liststore to put our options in this._liststore = new gtk.liststore(); this._liststore.set_column_types ([ gobject.type_string, gobject.type_string]); // this array holds our list of options and their icons let options = [{ name: \"select\" }, { name: \"new\", icon: gtk.stock_new }, { name: \"open\", icon: gtk.stock_open }, { name: \"save\", icon: gtk.stock_save }]; // put the options in the liststore for (let i = 0; i < options.length; i++ ) { let option = options[i]; let iter = this._liststore.append(); this._liststore.set (iter, [0], [option.name]); if ('icon' in option) this._liststore.set (iter, [1], [option.icon]); } // create the combobox this._combobox = new gtk.combobox({ model: this._liststore}); // create some cellrenderers for the items in each column let rendererpixbuf = new gtk.cellrendererpixbuf(); let renderertext = new gtk.cellrenderertext(); // pack the renderers into the combobox in the order we want to see this._combobox.pack_start (rendererpixbuf, false); this._combobox.pack_start (renderertext, false); // set the renderers to use the information from our liststore this._combobox.add_attribute (renderertext, \"text\", 0); this._combobox.add_attribute (rendererpixbuf, \"stock_id\", 1); // set the first row in the combobox to be active on startup this._combobox.set_active (0); // connect the combobox's 'changed' signal to our callback function this._combobox.connect ('changed', lang.bind (this, this._oncombochanged)); // add the combobox to the window this._window.add (this._combobox); // show the window and all child widgets this._window.show_all(); }, _oncombochanged: function () { // the silly pseudohaiku that we'll use for our messagedialog let haiku = [\"\", \"you ask for the new\with no thought for the aged\like fallen leaves trod.\", \"like a simple clam\revealing a lustrous pearl\it opens for you.\", \"a moment in time\a memory on the breeze\these things can't be saved.\"]; // which combobox item is active? let activeitem = this._combobox.get_active(); // no messagedialog if you choose \"select\" if (activeitem != 0) { this._popup = new gtk.messagedialog ({ transient_for: this._window, modal: true, buttons: gtk.buttonstype.ok, message_type: gtk.messagetype.info, text: haiku[activeitem]}); // connect the ok button to a handler function this._popup.connect ('response', lang.bind (this, this._ondialogresponse)); // show the messagedialog this._popup.show(); } }, _ondialogresponse: function () { this._popup.destroy (); }});// run the applicationlet app = new comboboxexample ();app.application.run (argv);

希腊语

#!/usr/bin/gjsconst gobject = imports.gi.gobject;const gtk = imports.gi.gtk;const lang = imports.lang;const comboboxexample = new lang.class ({ name: 'combobox example', // create the application itself _init: function () { this.application = new gtk.application ({ application_id: 'org.example.jscombobox'}); // connect 'activate' and 'startup' signals to the callback functions this.application.connect('activate', lang.bind(this, this._onactivate)); this.application.connect('startup', lang.bind(this, this._onstartup)); }, // callback function for 'activate' signal presents windows when active _onactivate: function () { this._window.present (); }, // callback function for 'startup' signal builds the ui _onstartup: function () { this._buildui (); }, // build the application's ui _buildui: function () { // create the application window this._window = new gtk.applicationwindow ({ application: this.application, window_position: gtk.windowposition.center, title: \"welcome to gnome\", default_width: 200, border_width: 10 }); // create the liststore to put our options in this._liststore = new gtk.liststore(); this._liststore.set_column_types ([ gobject.type_string, gobject.type_string]); // this array holds our list of options and their icons let options = [{ name: \"select\" }, { name: \"new\", icon: gtk.stock_new }, { name: \"open\", icon: gtk.stock_open }, { name: \"save\", icon: gtk.stock_save }]; // put the options in the liststore for (let i = 0; i < options.length; i++ ) { let option = options[i]; let iter = this._liststore.append(); this._liststore.set (iter, [0], [option.name]); if ('icon' in option) this._liststore.set (iter, [1], [option.icon]); } // create the combobox this._combobox = new gtk.combobox({ model: this._liststore}); // create some cellrenderers for the items in each column let rendererpixbuf = new gtk.cellrendererpixbuf(); let renderertext = new gtk.cellrenderertext(); // pack the renderers into the combobox in the order we want to see this._combobox.pack_start (rendererpixbuf, false); this._combobox.pack_start (renderertext, false); // set the renderers to use the information from our liststore this._combobox.add_attribute (renderertext, \"text\", 0); this._combobox.add_attribute (rendererpixbuf, \"stock_id\", 1); // set the first row in the combobox to be active on startup this._combobox.set_active (0); // connect the combobox's 'changed' signal to our callback function this._combobox.connect ('changed', lang.bind (this, this._oncombochanged)); // add the combobox to the window this._window.add (this._combobox); // show the window and all child widgets this._window.show_all(); }, _oncombochanged: function () { // the silly pseudohaiku that we'll use for our messagedialog let haiku = [\"\", \"you ask for the new\with no thought for the aged\like fallen leaves trod.\", \"like a simple clam\revealing a lustrous pearl\it opens for you.\", \"a moment in time\a memory on the breeze\these things can't be saved.\"]; // which combobox item is active? let activeitem = this._combobox.get_active(); // no messagedialog if you choose \"select\" if (activeitem != 0) { this._popup = new gtk.messagedialog ({ transient_for: this._window, modal: true, buttons: gtk.buttonstype.ok, message_type: gtk.messagetype.info, text: haiku[activeitem]}); // connect the ok button to a handler function this._popup.connect ('response', lang.bind (this, this._ondialogresponse)); // show the messagedialog this._popup.show(); } }, _ondialogresponse: function () { this._popup.destroy (); }});// run the applicationlet app = new comboboxexample ();app.application.run (argv);

最后更新: 2020-04-20
使用频率: 1
质量:

参考: Aterentes
警告:包含不可见的HTML格式

获取更好的翻译,从
7,781,628,684 条人工翻译中汲取

用户现在正在寻求帮助:



Cookie 讓我們提供服務。利用此服務即表示你同意我們使用Cookie。 更多資訊。 確認