OSDN Git Service

Merge pull request #29 from mtsgi/feature/kaf-data
[kit/kit.git] / system.js
1 "use strict";
2
3 //   _    _ _   
4 //  | | _(_) |_ 
5 //  | |/ / | __|
6 //  |   <| | |_ 
7 //  |_|\_\_|\__|
8 //
9 // THIS IS THE KIT KERNEL AND KIT WINDOW SYSTEM
10 // http://web.kitit.ml/
11 // https://github.com/mtsgi/kit
12
13
14 $( document ).ready( kit );
15
16 function kit() {
17     S = System;
18
19     if( !localStorage.getItem( "kit-pid" ) ) processID = 0;
20     else processID = localStorage.getItem( "kit-pid" );
21
22     if( !localStorage.getItem( "kit-username" ) ) localStorage.setItem( "kit-username", "ユーザー" );
23     $( "#kit-header-username" ).text( localStorage.getItem( "kit-username" ) );
24
25     if( localStorage.getItem( "kit-lock" ) == null ) localStorage.setItem( "kit-lock", "false" );
26
27     if( System.bootopt.get("safe") ) $( "#kit-wallpaper" ).css( "background","#404040" );
28     else if( localStorage.getItem( "kit-wallpaper" ) ) $( "#kit-wallpaper" ).css( "background", localStorage.getItem( "kit-wallpaper" ) ).css( "background-size", "cover" ).css( "background-position", "center" );
29
30     if( !localStorage.getItem( "kit-default-browser" ) ) localStorage.setItem( "kit-default-browser", "browser" );
31
32     if( localStorage.getItem("kit-fusen") ){
33         this.list = JSON.parse(localStorage.getItem("kit-fusen"));
34         for( let i in this.list ){
35             KWS.fusen.add(this.list[i]);
36         }
37     }
38     
39     if( localStorage.getItem("kit-darkmode") == "true" ){
40         KWS.darkmode = true;
41         $("#kit-darkmode").attr("href", "system/theme/kit-darkmode.css");
42         $(".winc-darkmode").addClass("kit-darkmode");
43     }
44
45     if( System.bootopt.get("safe") ){
46         $("#kit-theme-file").attr("href", "./system/theme/theme-light.css" );
47     }
48     else{
49         if( !localStorage.getItem( "kit-theme" ) ) localStorage.setItem( "kit-theme", "theme-default.css" );
50         $("#kit-theme-file").attr("href", "./system/theme/" + localStorage.getItem("kit-theme") );
51     }
52
53     if( !localStorage.getItem( "kit-appdir" ) ) localStorage.setItem( "kit-appdir", "./app/" );
54     S.appdir = localStorage.getItem( "kit-appdir" );
55
56     if( localStorage.getItem( "kit-installed" ) ) System.installed = JSON.parse( localStorage.getItem( "kit-installed" ) );
57
58     if( localStorage["kit-userarea"] ) System.userarea = JSON.parse(localStorage["kit-userarea"]);
59     if( localStorage["kit-recycle"] ) System.recycle = JSON.parse(localStorage["kit-recycle"]);
60
61     System.moveDesktop( "1" );
62
63     var clockmove;
64     if( System.bootopt.get("safe") ) clockmove = setInterval( System.clock, 1000 );
65     else  clockmove = setInterval( System.clock, 10 );
66
67     Notification.push( "kitへようこそ", localStorage["kit-username"] + "さん、こんにちは。", "system" );
68     //スタートアップ
69     if( localStorage.getItem( "kit-startup" ) == undefined ) {
70         localStorage.setItem( "kit-startup", new Array( "welcome" ) );
71     }
72     System.startup = localStorage.getItem( "kit-startup" ).split( "," );
73     if( System.bootopt.get("safe") ){
74         Notification.push( "セーフブート", "現在、kitをセーフモードで起動しています。", "system" );
75         System.alert( "セーフブート", "現在、kitをセーフモードで起動しています。<br><a class='kit-hyperlink' onclick='System.reboot()'>通常モードで再起動</a>", "system" );
76     }
77     else for( let i of System.startup ) if( i != "" ) launch( i );
78     
79     $("#kit-header-fullscreen").hide();
80
81     //イベントハンドラ
82     $( "#desktops" ).click( function() {
83         $( "#desktop-" + currentDesktop ).toggleClass( "selected-section" );
84     } ).mousedown( function() {
85         $( ".window" ).css( "opacity", "0.6" );
86     } ).mouseup( function() {
87         $( ".window" ).css( "opacity", "1.0" );
88     } );
89     //タスク一覧
90     $( "#footer-tasks" ).click( function() {
91         if( $( "#kit-tasks" ).is( ":visible" ) ) {
92             $( "#kit-tasks" ).html( "" ).fadeOut( 300 );
93         }
94         else {
95             $( "#task-ctx" ).fadeOut( 200 );
96             $( "#kit-tasks" ).html( $( "#tasks" ).html() ).fadeIn( 300 ).css( "z-index", "9997" );
97         }
98     } );
99     //デスクトップアイコン
100     $.getJSON("config/desktop.json", (data) => {
101         for( let i in data ){
102             $(".desktop-icons").append("<div class='desktop-icon' data-launch='" + i + "'><img src='" + data[i].icon + "'>" + data[i].name + "</div>");
103         }
104         $(".desktop-icon").on("click", function(){
105             launch( $(this).attr("data-launch") );
106         });
107     }).fail( function() {
108         Notification.push( "読み込みに失敗", "デスクトップ(config/desktop.json)の読み込みに失敗しました。", "system" );
109     } );
110     //ランチャー
111     $.getJSON("config/apps.json", System.initLauncher).fail( function() {
112         Notification.push( "ランチャー初期化失敗", "アプリケーション一覧(config/apps.json)の読み込みに失敗しました。", "system" );
113     } );
114     $( "#kit-tasks" ).delegate( ".task", "click", function() {
115         System.close( this.id.slice( 1 ) );
116         $( this ).hide();
117     } );
118     //通知バー
119     $( "#footer-noti" ).click( function() {
120         $( "#last-notification" ).hide( "drop", {direction: "right"}, 300 );
121         if( $( "#notifications" ).is( ":visible" ) ) {
122             $( "#notifications" ).hide( "drop", {direction: "right"}, 300 );
123         }
124         else {
125             $( "#notifications" ).show( "drop", {direction: "right"}, 300 );
126         }
127     } );
128     $( "#last-notification-close" ).click( function() {
129         $( "#last-notification" ).hide( "drop", {direction: "right"}, 300 );
130     } );
131     $("#notifications-dnp").prop("checked", false).on("change", ()=>{
132         if( $("#notifications-dnp").is(":checked") ){
133             Notification.goodnight = true;
134         }
135         else Notification.goodnight = false;
136     });
137     //電源管理
138     $( ".power-button" ).click( function() {
139         $( "#notifications" ).hide( "drop", {direction: "right"}, 300 );
140         $( "#last-notification" ).hide( "drop", {direction: "right"}, 300 );
141         $( "#kit-wallpaper" ).css( "filter", "blur(5px)" );
142         $( "footer, header, #launcher, #task-ctx, .dropdown, #desktop-" + currentDesktop ).hide();
143         $( "#kit-power" ).show();
144     } );
145     $( "#kit-power-back" ).click( function() {
146         $( "section, header, footer, #kit-wallpaper, .dropdown" ).css( "filter", "none" );
147         $( "footer, header, #desktop-" + currentDesktop ).show();
148         $( "#kit-power" ).hide();
149     } );
150     $( "#kit-power-shutdown" ).click( function() {
151         System.shutdown();
152     } );
153     $( "#kit-power-reboot" ).click( function() {
154         System.reboot();
155     } );
156     $( "#kit-power-suspend" ).click( function() {
157         $( "section, header, footer, #kit-wallpaper" ).css( "filter", "none" );
158         $( "#kit-power" ).fadeOut( 300 );
159         System.alert("サスペンド機能", "サスペンド機能はこのバージョンのkitではサポートされていません。");
160     } );
161     $( "#kit-power-lock" ).click( function() {
162         System.lock();
163     } );
164     $( "#lock-password" ).keypress( function( e ) {
165         if( e.which == 13 ) $( "#lock-unl" ).click();
166     } );
167     $( "#lock-unl" ).click( function() {
168         if( !localStorage.getItem( "kit-password" ) || $( "#lock-password" ).val() == localStorage.getItem( "kit-password" ) ) {
169             $( "header, footer" ).show();
170             $( "section, header, footer, #kit-wallpaper" ).css( "filter", "none" );
171             $( "#lock-password" ).val( "" );
172             System.moveDesktop(1);
173         }
174         else $( "#lock-password" ).effect( "bounce", {distance: 12, times: 4}, 500 );
175     } ).hover( function() {
176         $( "#lock-unl span" ).removeClass( "fa-lock" ).addClass( "fa-lock-open" );
177     }, function() {
178         $( "#lock-unl span" ).removeClass( "fa-lock-open" ).addClass( "fa-lock" );
179     } );
180     //ランチャー起動
181     $( "#launch" ).click( function() {
182         $( "#notifications" ).hide( "drop", {direction: "right"}, 300 );
183         if( $( "#launcher" ).is( ":visible" ) ) {
184             $( "#kit-wallpaper" ).css( "filter", "none" );
185             $( "#desktop-" + currentDesktop ).show();
186             $( "#launcher" ).hide();
187         }
188         else {
189             $( "#kit-wallpaper" ).css( "filter", "blur(5px)" )
190             $( "section, #task-ctx" ).hide();
191             $( "#launcher" ).show();
192         }
193     } );
194
195     //検索バー
196     $( "#milp" ).val( "" ).on( "focus", function() {
197         $( "#kit-milp" ).show();
198     } ).on( "blur", function() {
199         $( "#kit-milp" ).fadeOut( 200 );
200     } ).on( 'keydown keyup keypress change', function() {
201         $( "#kit-milp-text" ).text( $( this ).val() );
202     } ).keypress( function( e ) {
203         if( e.which == 13 ) $( "#kit-milp-launch" ).click();
204     } );
205     $( "#kit-milp-launch" ).click( function() {
206         if( $("#milp").val() == "kit" ){
207             System.alert("", "<div style='text-align:left;'> _    _ _ <br>| | _(_) |_ <br>| |/ / | __|<br>|   〈| | |_ <br>|_|\_ \ _\__|</div><hr>", S.version);
208             return;
209         }
210         let _app = $( "#milp" ).val().split(",")[0];
211         let _args = null;
212         try {
213             if( $( "#milp" ).val().split(",")[1] ){
214                 _args = JSON.parse( $( "#milp" ).val().split(",").slice(1).join() );
215             }
216         }
217         catch(error) {
218             Notification.push("引数の解釈に失敗", error, "system");
219         }
220         launch( _app, _args );
221     } );
222     $( "#kit-milp-search" ).click( function() {
223         launch( "browser", { "url" : "https://www.bing.com/search?q=" + $( "#milp" ).val() } );
224     } );
225     $( "#kit-milp-wikipedia" ).click( function() {
226         launch( "browser", { "url" : "https://ja.wikipedia.org/wiki/" + $( "#milp" ).val() } );
227     } );
228
229     //サウンドドロップダウン
230     $("#dropdown-sound-slider").slider({
231         min: 0, max: 100, step: 1, value: 100,
232         change: (e, ui) => {
233             System.audio.level = ui.value;
234             $("#dropdown-sound-level").text(ui.value);
235             localStorage.setItem("kit-audio-level", ui.value);
236             for( let i in System.audio.list ){
237                 System.audio.list[i].volume = System.audio.level / 100;
238             }
239             if( ui.value == 0 ) $("#kit-header-sound-icon").removeClass("fa-volume-up").addClass("fa-volume-mute");
240             else $("#kit-header-sound-icon").removeClass("fa-volume-mute").addClass("fa-volume-up");
241         }
242     });
243     if( localStorage["kit-audio-level"] ) System.audio.volume( localStorage["kit-audio-level"] );
244
245     $("#dropdown-sound-silent").prop("checked", false).on("change", ()=>{
246         if( $("#dropdown-sound-silent").is(":checked") ){
247             System.audio.silent = true;
248             $("#kit-header-sound-icon").removeClass("fa-volume-up").addClass("fa-volume-mute");
249         }
250         else{
251             System.audio.silent = false;
252             $("#kit-header-sound-icon").removeClass("fa-volume-mute").addClass("fa-volume-up");
253         }
254     });
255
256     $("#kit-header-user").on("click", ()=>{
257         launch("user");
258     });
259
260     //コンテキストメニュー
261     $(":root section:not(#desktop-l)").on("contextmenu", function() {
262         let _ptelem = $( document.elementFromPoint(S.mouseX, S.mouseY) );
263         S.selectedElement = _ptelem;
264         S.selectedText = window.getSelection();
265         $( "#kit-context-input" ).val( S.selectedText );
266         if( $( "#kit-context-input" ).val() == "" ) $("#kit-contextgroup-text").hide();
267         else $("#kit-contextgroup-text").show();
268         if( _ptelem[0].id == "desktop-" + currentDesktop ){
269             $("#kit-contextgroup-desktop").show();
270             $("#kit-contextgroup-elem").hide();
271         }
272         else{
273             $("#kit-contextgroup-desktop").hide();
274             $("#kit-contextgroup-elem").show();
275         }
276         $( "#kit-context-elem" ).text( _ptelem.prop("tagName").toLowerCase() + "要素" );
277         $("#kit-contextgroup-custom").hide();
278
279         let  _ctxid = _ptelem.attr("data-kit-contextid") || _ptelem.attr("kit-context");
280         if( _ctxid ){
281             $("#kit-contextgroup-custom").show().html('<div id="kit-context-custom"></div>');
282             let  _ctxname = KWS.context[_ctxid].name || _ctxid; 
283             $("#kit-context-custom").text( _ctxname );
284             for( let i in KWS.context[_ctxid]){
285                 if( i == "name" ) continue;
286                 $("#kit-contextgroup-custom").append("<a id='kit-context-" + _ctxid + "-" + i + "'><span class='fa " + KWS.context[_ctxid][i].icon + "'></span> " + KWS.context[_ctxid][i].label +"</a>");
287                 $("#kit-context-" + _ctxid + "-" + i).on("click", () => {
288                     KWS.context[_ctxid][i].function();
289                     $("#kit-context").fadeOut(300);
290                 });
291             }
292         }
293         if( _ptelem[0].id ) $( "#kit-context-elem" ).append( "#" + _ptelem[0].id );
294         $( "#kit-context-size" ).text( _ptelem[0].clientWidth + "✕" + _ptelem[0].clientHeight );
295         $("#kit-context").toggle().css("left", S.mouseX).css("top", S.mouseY);
296         return false;
297     });
298     $("#kit-context-open").on("click", function(){
299         S.alert("要素", S.selectedElement.clone());
300     });
301     $("#kit-context-save").on("click", function(){
302         S.obj2img( S.selectedElement , true );
303     });
304     $( "#kit-context-search" ).on("click", function(){
305         $("#kit-context").fadeOut(300);
306         launch( "browser", { "url" : "https://www.bing.com/search?q=" + $( "#kit-context-input" ).val() } );
307     });
308     $( "#kit-context-input" ).keypress( function( e ) {
309         if( e.which == 13 ) $( "#kit-context-search" ).click();
310     } );
311     $("#kit-context a").on("click", function(){
312         $("#kit-context").fadeOut(300);
313     });
314     $("#kit-context-vacuum").on("click", function(){
315         for( let i in process ){
316             KWS.vacuum( S.mouseX, S.mouseY );    
317         }
318         setTimeout(() => {
319             $(".window").css("transition", "none");
320         }, 500);
321     });
322     $("#kit-context-fusen").on("click", function(){
323         KWS.fusen.add("");
324     });
325
326
327     $("section").on("click", function(){
328         $("#kit-context").fadeOut(300);
329     })
330
331     $( document ).delegate( "a", "click", function() {
332         if( this.href ) {
333             launch( localStorage.getItem( "kit-default-browser" ), { "url" : this.href } );
334             return false;
335         }
336     } ).on("mousemove", function(event){
337         System.mouseX = event.clientX;
338         System.mouseY = event.clientY;
339     }).delegate( ".textbox", "keypress", function( e ) {
340         if( e.which == 13 && this.id ){
341             if( $("#" + this.id + " + .kit-button").length ){
342                 Notification.push("debug", this.id, "system");
343                 $("#" + this.id + " + .kit-button").click();
344             }
345             else if( $("#" + this.id + " + kit-button").length ){
346                 Notification.push("debug", this.id, "system");
347                 $("#" + this.id + " + kit-button").click();
348             }
349         }
350     } );
351
352     window.onresize = () => {
353         System.display.width = window.innerWidth;
354         System.display.height = window.innerWidth;
355
356         if( KWS.fullscreen.pid ){
357             KWS.resize( KWS.fullscreen.pid, System.display.width, System.display.height - 30 );
358         }
359     }
360
361     if( localStorage.getItem( "kit-lock" ) == "true" ){
362         $("section").hide();
363         setTimeout(() =>  System.lock(), 100);
364     }
365 }
366
367 function launch( str, args, dir ) {
368     pid = processID;
369     System.args[pid] = args;
370     System.launchpath[pid] = dir || System.appdir + str;
371
372     if( System.appCache[str] ) {
373         if( KWS.fullscreen.pid ) KWS.unmax(KWS.fullscreen.pid);
374         //app[str].open();
375         appData( System.appCache[str] );
376     }
377     else {
378         try{
379             $.getJSON( S.launchpath[pid] + "/define.json", appData ).fail( function() {
380                 Notification.push("kitアプリをロードできません", str + "を展開できませんでした。アプリが存在しないか、クロスオリジン要求がブロックされている可能性があります。詳細:https://kitdev.home.blog/", "system");
381                 //System.alert( "起動エラー", "アプリケーションの起動に失敗しました<br>アプリケーション" + str + "は存在しないかアクセス権がありません(pid:" + processID + ")。ヘルプは<a class='kit-hyperlink' href='https://kitdev.home.blog/'>こちら</a>" );
382             } );
383         }
384         catch(error){
385             Notification.push( "System Error", error, "system" );
386         }
387     }
388 }
389
390 function appData( data ) {
391     var pid = processID;
392     process[String( pid )] = {
393         id: data.id,
394         time: System.time.obj.toLocaleString(),
395         isactive: false,
396         preventclose: false,
397         title: data.name
398     };
399     System.appCache[data.id] = data;
400     let _taskAppend = "<span id='t" + pid + "'>";
401     if( data.icon && data.icon != "none" ) _taskAppend += "<img src='" + S.launchpath[pid] + "/" + data.icon + "'>";
402     _taskAppend += "<span id='tname" + pid + "'>" + data.name + "<span></span>";
403     $( "#tasks" ).append( _taskAppend );
404     //タスクバーのクリック挙動
405     $( "#t" + pid ).addClass( "task" ).click( function() {
406         if( $(this).hasClass("t-active") || $(this).hasClass("task-min") ) KWS.min( pid );
407         else{
408             $("#w"+pid).css("z-index", KWS.windowIndex + 1);
409             KWS.refreshWindowIndex();
410         }
411     } );
412     $( "#t" + pid ).addClass( "task" ).on( "mouseenter", function() {
413         $( "#task-ctx-name" ).text( data.name );
414         if( data.icon && data.icon != "none" ) $( "#task-ctx-img" ).attr( "src", System.launchpath[pid] + "/" + data.icon );
415         else $( "#task-ctx-img" ).hide();
416         $( "#task-ctx-ver" ).text( data.version + "/pid:" + pid );
417         $( "#task-ctx-info" ).off().on( "click", function() { System.appInfo( pid )} );
418         $( "#task-ctx-sshot" ).off().on( "click", function() { S.screenshot(pid, true) } );
419         $( "#task-ctx-min" ).off().on( "click", function() { KWS.min( String(pid) ) } );
420         if( $(this).hasClass("t-active") ) $( "#task-ctx-front" ).hide();
421         else $( "#task-ctx-front" ).show();
422         $( "#task-ctx-front" ).off().on( "click", function() {
423             $("#w"+pid).css("z-index", KWS.windowIndex + 1);
424             KWS.refreshWindowIndex();
425         } );
426         $( "#task-ctx-close" ).off().on( "click", () => { System.close( String(pid) ) } );
427         $( "#task-ctx-kill" ).off().on( "click", () => { System.kill( String(data.id) ) } );
428         const _ctxleft = $( "#t" + pid ).offset().left;
429         const _ctxtop = window.innerHeight - $( "#t" + pid ).offset().top;
430         if( _ctxleft != $( "#task-ctx" ).offset().left ) {
431             $( "#task-ctx" ).hide();
432         }
433         $( "#task-ctx" ).css( "left", _ctxleft ).css( "bottom", _ctxtop ).show();
434     } );
435     $( "section, #kit-tasks" ).on( "mouseenter", function() {
436         $( "#task-ctx" ).fadeOut( 200 );
437     } );
438     $( "#t" + pid ).hover( function() {
439         prevWindowIndex = $( "#w" + pid ).css( "z-index" );
440         $( "#w" + pid ).addClass( "win-highlight" );
441     }, function() {
442         $( "#w" + pid ).removeClass( "win-highlight" );
443     } );
444     let _windowAppend = "<div id='w" + pid + "'><div id='wt" + pid + "' class='wt'><i class='wmzx'><span id='wm" + pid + "'></span>";
445     if( data.support && data.support.fullscreen == true ) _windowAppend += "<span id='wz" + pid + "'></span>";
446     _windowAppend += "<span id='wx" + pid + "'></span></i>";
447     if( data.icon && data.icon != "none" ) _windowAppend += "<img src='" + S.launchpath[pid] + "/" + data.icon + "'>";
448     _windowAppend += "<span id='wtname" + pid + "'>" + data.name + "</span></div><div class='winc winc-" + data.id + "' id='winc" + pid + "'></div></div>";
449     $( "#desktop-" + currentDesktop ).append( _windowAppend );
450
451     if( data.support && data.support.darkmode == true ) $("#winc"+pid).addClass("winc-darkmode");
452     if( KWS.darkmode ) $("#winc"+pid).addClass("kit-darkmode");
453
454     if( data.size ){
455         $("#winc"+pid).css("width", data.size.width).css("height", data.size.height);
456     }
457     if( data.resize ){
458         let _minwidth = 200, _minheight = 40;
459         if( data.resize.minWidth ) _minwidth = data.resize.minWidth;
460         if( data.resize.minHeight ) _minheight = data.resize.minHeight;
461         $("#winc"+pid).windowResizable({
462             minWidth: _minwidth,
463             minHeight: _minheight
464         });
465     }
466
467     var windowPos = 50 + ( pid % 10 ) * 20;
468     //$( "#w" + pid ).addClass( "window" ).draggable( {cancel: ".winc", stack: ".window"} ).css( "left", windowPos + "px" ).css( "top", windowPos + "px" ).css( "z-index", $( ".window" ).length + 1 );
469     KWS.windowIndex ++;
470     $( "#w"+pid ).addClass( "window" ).pep({
471         elementsWithInteraction: ".winc, .ui-resizable-handle",
472         useCSSTranslation: false,
473         disableSelect: false,
474         shouldEase:     true,
475         initiate: function(){
476             $(this.el).addClass("ui-draggable-dragging");
477             KWS.windowIndex ++;
478             this.el.style.zIndex = KWS.windowIndex;
479             KWS.refreshWindowIndex();
480         },
481         stop: function(){
482             this.el.style.transition = "none";
483             $(this.el).removeClass("ui-draggable-dragging");
484         }
485     }).on( "mousedown", function(){
486         $(".window").css( "transition", "none" );
487         $(this).css("z-index", KWS.windowIndex + 1);
488         KWS.refreshWindowIndex();
489     } ).css( "left", windowPos + "px" ).css( "top", windowPos + "px" ).css( "z-index",  KWS.windowIndex );
490     KWS.refreshWindowIndex();
491     $( "#wm" + pid ).addClass( "wm fa fa-window-minimize" ).click( () => KWS.min( String(pid) ) );
492     $( "#wz" + pid ).addClass( "wz fas fa-square" ).click( () => KWS.max( String(pid) ) );
493     $( "#wx" + pid ).addClass( "wx fa fa-times" ).click( () => System.close( String(pid) ) );
494     $( "#winc" + pid ).resizable( {
495         minWidth: "200"
496     } ).load( System.launchpath[pid] + "/" + data.view, (r, s, x) =>{
497         if( s == "error" ){
498             Notification.push("起動に失敗:" + x.status, x.statusText);
499             return false;
500         }
501         if( !data.script || data.script != "none" ) $.getScript( System.launchpath[pid] + "/" + data.script, () => App.kaf(pid) ).fail( () =>  App.kaf(pid) );
502         else App.kaf(pid);
503         if( data.css != "none" && $("#kit-style-"+data.id).length == 0 ){
504             $( "head" ).append( '<link href="' + System.launchpath[pid] + '/' + data.css + '" rel="stylesheet" id="kit-style-' + data.id + '"></link>' );
505             //Notification.push("debug", "新規スタイルシートの読み込み", data.id);
506         }        
507         processID++;
508         localStorage.setItem( "kit-pid", processID );
509     } );
510 }
511
512 //非推奨メソッド
513 function close( str ) {
514     System.close( str )
515 }
516
517 //非推奨メソッド
518 function kill( str ) {
519     System.kill(str)
520 }
521
522 const System = new function() {
523     this.version = "0.2.0";
524     this.username = localStorage.getItem("kit-username");
525     this.appdir = localStorage.getItem("kit-appdir");
526
527     this.bootopt = new URLSearchParams(location.search);
528
529     this.mouseX = 0;
530     this.mouseY = 0;
531
532     this.display = {
533         "width": window.innerWidth,
534         "height": window.innerHeight
535     }
536
537     this.selectedElement = null;
538     this.selectedText = null;
539
540     this.dom = function(_pid, ..._elems) {
541         let q = "";
542         if( !_elems.length ) q = ",#winc" + _pid;
543         else for( let i of _elems ){
544             q += ",#winc" + _pid + " " + i;
545         }   
546         return $( q.substring(1) );
547     }
548
549     this.userarea = new Object();
550     this.recycle = new Object();
551
552     this.appCache = {};
553     //アプリ引数
554     this.args = {};
555     //アプリ起動パス
556     this.launchpath = {};
557
558     this.support = $.support;
559     this.debugmode = false;
560
561     this.battery = null;
562
563     this.log = new Array();
564     this.noop = () => {}
565
566     this.setBattery = function(){
567         if( navigator.getBattery ) navigator.getBattery().then((e)=>{
568             let _lv =  e.level * 100;
569             System.battery = _lv;
570             return _lv;
571         });
572     }
573
574     this.screenshot = function( _pid, _popup ){
575         let _elem = document.querySelector("body");
576         if( _pid ) _elem = document.querySelector("#w"+_pid);
577         html2canvas( _elem ).then(canvas => {
578             if( _popup ){
579                 canvas.style.border = "1px solid #909090";
580                 S.save( canvas.toDataURL("image/png"), "image" );
581             }
582             return canvas;
583         });
584     }
585
586     this.obj2img = function( _obj, _popup ){
587         let _elem = _obj[0];
588         html2canvas( _elem ).then(canvas => {
589             if( _popup ){
590                 canvas.style.border = "1px solid #909090";
591                 S.save( canvas.toDataURL("image/png"), "image" );
592             }
593             return canvas;
594         });
595     }
596
597     this.save = function(data, type){
598         launch("fivr", { "save" : data, "type" : type });
599     }
600
601     this.open = function(filename){
602         launch("fivr", { "open" : filename });
603     }
604
605     this.preventClose = function( _pid ){
606         if( !process[_pid] ) return false;
607         process[_pid].preventclose = true;
608         return true;
609     }
610     
611     this.shutdown = function(_opt) {
612         $( "#last-notification-close" ).click();
613         $( "#kit-power-back" ).click();
614         for( let i in process ) {
615             if( process[i].preventclose == true ){
616                 S.dialog( "シャットダウンの中断", "pid" + System.appCache[process[i].id].name + "がシャットダウンを妨げています。<br>強制終了してシャットダウンを続行する場合は[OK]を押下してください。", () => {
617                     process[i].preventclose = false;
618                     System.shutdown();
619                 } );
620                 return false;
621             }
622             else System.close( i );
623         }
624         $( "section" ).hide();
625         $( "body" ).css( "background-color", "black" );
626         $( "header, footer" ).fadeOut( 300 );
627         $( "#kit-wallpaper" ).fadeOut( 1500 );
628         if( _opt == "reboot" ) location.href = "autorun.html";
629     }
630
631     this.reboot = function() {
632         System.shutdown("reboot");
633     }
634
635     this.lock = function(){
636         System.moveDesktop( "l" );
637
638         $( "#lock-user-icon" ).css( "background", localStorage.getItem( "kit-user-color" ) );
639         $( "section, header, footer" ).css( "filter", "none" );
640         $( "#kit-wallpaper" ).css( "filter", "blur(20px)" );
641         $( "header, footer, #kit-power" ).hide();
642
643         $( "#lock-username" ).text( localStorage.getItem( "kit-username" ) );
644         if( localStorage.getItem( "kit-password" ) ) $( "#lock-password" ).show();
645         else $( "#lock-password" ).hide();
646     }
647
648     this.alert = function( title, content, winname ) {
649         launch( "alert", [title, content, winname] );
650     }
651
652     this.dialog = function( title, content, func ){
653         launch("dialog", {
654             "title": title,
655             "content": content,
656             "func": func
657         })
658     }
659
660     this.appInfo = function( _pid ){
661         let _title = "", _content = "";
662         let ac = System.appCache[process[_pid].id];
663         let _lp = System.launchpath[_pid];
664         if( ac ){
665             _title = ac.name + " " + ac.version;
666             if( ac.icon && ac.icon != "none" ) _content = "<img style='height: 96px' src='" + _lp + "/" + ac.icon + "'><br>";
667             for( let i in ac ){
668                 if( typeof ac[i] != "object" ) _content += "<div><span style='font-weight: 100'>" + i + " </span>" + ac[i] + "</div>";
669             }
670             _content += "<br><span style='font-weight: 100'>起動パス " + _lp + "</span><br><br>"
671         }
672         else _title = "取得に失敗しました";
673         System.alert( _title, _content );
674     }
675
676     this.installed = new Array();
677  
678     //非推奨です(削除予定)。
679     this.min = function( _str ) {
680         KWS.min( _str );
681     }
682
683     this.close = function( _str ) {
684         let _pid = String( _str );
685         $( "#w" + _pid ).remove();
686         $( "#t" + _pid ).remove();
687         $( "#task-ctx" ).hide();
688         delete process[_pid];
689         KWS.refreshWindowIndex();
690     }
691
692     this.kill = function( _str ){
693         for( let pid in process ) {
694             if( process[pid] && process[pid].id == _str ) System.close( pid );
695         }
696     }
697     
698     this.vacuum = function( _left, _top ){
699         KWS.vacuum( _left, _top ); //非推奨です(削除予定)。
700     }
701
702     this.time = {
703         "obj" : new Date(),
704         "y" : "1970",
705         "m" : "1",
706         "d" : "1",
707         "h" : "00",
708         "i" : "00",
709         "s" : "00",
710         "ms" : "0"
711     }
712
713     this.clock = function() {
714         let DD = new Date();
715         S.time.obj = DD;
716         let Year = DD.getFullYear();
717         S.time.day = DD.getDay();
718         S.time.y = Year;
719         let Month = ( "00" + Number(DD.getMonth()+1) ).slice( -2 );
720         S.time.m = Month;
721         let DateN = ( "00" + DD.getDate() ).slice( -2 );
722         S.time.d = DateN;
723         let Hour = ( "00" + DD.getHours() ).slice( -2 );
724         S.time.h = Hour;
725         let Min = ( "00" + DD.getMinutes() ).slice( -2 );
726         S.time.i = Min;
727         let Sec = ( "00" + DD.getSeconds() ).slice( -2 );
728         S.time.s = Sec;
729         $( ".os-time" ).text( Hour + ":" + Min + ":" + Sec );
730         let MS = DD.getMilliseconds();
731         S.time.ms = MS;
732         let circle = {
733             outer: { radius: .9, color: "transparent" },
734             inner: { radius: .85, color: "transparent" }
735         }
736         let lines = {
737             long: { from: .8, to: .7, width: 2, color: "#303030" },
738             short: { from: .8, to: .75, width: 1, color: "#a0a0a0" }
739         }
740         let hands = {
741             hour: { length: .4, width: 3, cap: "butt", color: "#303030", ratio: .2 },
742             minute: { length: .67, width: 2, cap: "butt", color: "#303030", ratio: .2 },
743             second: { length: .67, width: 1, cap: "butt", color: "dodgerblue", ratio: .2 }
744         }
745         let canvas = $(".dropdown-clock-canvas")[0];
746         canvas.width = "200", canvas.height = "200";
747         let context = canvas.getContext("2d");
748         let center = { x: Math.floor(canvas.width / 2), y: Math.floor(canvas.height / 2) };
749         let radius = Math.min(center.x, center.y), angle, len;
750         context.beginPath();context.fillStyle = circle.outer.color;
751         context.arc(center.x, center.y, radius * circle.outer.radius, 0, Math.PI * 2, false);
752         context.fill();context.beginPath();context.fillStyle = circle.inner.color;
753         context.arc(center.x, center.y, radius * circle.inner.radius, 0, Math.PI * 2, false);
754         context.fill();
755         for( let i=0; i<60; i++ ){
756             angle = Math.PI * i / 30;
757             context.beginPath();
758             let line = ( i%5 == 0 ) ? lines.long : lines.short;
759             context.lineWidth = line.width, context.strokeStyle = line.color;
760             context.moveTo(center.x + Math.sin(angle) * radius * line.from, center.y - Math.cos(angle) * radius * line.from)
761             context.lineTo(center.x + Math.sin(angle) * radius * line.to, center.y - Math.cos(angle) * radius * line.to);
762             context.stroke();
763         }
764         angle = Math.PI * ( Number(Hour)+Number(Min)/60 ) / 6, len = radius * hands.hour.length;
765         context.beginPath(), context.lineWidth = hands.hour.width;
766         context.lineCap = hands.hour.cap, context.strokeStyle = hands.hour.color;
767         context.moveTo(center.x - Math.sin(angle) * len * hands.hour.ratio, center.y + Math.cos(angle) * len * hands.hour.ratio);
768         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
769         angle = Math.PI * ( Number(Min)+Number(Sec) / 60) / 30, len = radius * hands.minute.length;
770         context.beginPath(), context.lineWidth = hands.minute.width;
771         context.lineCap = hands.minute.cap, context.strokeStyle = hands.minute.color;
772         context.moveTo(center.x - Math.sin(angle) * len * hands.minute.ratio, center.y + Math.cos(angle) * len * hands.minute.ratio);
773         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
774         angle = Math.PI * Number(Sec) / 30, len = radius * hands.second.length;
775         context.beginPath(), context.lineWidth = hands.second.width;
776         context.lineCap = hands.second.cap, context.strokeStyle = hands.second.color;
777         context.moveTo(center.x - Math.sin(angle) * len * hands.second.ratio, center.y + Math.cos(angle) * len * hands.second.ratio);
778         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
779     }
780
781     this.changeWallpaper = function( str ) {
782         $( "#kit-wallpaper" ).css( "background", str ).css( "background-size", "cover" );
783         localStorage.setItem( "kit-wallpaper", str )
784     }
785
786     this.moveDesktop = function( str ) {
787         str = String( str );
788         $( "section" ).hide();
789         $( "#desktop-" + str ).show();
790         $( "#desktops" ).html( "<span class='far fa-clone'></span>Desktop" + str );
791         currentDesktop = str;
792     }
793
794     this.avoidMultiple = function( _pid, _alert ) {
795         let _id = process[_pid].id;
796         let _cnt = 0;
797         for( let i in process ) {
798             if( process[i].id == _id ) _cnt += 1;
799         }
800         Notification.push( "debug", _cnt );
801         if( _cnt > 1 ) {
802             System.close( _pid );
803             if( !_alert ){
804                 System.alert( "多重起動", "アプリケーション" + _id + "が既に起動しています。このアプリケーションの多重起動は許可されていません。" );
805             }
806         }
807         return _cnt;
808     }
809
810     this.resizable = function( _pid, _elem, _width, _height ){
811         let E = ".winc";
812         if( _elem ) E = String( _elem );
813         if( !_width ) _width = null;
814         if( !_height ) _height = "100";
815         $("#w" + _pid).resizable({
816             alsoResize: "#w" + _pid + " " + E,
817             minWidth: _width,
818             minHeight: _height
819         });
820     }
821
822     this.initLauncher = function(data){
823         $("#launcher-apps").html("");
824         for( let i in data ){
825             $("#launcher-apps").append("<div class='launcher-app' data-launch='" + i + "'><img src='" + data[i].icon + "'>" + data[i].name + "</div>");
826         }
827         if( !System.bootopt.get("safe") ){
828             for( let i of System.installed ){
829                 $("#launcher-apps").append("<div class='launcher-app' data-define-path='" + i.path + "' data-define-id='" + i.id + "'><img src='" + i.icon + "'>" + i.name + "</div>");
830             }
831         }
832         $(".launcher-app").on("click", function(){
833             $("#launch").click();
834             if( $(this).attr("data-launch") ) launch( $(this).attr("data-launch") );
835             else if( $(this).attr("data-define-path") ){
836                 launch( $(this).attr("data-define-id"), null, $(this).attr("data-define-path") );
837             };
838         });
839     }
840
841     this.clip = new function(){
842         this.content = null;
843         this.history = new Array();
844
845         this.set = function( content ){
846             this.content = content;
847             this.history.push(content);
848             return content;
849         }
850         this.get = ()=>{ return this.content }
851     }
852
853     this.config = new function(){
854         this.apps = new Object();
855     }
856
857     this.audio = new function(){
858         this.level = localStorage["kit-audio-level"] || 100;
859         this.silent = false;
860
861         this.list = new Array();
862
863         this.volume = function( _level ){
864             $("#dropdown-sound-slider").slider("value", _level);
865         }
866
867         this.play = function( _audioid, _src ){
868             if( !System.audio.list[_audioid] ){
869                 System.audio.list[_audioid] = new Audio(_src);
870                 System.audio.list[_audioid].volume = System.audio.level / 100;
871             }
872             System.audio.list[_audioid].play();
873         }
874
875         this.get = function( _audioid ){
876             return System.audio.list[_audioid];
877         }
878
879         this.pause = function( _audioid ){
880             System.audio.list[_audioid].pause();
881         }
882
883         this.stop = function( _audioid ){
884             System.audio.list[_audioid].pause();
885             System.audio.list[_audioid] = null;
886         }
887
888         this.seek = function( _audioid, _time ){
889             System.audio.list[_audioid].fastSeek(_time);
890         }
891
892         this.mute = function( _audioid, _bool ){
893             System.audio.list[_audioid].muted = _bool;
894         }
895     }
896 }
897
898 const KWS = new function(){
899     this.version = "3.2.2";
900     this.active = null;
901
902     this.darkmode = false;
903
904     this.changeWindowTitle = function( _pid, _str ){
905         $("#tname"+_pid).text( _str );
906         $("#wtname"+_pid).text( _str );
907     }
908
909     this.min = function( _str ) {
910         let _pid = String( _str );
911         if( $( "#w" + _pid ).is( ":visible" ) ) {
912             $( "#w" + _pid ).css("transition", "none").hide( "drop", {direction: "down"}, 300 );
913             $( "#task-ctx" ).effect( "bounce", {distance: 12, times: 1}, 400 );
914             $( "#t" + _pid ).addClass( "task-min" );
915         }
916         else {
917             $( "#w" + _pid ).show( "drop", {direction: "down"}, 300 );
918             $( "#task-ctx" ).effect( "bounce", {distance: 12, times: 1}, 400 );
919             $( "#t" + _pid ).removeClass( "task-min" );
920         }
921     }
922
923     this.fullscreen = {
924         "pid": null,
925         "prevWidth": null,
926         "prevHeight": null,
927         "prevTop": 0,
928         "prevLeft": 0
929     }
930
931     this.max = function( _pid ){
932         if( KWS.fullscreen.pid ){
933             Notification.push("最大化に失敗", "最大化しているウィンドウがあります。");
934             return;
935         }
936         $( "#wt"+_pid ).addClass("wtmaximize");
937         $( "#w"+_pid ).css({
938             "top": "0px",
939             "left": "0px"
940         })
941         .addClass("windowmaximize")
942         .css("z-index", KWS.windowIndex + 1);
943         KWS.refreshWindowIndex();
944
945         KWS.fullscreen.prevWidth = $("#winc"+_pid).outerWidth();
946         KWS.fullscreen.prevHeight = $("#winc"+_pid).outerHeight();
947         KWS.fullscreen.prevTop = $("#w"+_pid).offset().top;
948         KWS.fullscreen.prevLeft = $("#w"+_pid).offset().left;
949
950         KWS.resize( _pid, System.display.width, System.display.height - 30 );
951         $("footer").hide();
952         $("#kit-header-fullscreen").show().on("click", () => {
953             KWS.unmax( _pid );
954         });
955         KWS.fullscreen.pid = _pid;
956     }
957
958     this.unmax = function( _pid ){
959         if( _pid != KWS.fullscreen.pid ){
960             Notification.push("最大化解除に失敗", "対象がフルスクリーンウィンドウではありません。");
961             return;
962         }
963         $( "#wt"+_pid ).removeClass("wtmaximize");
964         $( "#w"+_pid ).css({
965             "top": KWS.fullscreen.prevTop,
966             "left": KWS.fullscreen.prevLeft
967         })
968         .removeClass("windowmaximize");
969         $("footer").show();
970         $("#kit-header-fullscreen").hide().off();
971         KWS.resize( _pid, KWS.fullscreen.prevWidth, KWS.fullscreen.prevHeight );
972         KWS.fullscreen.pid = null;
973         KWS.fullscreen.prevWidth = null;
974         KWS.fullscreen.prevHeight = null;
975         KWS.fullscreen.prevTop = null;
976         KWS.fullscreen.prevLeft = null;
977     }
978
979     this.vacuum = function( _left, _top ){
980         for( let i in process ){
981             $("#w"+i).css("transition", ".5s all ease").css("left", _left ).css("top", _top );
982         }
983         setTimeout(() => {
984             $(".window").css("transition", "none");
985         }, 500);
986     }
987
988     this.active = null;
989     this.windowIndex = 1;
990
991     this.refreshWindowIndex = function(){
992         let num = $(".window").length;
993         let array = new Array();
994         let obj = new Object();
995         for( let i = 0; i < num; i++ ){
996             obj = { id: $(".window")[i].id, zindex: $(".window")[i].style.zIndex };
997             array.push( obj );
998         };
999         array.sort( (a,b) => {
1000             return Number(a.zindex - b.zindex);
1001         } );
1002         for( let i in array ){
1003             document.getElementById(array[i].id).style.zIndex = i;
1004             if( i == num-1 ){
1005                 $("#"+array[i].id).addClass("windowactive");
1006                 $("#t"+String(array[i].id).substring(1)).addClass("t-active");
1007                 KWS.active = String(array[i].id).substring(1);
1008                 process[array[i].id.substring(1)].isactive = true;
1009             }
1010             else{
1011                 $("#"+array[i].id).removeClass("windowactive");
1012                 $("#t"+String(array[i].id).substring(1)).removeClass("t-active");
1013                 process[array[i].id.substring(1)].isactive = false;
1014             }
1015         }
1016         KWS.windowIndex = num;
1017     }
1018
1019     this.resize = function( _pid, _width, _height ){
1020         if( _width ) $("#winc"+_pid).css("width", _width)
1021         if( _height ) $("#winc"+_pid).css("height", _height);
1022     }
1023
1024     this.fusen = new function(){
1025         this.fid = 0;
1026         this.list = new Object();
1027
1028         this.add = function(_text){
1029             KWS.fusen.list[KWS.fusen.fid] = String(_text);
1030             $("#desktop-"+currentDesktop).append("<div class='kit-fusen' id='kit-f"+KWS.fusen.fid+"'><i class='fa fa-quote-left'></i><textarea class='kit-fusen-textarea kit-selectable' data-fid='"+KWS.fusen.fid+"' kit-context='fusen'>"+_text+"</textarea></div>");
1031             $("#kit-f"+KWS.fusen.fid).css({
1032                 "left": Number(KWS.fusen.fid)*40 + 20,
1033                 "top": Number(KWS.fusen.fid)*10 + 100,
1034             }).pep({
1035                 elementsWithInteraction: ".kit-fusen-textarea",
1036                 useCSSTranslation: false,
1037                 disableSelect: false,
1038                 shouldEase:     true,
1039                 initiate: function(){
1040                     $(this.el).css("ui-opacity", "0.7");
1041                 },
1042                 stop: function(){
1043                     this.el.style.transition = "none";
1044                     $(this.el).css("ui-opacity", "1.0");
1045                 }
1046             })
1047             $(".kit-fusen-textarea").off().on("change",function(){
1048                 Notification.push($(this).attr("data-fid"), $(this).val(), "debug");
1049                 KWS.fusen.list[$(this).attr("data-fid")] = $(this).val();
1050                 localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1051             });
1052             localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1053             KWS.fusen.fid++;
1054         }
1055
1056         this.remove = function(_fid){
1057             delete KWS.fusen.list[_fid];
1058             localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1059             $("#kit-f"+_fid).remove();
1060         }
1061     }
1062
1063     this.addCustomContext = function( _elem, _contextid, _obj ){
1064         KWS.context[_contextid] = _obj;
1065     }
1066
1067     this.context = {
1068         "fusen" : {
1069             "name" : "ふせん",
1070             "delete" : {
1071                 "label" : "ふせんを削除",
1072                 "icon" : "fa-trash-alt",
1073                 "function" : function(){
1074                     KWS.fusen.remove( S.selectedElement.attr("data-fid") );
1075                 }
1076             },
1077             "copy" : {
1078                 "label" : "ふせんを複製",
1079                 "icon" : "fa-copy",
1080                 "function" : function(){
1081                     KWS.fusen.add( KWS.fusen.list[S.selectedElement.attr("data-fid")] );
1082                 }
1083             }
1084         }
1085     }
1086 }
1087
1088 const Notification = new function() {
1089     this.nid = 0;
1090     this.list = new Object();
1091
1092     this.goodnight = false;
1093     this.sound = null;
1094
1095     this.push = function( _title, _content, _app ) {
1096         if( !System.debugmode && ( _title == "debug" || _app == "debug" ) ){
1097             return false;
1098         }
1099         this.list[this.nid] = {
1100             "title" : _title,
1101             "content" : _content,
1102             "app" : _app,
1103             "time" : System.time.obj.toLocaleString()
1104         };
1105         if( !this.goodnight ){
1106             if( this.sound ) System.audio.play( "n" + this.nid, this.sound );
1107             $( "#last-notification-title" ).text("").text( _title );
1108             $( "#last-notification-content" ).text("").text( _content );
1109             $( "#last-notification-app" ).text("").text( _app );
1110             $( "#last-notification" ).hide().show( "drop", {direction: "right"}, 300 );
1111         }
1112         $( "#notifications" ).append( "<div class='notis' id='nt" + this.nid + "'><span class='notis_close' id='nc" + this.nid + "'></span><span><span class='fas fa-comment-alt'></span>" + _title + "</span>" + _content + "<div class='notis_time'>" + System.time.obj.toLocaleString() + "</div></div>" );
1113         $("#nc" + this.nid).on("click", function(){
1114             let _nid = this.id.slice(2);
1115             $("#nt" + _nid).fadeOut(300);
1116             return false;
1117         } );
1118         $("#nt" + this.nid).on("click", function(){
1119             let _nid = this.id.slice(2);
1120             if( Notification.list[ _nid ].app != "system" ){
1121                 launch(Notification.list[ _nid ].app);
1122             }
1123         } );
1124         this.nid ++;
1125         return (this.nid - 1);
1126     }
1127 }
1128
1129 const App = new function() {
1130     this.changeWindowTitle = ( _pid, _t ) => {
1131         $( "#tname"+_pid ).text( _t );
1132         $( "#wtname"+_pid ).text( _t );
1133         process[_pid].title = _t;
1134         return App;
1135     }
1136
1137     this.context = ( _cid, _obj ) => {
1138         KWS.context[ _cid ] = _obj;
1139         return App;
1140     }
1141
1142     this.d = new Object();
1143
1144     this.data = ( _pid, _name ) => {
1145         let _r;
1146         if( _name ) _r = App.d[_pid][_name];
1147         else _r = App.d[_pid];
1148         return _r;
1149     }
1150
1151     this.e = new Object();
1152
1153     this.event = ( _pid, _name, _event ) => {
1154         if( !App.e[_pid] ) App.e[_pid] = new Object();
1155         App.e[_pid][_name] = _event;
1156         return App;
1157     }
1158
1159     this.getPath = ( _pid, _path ) => System.launchpath[_pid] + _path;
1160
1161     this.kaf = ( _pid ) => {
1162         for( let i of S.dom(_pid, ".kaf", "kaf", "[kaf]") ){
1163             if( i.hasAttribute("kit-ref") ){
1164                 $(i).on("click", () => App.load(_pid, i.getAttribute("kit-ref")) );
1165             }
1166             if( i.hasAttribute("kit-e") ){
1167                 let _eqs = i.getAttribute("kit-e").split(",");
1168                 for( let k of _eqs ){
1169                     let _eq = k.split(" ");
1170                     $(i).on( _eq[1]||"click", App.e[_pid][_eq[0]] );
1171                 }
1172             }
1173             if( i.hasAttribute("kit-src") ){
1174                 $(i).attr("src", System.launchpath[_pid] +"/"+ i.getAttribute("kit-ref") )
1175             }
1176             if( i.hasAttribute("kit-alert") ){
1177                 $(i).on("click", ()=> System.alert( System.appCache[ process[_pid].id ].name, i.getAttribute("kit-alert") ) );
1178             }
1179             if( i.hasAttribute("kit-launch") ){
1180                 $(i).on("click", ()=> launch( i.getAttribute("kit-launch") ) );
1181             }
1182             if( i.hasAttribute("kit-close") ){
1183                 $(i).on("click", ()=> System.close( i.getAttribute("kit-close") || _pid ) );
1184             }
1185             if( i.hasAttribute("kit-text") ){
1186                 $(i).text( eval(i.getAttribute("kit-text")) );
1187             }
1188             if( i.hasAttribute("kit-html") ){
1189                 $(i).html( eval(i.getAttribute("kit-html")) );
1190             }
1191             if( i.hasAttribute("kit-bind") ){
1192                 if( App.d[_pid] == undefined ) App.d[_pid] = new Object();
1193                 $(i).on("change", () => App.d[_pid][i.getAttribute("kit-bind")] = $(i).val() );
1194             }
1195         }
1196     }
1197
1198     this.load = ( _pid, _path ) => {
1199         S.dom(_pid).load( System.launchpath[_pid] +"/"+ _path, () => {
1200             App.kaf(_pid);
1201         } );
1202         return App;
1203     }
1204
1205     this.preventClose = ( _pid, _bool ) => {
1206         process[_pid].preventclose = _bool || true;
1207         return App;
1208     }
1209 }
1210
1211 var process = {}, processID = 0, pid, currentDesktop = 1, currentCTX = "", prevWindowIndex, S;