OSDN Git Service

Merge pull request #24 from mtsgi/update/kitstrap
[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     };
398     System.appCache[data.id] = data;
399     let _taskAppend = "<span id='t" + pid + "'>";
400     if( data.icon && data.icon != "none" ) _taskAppend += "<img src='" + S.launchpath[pid] + "/" + data.icon + "'>";
401     _taskAppend += "<span id='tname" + pid + "'>" + data.name + "<span></span>";
402     $( "#tasks" ).append( _taskAppend );
403     //タスクバーのクリック挙動
404     $( "#t" + pid ).addClass( "task" ).click( function() {
405         if( $(this).hasClass("t-active") || $(this).hasClass("task-min") ) KWS.min( pid );
406         else{
407             $("#w"+pid).css("z-index", KWS.windowIndex + 1);
408             KWS.refreshWindowIndex();
409         }
410     } );
411     $( "#t" + pid ).addClass( "task" ).on( "mouseenter", function() {
412         $( "#task-ctx-name" ).text( data.name );
413         if( data.icon && data.icon != "none" ) $( "#task-ctx-img" ).attr( "src", System.launchpath[pid] + "/" + data.icon );
414         else $( "#task-ctx-img" ).hide();
415         $( "#task-ctx-ver" ).text( data.version + "/pid:" + pid );
416         $( "#task-ctx-info" ).off().on( "click", function() { System.appInfo( pid )} );
417         $( "#task-ctx-sshot" ).off().on( "click", function() { S.screenshot(pid, true) } );
418         $( "#task-ctx-min" ).off().on( "click", function() { KWS.min( String(pid) ) } );
419         if( $(this).hasClass("t-active") ) $( "#task-ctx-front" ).hide();
420         else $( "#task-ctx-front" ).show();
421         $( "#task-ctx-front" ).off().on( "click", function() {
422             $("#w"+pid).css("z-index", KWS.windowIndex + 1);
423             KWS.refreshWindowIndex();
424         } );
425         $( "#task-ctx-close" ).off().on( "click", () => { System.close( String(pid) ) } );
426         $( "#task-ctx-kill" ).off().on( "click", () => { System.kill( String(data.id) ) } );
427         const _ctxleft = $( "#t" + pid ).offset().left;
428         const _ctxtop = window.innerHeight - $( "#t" + pid ).offset().top;
429         if( _ctxleft != $( "#task-ctx" ).offset().left ) {
430             $( "#task-ctx" ).hide();
431         }
432         $( "#task-ctx" ).css( "left", _ctxleft ).css( "bottom", _ctxtop ).show();
433     } );
434     $( "section, #kit-tasks" ).on( "mouseenter", function() {
435         $( "#task-ctx" ).fadeOut( 200 );
436     } );
437     $( "#t" + pid ).hover( function() {
438         prevWindowIndex = $( "#w" + pid ).css( "z-index" );
439         $( "#w" + pid ).addClass( "win-highlight" );
440     }, function() {
441         $( "#w" + pid ).removeClass( "win-highlight" );
442     } );
443     let _windowAppend = "<div id='w" + pid + "'><div id='wt" + pid + "' class='wt'><i class='wmzx'><span id='wm" + pid + "'></span>";
444     if( data.support && data.support.fullscreen == true ) _windowAppend += "<span id='wz" + pid + "'></span>";
445     _windowAppend += "<span id='wx" + pid + "'></span></i>";
446     if( data.icon && data.icon != "none" ) _windowAppend += "<img src='" + S.launchpath[pid] + "/" + data.icon + "'>";
447     _windowAppend += "<span id='wtname" + pid + "'>" + data.name + "</span></div><div class='winc winc-" + data.id + "' id='winc" + pid + "'></div></div>";
448     $( "#desktop-" + currentDesktop ).append( _windowAppend );
449
450     if( data.support && data.support.darkmode == true ) $("#winc"+pid).addClass("winc-darkmode");
451     if( KWS.darkmode ) $("#winc"+pid).addClass("kit-darkmode");
452
453     if( data.size ){
454         $("#winc"+pid).css("width", data.size.width).css("height", data.size.height);
455     }
456     if( data.resize ){
457         let _minwidth = 200, _minheight = 40;
458         if( data.resize.minWidth ) _minwidth = data.resize.minWidth;
459         if( data.resize.minHeight ) _minheight = data.resize.minHeight;
460         $("#winc"+pid).windowResizable({
461             minWidth: _minwidth,
462             minHeight: _minheight
463         });
464     }
465
466     var windowPos = 50 + ( pid % 10 ) * 20;
467     //$( "#w" + pid ).addClass( "window" ).draggable( {cancel: ".winc", stack: ".window"} ).css( "left", windowPos + "px" ).css( "top", windowPos + "px" ).css( "z-index", $( ".window" ).length + 1 );
468     KWS.windowIndex ++;
469     $( "#w"+pid ).addClass( "window" ).pep({
470         elementsWithInteraction: ".winc, .ui-resizable-handle",
471         useCSSTranslation: false,
472         disableSelect: false,
473         shouldEase:     true,
474         initiate: function(){
475             $(this.el).addClass("ui-draggable-dragging");
476             KWS.windowIndex ++;
477             this.el.style.zIndex = KWS.windowIndex;
478             KWS.refreshWindowIndex();
479         },
480         stop: function(){
481             this.el.style.transition = "none";
482             $(this.el).removeClass("ui-draggable-dragging");
483         }
484     }).on( "mousedown", function(){
485         $(".window").css( "transition", "none" );
486         $(this).css("z-index", KWS.windowIndex + 1);
487         KWS.refreshWindowIndex();
488     } ).css( "left", windowPos + "px" ).css( "top", windowPos + "px" ).css( "z-index",  KWS.windowIndex );
489     KWS.refreshWindowIndex();
490     $( "#wm" + pid ).addClass( "wm fa fa-window-minimize" ).click( () => KWS.min( String(pid) ) );
491     $( "#wz" + pid ).addClass( "wz fas fa-square" ).click( () => KWS.max( String(pid) ) );
492     $( "#wx" + pid ).addClass( "wx fa fa-times" ).click( () => System.close( String(pid) ) );
493     $( "#winc" + pid ).resizable( {
494         minWidth: "200"
495     } ).load( System.launchpath[pid] + "/" + data.view, (r, s, x) =>{
496         if( s == "error" ){
497             Notification.push("起動に失敗:" + x.status, x.statusText);
498             return false;
499         }
500         if( !data.script || data.script != "none" ) $.getScript( System.launchpath[pid] + "/" + data.script, () => App.kaf(pid) ).fail( () =>  App.kaf(pid) );
501         else App.kaf(pid);
502         if( data.css != "none" && $("#kit-style-"+data.id).length == 0 ){
503             $( "head" ).append( '<link href="' + System.launchpath[pid] + '/' + data.css + '" rel="stylesheet" id="kit-style-' + data.id + '"></link>' );
504             //Notification.push("debug", "新規スタイルシートの読み込み", data.id);
505         }        
506         processID++;
507         localStorage.setItem( "kit-pid", processID );
508     } );
509 }
510
511 //非推奨メソッド
512 function close( str ) {
513     System.close( str )
514 }
515
516 //非推奨メソッド
517 function kill( str ) {
518     System.kill(str)
519 }
520
521 const System = new function() {
522     this.version = "0.2.0";
523     this.username = localStorage.getItem("kit-username");
524     this.appdir = localStorage.getItem("kit-appdir");
525
526     this.bootopt = new URLSearchParams(location.search);
527
528     this.mouseX = 0;
529     this.mouseY = 0;
530
531     this.display = {
532         "width": window.innerWidth,
533         "height": window.innerHeight
534     }
535
536     this.selectedElement = null;
537     this.selectedText = null;
538
539     this.dom = function(_pid, ..._elems) {
540         let q = "";
541         if( !_elems.length ) q = ",#winc" + _pid;
542         else for( let i of _elems ){
543             q += ",#winc" + _pid + " " + i;
544         }   
545         return $( q.substring(1) );
546     }
547
548     this.userarea = new Object();
549     this.recycle = new Object();
550
551     this.appCache = {};
552     //アプリ引数
553     this.args = {};
554     //アプリ起動パス
555     this.launchpath = {};
556
557     this.support = $.support;
558     this.debugmode = false;
559
560     this.battery = null;
561
562     this.log = new Array();
563     this.noop = () => {}
564
565     this.setBattery = function(){
566         if( navigator.getBattery ) navigator.getBattery().then((e)=>{
567             let _lv =  e.level * 100;
568             System.battery = _lv;
569             return _lv;
570         });
571     }
572
573     this.screenshot = function( _pid, _popup ){
574         let _elem = document.querySelector("body");
575         if( _pid ) _elem = document.querySelector("#w"+_pid);
576         html2canvas( _elem ).then(canvas => {
577             if( _popup ){
578                 canvas.style.border = "1px solid #909090";
579                 S.save( canvas.toDataURL("image/png"), "image" );
580             }
581             return canvas;
582         });
583     }
584
585     this.obj2img = function( _obj, _popup ){
586         let _elem = _obj[0];
587         html2canvas( _elem ).then(canvas => {
588             if( _popup ){
589                 canvas.style.border = "1px solid #909090";
590                 S.save( canvas.toDataURL("image/png"), "image" );
591             }
592             return canvas;
593         });
594     }
595
596     this.save = function(data, type){
597         launch("fivr", { "save" : data, "type" : type });
598     }
599
600     this.open = function(filename){
601         launch("fivr", { "open" : filename });
602     }
603
604     this.preventClose = function( _pid ){
605         if( !process[_pid] ) return false;
606         process[_pid].preventclose = true;
607         return true;
608     }
609     
610     this.shutdown = function(_opt) {
611         $( "#last-notification-close" ).click();
612         $( "#kit-power-back" ).click();
613         for( let i in process ) {
614             if( process[i].preventclose == true ){
615                 S.dialog( "シャットダウンの中断", "pid" + System.appCache[process[i].id].name + "がシャットダウンを妨げています。<br>強制終了してシャットダウンを続行する場合は[OK]を押下してください。", () => {
616                     process[i].preventclose = false;
617                     System.shutdown();
618                 } );
619                 return false;
620             }
621             else System.close( i );
622         }
623         $( "section" ).hide();
624         $( "body" ).css( "background-color", "black" );
625         $( "header, footer" ).fadeOut( 300 );
626         $( "#kit-wallpaper" ).fadeOut( 1500 );
627         if( _opt == "reboot" ) location.href = "autorun.html";
628     }
629
630     this.reboot = function() {
631         System.shutdown("reboot");
632     }
633
634     this.lock = function(){
635         System.moveDesktop( "l" );
636
637         $( "#lock-user-icon" ).css( "background", localStorage.getItem( "kit-user-color" ) );
638         $( "section, header, footer" ).css( "filter", "none" );
639         $( "#kit-wallpaper" ).css( "filter", "blur(20px)" );
640         $( "header, footer, #kit-power" ).hide();
641
642         $( "#lock-username" ).text( localStorage.getItem( "kit-username" ) );
643         if( localStorage.getItem( "kit-password" ) ) $( "#lock-password" ).show();
644         else $( "#lock-password" ).hide();
645     }
646
647     this.alert = function( title, content, winname ) {
648         launch( "alert", [title, content, winname] );
649     }
650
651     this.dialog = function( title, content, func ){
652         launch("dialog", {
653             "title": title,
654             "content": content,
655             "func": func
656         })
657     }
658
659     this.appInfo = function( _pid ){
660         let _title = "", _content = "";
661         let ac = System.appCache[process[_pid].id];
662         let _lp = System.launchpath[_pid];
663         if( ac ){
664             _title = ac.name + " " + ac.version;
665             if( ac.icon && ac.icon != "none" ) _content = "<img style='height: 96px' src='" + _lp + "/" + ac.icon + "'><br>";
666             for( let i in ac ){
667                 if( typeof ac[i] != "object" ) _content += "<div><span style='font-weight: 100'>" + i + " </span>" + ac[i] + "</div>";
668             }
669             _content += "<br><span style='font-weight: 100'>起動パス " + _lp + "</span><br><br>"
670         }
671         else _title = "取得に失敗しました";
672         System.alert( _title, _content );
673     }
674
675     this.installed = new Array();
676  
677     //非推奨です(削除予定)。
678     this.min = function( _str ) {
679         KWS.min( _str );
680     }
681
682     this.close = function( _str ) {
683         let _pid = String( _str );
684         $( "#w" + _pid ).remove();
685         $( "#t" + _pid ).remove();
686         $( "#task-ctx" ).hide();
687         delete process[_pid];
688         KWS.refreshWindowIndex();
689     }
690
691     this.kill = function( _str ){
692         for( let pid in process ) {
693             if( process[pid] && process[pid].id == _str ) System.close( pid );
694         }
695     }
696     
697     this.vacuum = function( _left, _top ){
698         KWS.vacuum( _left, _top ); //非推奨です(削除予定)。
699     }
700
701     this.time = {
702         "obj" : new Date(),
703         "y" : "1970",
704         "m" : "1",
705         "d" : "1",
706         "h" : "00",
707         "i" : "00",
708         "s" : "00",
709         "ms" : "0"
710     }
711
712     this.clock = function() {
713         let DD = new Date();
714         S.time.obj = DD;
715         let Year = DD.getFullYear();
716         S.time.day = DD.getDay();
717         S.time.y = Year;
718         let Month = ( "00" + Number(DD.getMonth()+1) ).slice( -2 );
719         S.time.m = Month;
720         let DateN = ( "00" + DD.getDate() ).slice( -2 );
721         S.time.d = DateN;
722         let Hour = ( "00" + DD.getHours() ).slice( -2 );
723         S.time.h = Hour;
724         let Min = ( "00" + DD.getMinutes() ).slice( -2 );
725         S.time.i = Min;
726         let Sec = ( "00" + DD.getSeconds() ).slice( -2 );
727         S.time.s = Sec;
728         $( ".os-time" ).text( Hour + ":" + Min + ":" + Sec );
729         let MS = DD.getMilliseconds();
730         S.time.ms = MS;
731         let circle = {
732             outer: { radius: .9, color: "transparent" },
733             inner: { radius: .85, color: "transparent" }
734         }
735         let lines = {
736             long: { from: .8, to: .7, width: 2, color: "#303030" },
737             short: { from: .8, to: .75, width: 1, color: "#a0a0a0" }
738         }
739         let hands = {
740             hour: { length: .4, width: 3, cap: "butt", color: "#303030", ratio: .2 },
741             minute: { length: .67, width: 2, cap: "butt", color: "#303030", ratio: .2 },
742             second: { length: .67, width: 1, cap: "butt", color: "dodgerblue", ratio: .2 }
743         }
744         let canvas = $(".dropdown-clock-canvas")[0];
745         canvas.width = "200", canvas.height = "200";
746         let context = canvas.getContext("2d");
747         let center = { x: Math.floor(canvas.width / 2), y: Math.floor(canvas.height / 2) };
748         let radius = Math.min(center.x, center.y), angle, len;
749         context.beginPath();context.fillStyle = circle.outer.color;
750         context.arc(center.x, center.y, radius * circle.outer.radius, 0, Math.PI * 2, false);
751         context.fill();context.beginPath();context.fillStyle = circle.inner.color;
752         context.arc(center.x, center.y, radius * circle.inner.radius, 0, Math.PI * 2, false);
753         context.fill();
754         for( let i=0; i<60; i++ ){
755             angle = Math.PI * i / 30;
756             context.beginPath();
757             let line = ( i%5 == 0 ) ? lines.long : lines.short;
758             context.lineWidth = line.width, context.strokeStyle = line.color;
759             context.moveTo(center.x + Math.sin(angle) * radius * line.from, center.y - Math.cos(angle) * radius * line.from)
760             context.lineTo(center.x + Math.sin(angle) * radius * line.to, center.y - Math.cos(angle) * radius * line.to);
761             context.stroke();
762         }
763         angle = Math.PI * ( Number(Hour)+Number(Min)/60 ) / 6, len = radius * hands.hour.length;
764         context.beginPath(), context.lineWidth = hands.hour.width;
765         context.lineCap = hands.hour.cap, context.strokeStyle = hands.hour.color;
766         context.moveTo(center.x - Math.sin(angle) * len * hands.hour.ratio, center.y + Math.cos(angle) * len * hands.hour.ratio);
767         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
768         angle = Math.PI * ( Number(Min)+Number(Sec) / 60) / 30, len = radius * hands.minute.length;
769         context.beginPath(), context.lineWidth = hands.minute.width;
770         context.lineCap = hands.minute.cap, context.strokeStyle = hands.minute.color;
771         context.moveTo(center.x - Math.sin(angle) * len * hands.minute.ratio, center.y + Math.cos(angle) * len * hands.minute.ratio);
772         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
773         angle = Math.PI * Number(Sec) / 30, len = radius * hands.second.length;
774         context.beginPath(), context.lineWidth = hands.second.width;
775         context.lineCap = hands.second.cap, context.strokeStyle = hands.second.color;
776         context.moveTo(center.x - Math.sin(angle) * len * hands.second.ratio, center.y + Math.cos(angle) * len * hands.second.ratio);
777         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
778     }
779
780     this.changeWallpaper = function( str ) {
781         $( "#kit-wallpaper" ).css( "background", str ).css( "background-size", "cover" );
782         localStorage.setItem( "kit-wallpaper", str )
783     }
784
785     this.moveDesktop = function( str ) {
786         str = String( str );
787         $( "section" ).hide();
788         $( "#desktop-" + str ).show();
789         $( "#desktops" ).html( "<span class='far fa-clone'></span>Desktop" + str );
790         currentDesktop = str;
791     }
792
793     this.avoidMultiple = function( _pid, _alert ) {
794         let _id = process[_pid].id;
795         let _cnt = 0;
796         for( let i in process ) {
797             if( process[i].id == _id ) _cnt += 1;
798         }
799         Notification.push( "debug", _cnt );
800         if( _cnt > 1 ) {
801             System.close( _pid );
802             if( !_alert ){
803                 System.alert( "多重起動", "アプリケーション" + _id + "が既に起動しています。このアプリケーションの多重起動は許可されていません。" );
804             }
805         }
806         return _cnt;
807     }
808
809     this.resizable = function( _pid, _elem, _width, _height ){
810         let E = ".winc";
811         if( _elem ) E = String( _elem );
812         if( !_width ) _width = null;
813         if( !_height ) _height = "100";
814         $("#w" + _pid).resizable({
815             alsoResize: "#w" + _pid + " " + E,
816             minWidth: _width,
817             minHeight: _height
818         });
819     }
820
821     this.initLauncher = function(data){
822         $("#launcher-apps").html("");
823         for( let i in data ){
824             $("#launcher-apps").append("<div class='launcher-app' data-launch='" + i + "'><img src='" + data[i].icon + "'>" + data[i].name + "</div>");
825         }
826         if( !System.bootopt.get("safe") ){
827             for( let i of System.installed ){
828                 $("#launcher-apps").append("<div class='launcher-app' data-define-path='" + i.path + "' data-define-id='" + i.id + "'><img src='" + i.icon + "'>" + i.name + "</div>");
829             }
830         }
831         $(".launcher-app").on("click", function(){
832             $("#launch").click();
833             if( $(this).attr("data-launch") ) launch( $(this).attr("data-launch") );
834             else if( $(this).attr("data-define-path") ){
835                 launch( $(this).attr("data-define-id"), null, $(this).attr("data-define-path") );
836             };
837         });
838     }
839
840     this.clip = new function(){
841         this.content = null;
842         this.history = new Array();
843
844         this.set = function( content ){
845             this.content = content;
846             this.history.push(content);
847             return content;
848         }
849         this.get = ()=>{ return this.content }
850     }
851
852     this.config = new function(){
853         this.apps = new Object();
854     }
855
856     this.audio = new function(){
857         this.level = localStorage["kit-audio-level"] || 100;
858         this.silent = false;
859
860         this.list = new Array();
861
862         this.volume = function( _level ){
863             $("#dropdown-sound-slider").slider("value", _level);
864         }
865
866         this.play = function( _audioid, _src ){
867             if( !System.audio.list[_audioid] ){
868                 System.audio.list[_audioid] = new Audio(_src);
869                 System.audio.list[_audioid].volume = System.audio.level / 100;
870             }
871             System.audio.list[_audioid].play();
872         }
873
874         this.get = function( _audioid ){
875             return System.audio.list[_audioid];
876         }
877
878         this.pause = function( _audioid ){
879             System.audio.list[_audioid].pause();
880         }
881
882         this.stop = function( _audioid ){
883             System.audio.list[_audioid].pause();
884             System.audio.list[_audioid] = null;
885         }
886
887         this.seek = function( _audioid, _time ){
888             System.audio.list[_audioid].fastSeek(_time);
889         }
890
891         this.mute = function( _audioid, _bool ){
892             System.audio.list[_audioid].muted = _bool;
893         }
894     }
895 }
896
897 const KWS = new function(){
898     this.version = "3.2.2";
899     this.active = null;
900
901     this.darkmode = false;
902
903     this.changeWindowTitle = function( _pid, _str ){
904         $("#tname"+_pid).text( _str );
905         $("#wtname"+_pid).text( _str );
906     }
907
908     this.min = function( _str ) {
909         let _pid = String( _str );
910         if( $( "#w" + _pid ).is( ":visible" ) ) {
911             $( "#w" + _pid ).css("transition", "none").hide( "drop", {direction: "down"}, 300 );
912             $( "#task-ctx" ).effect( "bounce", {distance: 12, times: 1}, 400 );
913             $( "#t" + _pid ).addClass( "task-min" );
914         }
915         else {
916             $( "#w" + _pid ).show( "drop", {direction: "down"}, 300 );
917             $( "#task-ctx" ).effect( "bounce", {distance: 12, times: 1}, 400 );
918             $( "#t" + _pid ).removeClass( "task-min" );
919         }
920     }
921
922     this.fullscreen = {
923         "pid": null,
924         "prevWidth": null,
925         "prevHeight": null,
926         "prevTop": 0,
927         "prevLeft": 0
928     }
929
930     this.max = function( _pid ){
931         if( KWS.fullscreen.pid ){
932             Notification.push("最大化に失敗", "最大化しているウィンドウがあります。");
933             return;
934         }
935         $( "#wt"+_pid ).addClass("wtmaximize");
936         $( "#w"+_pid ).css({
937             "top": "0px",
938             "left": "0px"
939         })
940         .addClass("windowmaximize")
941         .css("z-index", KWS.windowIndex + 1);
942         KWS.refreshWindowIndex();
943
944         KWS.fullscreen.prevWidth = $("#winc"+_pid).outerWidth();
945         KWS.fullscreen.prevHeight = $("#winc"+_pid).outerHeight();
946         KWS.fullscreen.prevTop = $("#w"+_pid).offset().top;
947         KWS.fullscreen.prevLeft = $("#w"+_pid).offset().left;
948
949         KWS.resize( _pid, System.display.width, System.display.height - 30 );
950         $("footer").hide();
951         $("#kit-header-fullscreen").show().on("click", () => {
952             KWS.unmax( _pid );
953         });
954         KWS.fullscreen.pid = _pid;
955     }
956
957     this.unmax = function( _pid ){
958         if( _pid != KWS.fullscreen.pid ){
959             Notification.push("最大化解除に失敗", "対象がフルスクリーンウィンドウではありません。");
960             return;
961         }
962         $( "#wt"+_pid ).removeClass("wtmaximize");
963         $( "#w"+_pid ).css({
964             "top": KWS.fullscreen.prevTop,
965             "left": KWS.fullscreen.prevLeft
966         })
967         .removeClass("windowmaximize");
968         $("footer").show();
969         $("#kit-header-fullscreen").hide().off();
970         KWS.resize( _pid, KWS.fullscreen.prevWidth, KWS.fullscreen.prevHeight );
971         KWS.fullscreen.pid = null;
972         KWS.fullscreen.prevWidth = null;
973         KWS.fullscreen.prevHeight = null;
974         KWS.fullscreen.prevTop = null;
975         KWS.fullscreen.prevLeft = null;
976     }
977
978     this.vacuum = function( _left, _top ){
979         for( let i in process ){
980             $("#w"+i).css("transition", ".5s all ease").css("left", _left ).css("top", _top );
981         }
982         setTimeout(() => {
983             $(".window").css("transition", "none");
984         }, 500);
985     }
986
987     this.active = null;
988     this.windowIndex = 1;
989
990     this.refreshWindowIndex = function(){
991         let num = $(".window").length;
992         let array = new Array();
993         let obj = new Object();
994         for( let i = 0; i < num; i++ ){
995             obj = { id: $(".window")[i].id, zindex: $(".window")[i].style.zIndex };
996             array.push( obj );
997         };
998         array.sort( (a,b) => {
999             return Number(a.zindex - b.zindex);
1000         } );
1001         for( let i in array ){
1002             document.getElementById(array[i].id).style.zIndex = i;
1003             if( i == num-1 ){
1004                 $("#"+array[i].id).addClass("windowactive");
1005                 $("#t"+String(array[i].id).substring(1)).addClass("t-active");
1006                 KWS.active = String(array[i].id).substring(1);
1007                 process[array[i].id.substring(1)].isactive = true;
1008             }
1009             else{
1010                 $("#"+array[i].id).removeClass("windowactive");
1011                 $("#t"+String(array[i].id).substring(1)).removeClass("t-active");
1012                 process[array[i].id.substring(1)].isactive = false;
1013             }
1014         }
1015         KWS.windowIndex = num;
1016     }
1017
1018     this.resize = function( _pid, _width, _height ){
1019         if( _width ) $("#winc"+_pid).css("width", _width)
1020         if( _height ) $("#winc"+_pid).css("height", _height);
1021     }
1022
1023     this.fusen = new function(){
1024         this.fid = 0;
1025         this.list = new Object();
1026
1027         this.add = function(_text){
1028             KWS.fusen.list[KWS.fusen.fid] = String(_text);
1029             $("#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>");
1030             $("#kit-f"+KWS.fusen.fid).css({
1031                 "left": Number(KWS.fusen.fid)*40 + 20,
1032                 "top": Number(KWS.fusen.fid)*10 + 100,
1033             }).pep({
1034                 elementsWithInteraction: ".kit-fusen-textarea",
1035                 useCSSTranslation: false,
1036                 disableSelect: false,
1037                 shouldEase:     true,
1038                 initiate: function(){
1039                     $(this.el).css("ui-opacity", "0.7");
1040                 },
1041                 stop: function(){
1042                     this.el.style.transition = "none";
1043                     $(this.el).css("ui-opacity", "1.0");
1044                 }
1045             })
1046             $(".kit-fusen-textarea").off().on("change",function(){
1047                 Notification.push($(this).attr("data-fid"), $(this).val(), "debug");
1048                 KWS.fusen.list[$(this).attr("data-fid")] = $(this).val();
1049                 localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1050             });
1051             localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1052             KWS.fusen.fid++;
1053         }
1054
1055         this.remove = function(_fid){
1056             delete KWS.fusen.list[_fid];
1057             localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1058             $("#kit-f"+_fid).remove();
1059         }
1060     }
1061
1062     this.addCustomContext = function( _elem, _contextid, _obj ){
1063         KWS.context[_contextid] = _obj;
1064     }
1065
1066     this.context = {
1067         "fusen" : {
1068             "name" : "ふせん",
1069             "delete" : {
1070                 "label" : "ふせんを削除",
1071                 "icon" : "fa-trash-alt",
1072                 "function" : function(){
1073                     KWS.fusen.remove( S.selectedElement.attr("data-fid") );
1074                 }
1075             },
1076             "copy" : {
1077                 "label" : "ふせんを複製",
1078                 "icon" : "fa-copy",
1079                 "function" : function(){
1080                     KWS.fusen.add( KWS.fusen.list[S.selectedElement.attr("data-fid")] );
1081                 }
1082             }
1083         }
1084     }
1085 }
1086
1087 const Notification = new function() {
1088     this.nid = 0;
1089     this.list = new Object();
1090
1091     this.goodnight = false;
1092     this.sound = null;
1093
1094     this.push = function( _title, _content, _app ) {
1095         if( !System.debugmode && ( _title == "debug" || _app == "debug" ) ){
1096             return false;
1097         }
1098         this.list[this.nid] = {
1099             "title" : _title,
1100             "content" : _content,
1101             "app" : _app,
1102             "time" : System.time.obj.toLocaleString()
1103         };
1104         if( !this.goodnight ){
1105             if( this.sound ) System.audio.play( "n" + this.nid, this.sound );
1106             $( "#last-notification-title" ).text("").text( _title );
1107             $( "#last-notification-content" ).text("").text( _content );
1108             $( "#last-notification-app" ).text("").text( _app );
1109             $( "#last-notification" ).hide().show( "drop", {direction: "right"}, 300 );
1110         }
1111         $( "#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>" );
1112         $("#nc" + this.nid).on("click", function(){
1113             let _nid = this.id.slice(2);
1114             $("#nt" + _nid).fadeOut(300);
1115             return false;
1116         } );
1117         $("#nt" + this.nid).on("click", function(){
1118             let _nid = this.id.slice(2);
1119             if( Notification.list[ _nid ].app != "system" ){
1120                 launch(Notification.list[ _nid ].app);
1121             }
1122         } );
1123         this.nid ++;
1124         return (this.nid - 1);
1125     }
1126 }
1127
1128 const App = new function() {
1129     this.e = new Object();
1130
1131     this.event = ( _pid, _name, _event ) => {
1132         if( !App.e[_pid] ) App.e[_pid] = new Object();
1133         App.e[_pid][_name] = _event;
1134     }
1135
1136     this.kaf = ( _pid ) => {
1137         for( let i of S.dom(_pid, ".kaf", "kaf", "[kaf]") ){
1138             if( i.hasAttribute("kit-ref") ){
1139                 $(i).on("click", () => App.load(_pid, i.getAttribute("kit-ref")) );
1140             }
1141             if( i.hasAttribute("kit-e") ){
1142                 let _eqs = i.getAttribute("kit-e").split(",");
1143                 for( let k of _eqs ){
1144                     let _eq = k.split(" ");
1145                     $(i).on( _eq[1]||"click", App.e[_pid][_eq[0]] );
1146                 }
1147             }
1148             if( i.hasAttribute("kit-src") ){
1149                 $(i).attr("src", System.launchpath[_pid] +"/"+ i.getAttribute("kit-ref") )
1150             }
1151             if( i.hasAttribute("kit-alert") ){
1152                 $(i).on("click", ()=> System.alert( System.appCache[ process[_pid].id ].name, i.getAttribute("kit-alert") ) );
1153             }
1154             if( i.hasAttribute("kit-launch") ){
1155                 $(i).on("click", ()=> launch( i.getAttribute("kit-launch") ) );
1156             }
1157             if( i.hasAttribute("kit-close") ){
1158                 $(i).on("click", ()=> System.close( i.getAttribute("kit-close") || _pid ) );
1159             }
1160             if( i.hasAttribute("kit-text") ){
1161                 $(i).text( eval(i.getAttribute("kit-text")) );
1162             }
1163             if( i.hasAttribute("kit-html") ){
1164                 $(i).html( eval(i.getAttribute("kit-html")) );
1165             }
1166         }
1167     }
1168
1169     this.load = ( _pid, _path ) => {
1170         S.dom(_pid).load( System.launchpath[_pid] +"/"+ _path, () => {
1171             App.kaf(_pid);
1172         } );
1173     }
1174
1175     this.preventClose = ( _pid, _bool ) => {
1176         process[_pid].preventclose = _bool || true;
1177     }
1178
1179     this.context = ( _cid, _obj ) => {
1180         KWS.context[ _cid ] = _obj;
1181     }
1182 }
1183
1184 var process = {}, processID = 0, pid, currentDesktop = 1, currentCTX = "", prevWindowIndex, S;