/*
* [Česky]
* Projekt: Robot Karel
* Copyright: Viz KOPIROVANI v kořenovém adresáři projektu
*
* [English]
* Project: Karel, the Robot
* Copyright: See COPYING in the top level directory
*/
// JavaScript - základní tvar editoru příkazů
// ===========================================================================
// =~ Vygenerování editoru příkazů ~==========================================
document.write('
');
document.write('
Příkazové pole
');
document.write('
');
for ( var i = 0; i < editor.nastroje.length; i++ ) {
var nastroj = editor.nastroje[i];
if ( nastroj != null ) {
tvoric.zapis_tlacitko(false, editor.nastroje.id_prefix+nastroj[0],
editor.nastroje.mys, '\''+nastroj[0]+'\'',
'{ikona:\''+nastroj[1]+'\',nadpis:\''+nastroj[2]+'\',popis:\''+nastroj[3]+'\'}');
} else {
tvoric.zapis_tlacitko(true);
}
}
document.write('
');
document.write('
Zobrazený příkaz:');
document.write('
');
document.write('');
document.write('
');
document.write('
');
document.write('');
document.write('
');
document.write('
');
document.write('
');
// ===========================================================================
// =~ Základní nastavení editoru ~============================================
editor.prikaz_novy(true);
// Kvůli Konqueroru, který obnovuje obsahy textových polí po svém...
po_spusteni( function() { editor.prikaz_novy(true); } );