OSDN Git Service

Add "multiple" Property to support Key [0.2.1]
[kit/kit.git] / system.js
1 "use strict";
2
3 //   _    _ _   
4 //  | | _(_) |_ 
5 //  | |/ / | __|
6 //  |   <| | |_ 
7 //  |_|\_\_|\__|
8 //
9 // THIS IS THE KIT KERNEL, KIT APPS FRAMEWORK 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" ) ) pid = localStorage.getItem( "kit-pid" );
20
21     if( !localStorage.getItem( "kit-username" ) ) localStorage.setItem( "kit-username", "ユーザー" );
22     $( "#kit-header-username" ).text( localStorage.getItem( "kit-username" ) );
23
24     if( localStorage.getItem( "kit-lock" ) == null ) localStorage.setItem( "kit-lock", "false" );
25
26     if( System.bootopt.get("safe") ) $( "#kit-wallpaper" ).css( "background","#404040" );
27     else if( localStorage.getItem( "kit-wallpaper" ) ) $( "#kit-wallpaper" ).css( "background", localStorage.getItem( "kit-wallpaper" ) ).css( "background-size", "cover" ).css( "background-position", "center" );
28
29     if( !localStorage.getItem( "kit-default-browser" ) ) localStorage.setItem( "kit-default-browser", "browser" );
30
31     if( localStorage.getItem("kit-fusen") ){
32         this.list = JSON.parse(localStorage.getItem("kit-fusen"));
33         for( let i in this.list ){
34             KWS.fusen.add(this.list[i]);
35         }
36     }
37     
38     if( localStorage.getItem("kit-darkmode") == "true" ){
39         KWS.darkmode = true;
40         $("#kit-darkmode").attr("href", "system/theme/kit-darkmode.css");
41         $(".winc-darkmode").addClass("kit-darkmode");
42     }
43
44     if( System.bootopt.get("safe") ){
45         $("#kit-theme-file").attr("href", "./system/theme/theme-light.css" );
46     }
47     else{
48         if( !localStorage.getItem( "kit-theme" ) ) localStorage.setItem( "kit-theme", "theme-default.css" );
49         $("#kit-theme-file").attr("href", "./system/theme/" + localStorage.getItem("kit-theme") );
50     }
51
52     if( !localStorage.getItem( "kit-appdir" ) ) localStorage.setItem( "kit-appdir", "./app/" );
53     S.appdir = localStorage.getItem( "kit-appdir" );
54
55     if( localStorage.getItem( "kit-installed" ) ) System.installed = JSON.parse( localStorage.getItem( "kit-installed" ) );
56
57     if( localStorage["kit-userarea"] ) System.userarea = JSON.parse(localStorage["kit-userarea"]);
58     if( localStorage["kit-recycle"] ) System.recycle = JSON.parse(localStorage["kit-recycle"]);
59
60     System.moveDesktop( "1" );
61
62     var clockmove;
63     if( System.bootopt.get("safe") ) clockmove = setInterval( System.clock, 1000 );
64     else  clockmove = setInterval( System.clock, 10 );
65
66     if ( localStorage.getItem("kit-shutted-down") == "false" ) {
67         Notification.push("お知らせ", "kitは前回終了時、正しくシャットダウンされませんでした。", "system");
68     }
69     localStorage.setItem("kit-shutted-down", false);
70
71     Notification.push("kitへようこそ", localStorage["kit-username"] + "さん、こんにちは。", "system", null, null, 'documents/icon.png', [
72         {
73             label: 'kitについて',
74             func: () => System.launch( 'settings', {'view': 'about'} )
75         }
76     ]);
77
78     if( localStorage.getItem( "kit-startup" ) == undefined ) {
79         localStorage.setItem( "kit-startup", new Array( "welcome" ) );
80     }
81     System.startup = localStorage.getItem( "kit-startup" ).split( "," );
82     if( System.bootopt.get("safe") ){
83         Notification.push( "セーフブート", "現在、kitをセーフモードで起動しています。", "system" );
84         System.alert( "セーフブート", "現在、kitをセーフモードで起動しています。<br><a class='kit-hyperlink' onclick='System.reboot()'>通常モードで再起動</a>", "system" );
85     }
86     else for( let i of System.startup ) if( i != "" ) System.launch(i);
87     
88     $("#kit-header-fullscreen").hide();
89
90     //イベントハンドラ
91     $( "#desktops" ).click( function() {
92         $( "#desktop-" + currentDesktop ).toggleClass( "selected-section" );
93     } ).mousedown( function() {
94         $( ".window" ).css( "opacity", "0.6" );
95     } ).mouseup( function() {
96         $( ".window" ).css( "opacity", "1.0" );
97     } );
98     //タスク一覧
99     $( "#footer-tasks" ).click( function() {
100         if( $( "#kit-tasks" ).is( ":visible" ) ) {
101             $( "#kit-tasks" ).html( "" ).fadeOut( 300 );
102         }
103         else {
104             $( "#task-ctx" ).fadeOut( 200 );
105             $( "#kit-tasks" ).html( $( "#tasks" ).html() ).fadeIn( 300 ).css( "z-index", "9997" );
106         }
107     } );
108     $.getJSON("system/testload.json").fail( () => {
109         $('#body').append(`<div id='wcors' class="window windowactive" style="top: 70px; left: 50px; width: calc(100% - 100px)">
110             <div class="wt">問題が発生しました</div>
111             <div class="winc">JSONデータ読み込みに失敗しました。<br>
112             クロスオリジン制約によりkitアプリケーションの動作が制限されている場合があります。<br>
113             詳細は<a class="kit-hyperlink" onclick="location.href = 'https://mtsgi.github.io/kitdocs/#/cors'">こちらの記事</a>をご確認ください。</div>
114         </div>`);
115         $('<kit-button-alt class="kit-block kit-text-c m">閉じる</kit-button-alt>').appendTo('#wcors .winc').on('click', ()=>{
116             $('#wcors').remove();
117         })
118     });
119     
120     $.getJSON("config/desktop.json", (data) => {
121         for( let i in data ){
122             $(".desktop-icons").append("<div class='desktop-icon' data-launch='" + i + "'><img src='" + data[i].icon + "'>" + data[i].name + "</div>");
123         }
124         $(".desktop-icon").on("click", function(){
125             System.launch( $(this).attr("data-launch") );
126         });
127     }).fail( function() {
128         Notification.push( "読み込みに失敗", "デスクトップ(config/desktop.json)の読み込みに失敗しました。", "system" );
129     } );
130     
131     $.getJSON("config/apps.json", System.initLauncher).fail( function() {
132         Notification.push( "ランチャー初期化失敗", "アプリケーション一覧(config/apps.json)の読み込みに失敗しました。", "system" );
133     } );
134     $( "#kit-tasks" ).delegate( ".task", "click", function() {
135         System.close( this.id.slice( 1 ) );
136         $( this ).hide();
137     } );
138     
139     $( "#footer-noti" ).click( function() {
140         $( "#last-notification" ).hide( "drop", {direction: "right"}, 300 );
141         if( $( "#notifications" ).is( ":visible" ) ) {
142             $( "#notifications" ).hide( "drop", {direction: "right"}, 300 );
143         }
144         else {
145             $( "#notifications" ).show( "drop", {direction: "right"}, 300 );
146         }
147     } );
148     $( "#last-notification-close" ).click( function() {
149         $( "#last-notification" ).hide( "drop", {direction: "right"}, 300 );
150     } );
151     $("#notifications-dnp").prop("checked", false).on("change", ()=>{
152         if( $("#notifications-dnp").is(":checked") ){
153             Notification.goodnight = true;
154         }
155         else Notification.goodnight = false;
156     });
157     
158     $( ".power-button" ).click( function() {
159         $( "#notifications" ).hide( "drop", {direction: "right"}, 300 );
160         $( "#last-notification" ).hide( "drop", {direction: "right"}, 300 );
161         $( "#kit-wallpaper" ).css( "filter", "blur(5px)" );
162         $( "footer, header, #launcher, #task-ctx, #kit-sightre, .dropdown, #desktop-" + currentDesktop ).hide();
163         $( "#kit-power" ).show();
164     } );
165     $( "#kit-power-back" ).click( function() {
166         $( "section, header, footer, #kit-wallpaper, .dropdown" ).css( "filter", "none" );
167         $( "footer, header, #desktop-" + currentDesktop ).show();
168         $( "#kit-power" ).hide();
169     } );
170     $( "#kit-power-shutdown" ).click( function() {
171         System.shutdown();
172     } );
173     $( "#kit-power-reboot" ).click( function() {
174         System.reboot();
175     } );
176     $( "#kit-power-suspend" ).click( function() {
177         location.reload();
178         $( "section, header, footer, #kit-wallpaper" ).css( "filter", "none" );
179         $( "#kit-power" ).fadeOut( 300 );
180         System.alert("サスペンド機能", "サスペンド機能はこのバージョンのkitではサポートされていません。");
181     } );
182     $( "#kit-power-lock" ).click( function() {
183         System.lock();
184     } );
185     $( "#lock-password" ).on( 'keypress', function( e ) {
186         if( e.which == 13 ) $( "#lock-unl" ).click();
187     } );
188     $( "#lock-unl" ).on( 'click', function() {
189         if( !localStorage.getItem( "kit-password" ) || $( "#lock-password" ).val() == localStorage.getItem( "kit-password" ) ) {
190             $( "header, footer" ).show();
191             $( "section, header, footer, #kit-wallpaper" ).css( "filter", "none" );
192             $( "#lock-password" ).val( "" );
193             System.moveDesktop(1);
194         }
195         else $( "#lock-password" ).effect( "bounce", {distance: 12, times: 4}, 500 );
196     } ).hover( function() {
197         $( "#lock-unl span" ).removeClass( "fa-lock" ).addClass( "fa-lock-open" );
198     }, function() {
199         $( "#lock-unl span" ).removeClass( "fa-lock-open" ).addClass( "fa-lock" );
200     } );
201     
202     $( "#launch" ).click( function() {
203         $( "#notifications" ).hide( "drop", {direction: "right"}, 300 );
204         if( $( "#launcher" ).is( ":visible" ) ) {
205             $( "#kit-wallpaper" ).css( "filter", "none" );
206             $( "#desktop-" + currentDesktop ).show();
207             $( "#launcher" ).hide();
208         }
209         else {
210             $( "#kit-wallpaper" ).css( "filter", "blur(5px)" )
211             $( "section, #task-ctx" ).hide();
212             $( "#launcher" ).show();
213         }
214     } );
215
216     //Sightre
217     $('#kit-header-sightre').on('click', () => {
218         if($('#kit-sightre').is( ":visible" )) {
219             $('#kit-sightre').fadeOut(300);
220         }
221         else {
222             $('#kit-sightre-results').html('');
223             $('#kit-sightre').show();
224             $('#kit-sightre-form').val('').focus();
225         }
226     });
227     let sightrePrevWord = '';
228     $('#kit-sightre-form').on('keypress', (e) => {
229         let _word = $('#kit-sightre-form').val();
230         if( e.which == 13 && _word ) {
231             if( _word == "kit" ){
232                 S.alert("", "<div style='text-align:left;'> _    _ _ <br>| | _(_) |_ <br>| |/ / | __|<br>|   〈| | |_ <br>|_|\_ \ _\__|</div><hr>", S.version);
233                 return;
234             }
235             $('.kit-sightre-result.-first').click();
236             sightrePrevWord = '';
237             $('#kit-sightre-form').val('');
238             $('#kit-sightre-results').html('');
239             $('#kit-sightre').fadeOut(300);
240         }
241     }).on('keydown keyup change', (e) => {
242         let _word = $('#kit-sightre-form').val();
243         if( e.which == 27 ) $('#kit-sightre').fadeOut(300);
244         else {
245             if( _word == sightrePrevWord ) return;
246             $('#kit-sightre-results').html('');
247             if( !_word ) return;
248             sightrePrevWord = _word;
249             if( _word.indexOf('kish ') == 0 || _word.indexOf('🥧 ') == 0 ){
250                 let _cmd = _word.substring( _word.indexOf(" ") + 1 );
251                 if( _cmd ){
252                     $(`<div class='kit-sightre-result -first'>
253                             <img class='--icon' src='app/kish/icon.png'/>
254                             <div class='--info'>
255                                 <div class='--name'>${_cmd}</div>
256                                 <div class='--desc'>kishでコマンドを実行</div>
257                             </div>
258                             <div class='--open fa fa-arrow-right'></div>
259                         </div>`).appendTo('#kit-sightre-results').on('click', () => {
260                             System.launch('kish', { 'rc': [ _cmd ] });
261                     });
262                 }
263             }
264             else if( _word.indexOf('http://') == 0 || _word.indexOf('https://') == 0 || _word.indexOf('localhost') == 0 ){
265                 $(`<div class='kit-sightre-result -first'>
266                         <img class='--icon' src='app/browser/icon.png'/>
267                         <div class='--info'>
268                             <div class='--name'>${_word}</div>
269                             <div class='--desc'>ブラウザでURLを開く</div>
270                         </div>
271                         <div class='--open fa fa-arrow-right'></div>
272                     </div>`).appendTo('#kit-sightre-results').on('click', () => {
273                         System.launch( localStorage.getItem('kit-default-browser'), { "url" : _word } );
274                 });
275             }
276             else {
277                 $(`<div class='kit-sightre-result -first'>
278                         <img class='--icon' src='system/icons/q.png'/>
279                         <div class='--info'>
280                             <div class='--name'>${_word}</div>
281                             <div class='--desc'>アプリを起動する</div>
282                         </div>
283                         <div class='--open fa fa-arrow-right'></div>
284                     </div>`).appendTo('#kit-sightre-results').on('click', () => {
285                         let _args = null;
286                         try {
287                             if( _word.split(",")[1] ) _args = JSON.parse( _word.split(",").slice(1).join().trim() );
288                         }
289                         catch(error) {
290                             Notification.push("引数の解釈に失敗", error, "system");
291                         }
292                         System.launch( _word.split(",")[0], _args );
293                 });
294             }
295             for( let i in System.apps ){
296                 if( i.indexOf(_word) == 0 || S.apps[i].name.indexOf(_word) == 0 ){
297                     $(`<div class='kit-sightre-result -app'>
298                             <img class='--icon' src='${S.apps[i].icon}'/>
299                             <div class='--info'>
300                                 <div class='--name'>${S.apps[i].name}</div>
301                                 <div class='--desc'>kitアプリケーション - ${i}</div>
302                             </div>
303                             <div class='--open fa fa-arrow-right'></div>
304                         </div>`).appendTo('#kit-sightre-results').on('click', () => {
305                         System.launch(i);
306                         $('#kit-sightre-results').html('');
307                         $('#kit-sightre').fadeOut(300);
308                     });
309                 }
310             }
311             for( let i in System.userarea ){
312                 if( i.indexOf(_word) == 0 || i.indexOf(_word) == 0 ){
313                     $(`<div class='kit-sightre-result -file'>
314                             <i class="fa fa-file --icon"></i>
315                             <div class='--info'>
316                                 <div class='--name'>${i}</div>
317                                 <div class='--desc'>ファイル - 種類:${S.userarea[i].type} - ユーザー:${System.username}</div>
318                             </div>
319                             <div class='--open fa fa-arrow-right'></div>
320                         </div>`).appendTo('#kit-sightre-results').on('click', () => {
321                         System.open(i);
322                         $('#kit-sightre-results').html('');
323                         $('#kit-sightre').fadeOut(300);
324                     });
325                 }
326             }
327             $(`<div class='kit-sightre-result -link'>
328                     <i class="fa fa-search --icon"></i>
329                     <div class='--info'>
330                         <div class='--name'>${_word}</div>
331                         <div class='--desc'>をWebで検索</div>
332                     </div>
333                     <div class='--open fa fa-arrow-right'></div>
334                 </div>`).appendTo('#kit-sightre-results').on('click', () => {
335                 System.launch( 'browser', { 'url' : 'https://www.bing.com/search?q=' + _word } );
336                 $('#kit-sightre-results').html('');
337                 $('#kit-sightre').fadeOut(300);
338             });
339             $(`<div class='kit-sightre-result -link'>
340                     <i class="fab fa-wikipedia-w --icon"></i>
341                     <div class='--info'>
342                         <div class='--name'>${_word}</div>
343                         <div class='--desc'>wikipediaの記事を表示</div>
344                     </div>
345                     <div class='--open fa fa-arrow-right'></div>
346                 </div>`).appendTo('#kit-sightre-results').on('click', () => {
347                 System.launch( 'browser', { 'url' : 'https://ja.wikipedia.org/wiki/' + _word } );
348                 $('#kit-sightre-results').html('');
349                 $('#kit-sightre').fadeOut(300);
350             });
351         }
352     });
353
354     $("#dropdown-sound-slider").slider({
355         min: 0, max: 100, step: 1, value: 100,
356         change: (e, ui) => {
357             System.audio.level = ui.value;
358             $("#dropdown-sound-level").text(ui.value);
359             localStorage.setItem("kit-audio-level", ui.value);
360             for( let i in System.audio.list ){
361                 System.audio.list[i].volume = System.audio.level / 100;
362             }
363             if( ui.value == 0 ) $("#kit-header-sound-icon").removeClass("fa-volume-up").addClass("fa-volume-mute");
364             else $("#kit-header-sound-icon").removeClass("fa-volume-mute").addClass("fa-volume-up");
365         }
366     });
367     if( localStorage["kit-audio-level"] ) System.audio.volume( localStorage["kit-audio-level"] );
368
369     $("#dropdown-sound-silent").prop("checked", false).on("change", ()=>{
370         if( $("#dropdown-sound-silent").is(":checked") ){
371             System.audio.silent = true;
372             $("#kit-header-sound-icon").removeClass("fa-volume-up").addClass("fa-volume-mute");
373         }
374         else{
375             System.audio.silent = false;
376             $("#kit-header-sound-icon").removeClass("fa-volume-mute").addClass("fa-volume-up");
377         }
378     });
379
380     $('#kit-header-user').on('click', () => System.launch('user') );
381
382     $(":root section:not(#desktop-l)").on("contextmenu", function() {
383         let _ptelem = $( document.elementFromPoint(S.mouseX, S.mouseY) );
384         S.selectedElement = _ptelem;
385         S.selectedText = window.getSelection();
386         $( "#kit-context-input" ).val( S.selectedText );
387         if( $( "#kit-context-input" ).val() == "" ) $("#kit-contextgroup-text").hide();
388         else $("#kit-contextgroup-text").show();
389         if( _ptelem[0].id == "desktop-" + currentDesktop ){
390             $("#kit-contextgroup-desktop").show();
391             $("#kit-contextgroup-elem").hide();
392         }
393         else{
394             $("#kit-contextgroup-desktop").hide();
395             $("#kit-contextgroup-elem").show();
396         }
397         $( "#kit-context-elem" ).text( _ptelem.prop("tagName").toLowerCase() + "要素" );
398         $("#kit-contextgroup-custom").hide();
399
400         let  _ctxid = _ptelem.attr("data-kit-contextid") || _ptelem.attr("kit-context");
401         if( _ctxid ){
402             $("#kit-contextgroup-custom").show().html('<div id="kit-context-custom"></div>');
403             let  _ctxname = KWS.context[_ctxid].name || _ctxid; 
404             $("#kit-context-custom").text( _ctxname );
405             for( let i in KWS.context[_ctxid]){
406                 if( i == "name" ) continue;
407                 $("#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>");
408                 $("#kit-context-" + _ctxid + "-" + i).on("click", () => {
409                     KWS.context[_ctxid][i].function();
410                     $("#kit-context").fadeOut(300);
411                 });
412             }
413         }
414         if( _ptelem[0].id ) $( "#kit-context-elem" ).append( "#" + _ptelem[0].id );
415         $( "#kit-context-size" ).text( _ptelem[0].clientWidth + "✕" + _ptelem[0].clientHeight );
416         $("#kit-context").toggle().css("left", S.mouseX).css("top", S.mouseY);
417         return false;
418     });
419     $("#kit-context-open").on("click", function(){
420         S.alert("要素", S.selectedElement.clone());
421     });
422     $("#kit-context-save").on("click", function(){
423         S.obj2img( S.selectedElement , true );
424     });
425     $( "#kit-context-search" ).on("click", function(){
426         $("#kit-context").fadeOut(300);
427         System.launch( 'browser', {'url': `https://www.bing.com/search?q=${$('#kit-context-input').val()}`} );
428     });
429     $( "#kit-context-input" ).keypress( function( e ) {
430         if( e.which == 13 ) $( "#kit-context-search" ).click();
431     } );
432     $("#kit-context a").on("click", function(){
433         $("#kit-context").fadeOut(300);
434     });
435     $("#kit-context-vacuum").on("click", function(){
436         for( let i in process ){
437             KWS.vacuum( S.mouseX, S.mouseY );    
438         }
439         setTimeout(() => {
440             $(".window").css("transition", "none");
441         }, 500);
442     });
443     $("#kit-context-fusen").on("click", function(){
444         KWS.fusen.add("");
445     });
446
447
448     $("section").on("click", function(){
449         $("#kit-context").fadeOut(300);
450     })
451
452     $( document ).delegate('a', 'click', function() {
453         if( this.href ) {
454             System.launch( localStorage.getItem( "kit-default-browser" ), { "url" : this.href } );
455             return false;
456         }
457     } ).on("mousemove", function(e){
458         System.mouseX = e.clientX;
459         System.mouseY = e.clientY;
460     }).delegate('.textbox', 'keypress', function(e) {
461         if( e.which == 13 && this.id ){
462             if( $("#" + this.id + " + .kit-button").length ){
463                 Notification.push("debug", this.id, "system");
464                 $("#" + this.id + " + .kit-button").click();
465             }
466             else if( $("#" + this.id + " + kit-button").length ){
467                 Notification.push("debug", this.id, "system");
468                 $("#" + this.id + " + kit-button").click();
469             }
470         }
471     } );
472
473     window.onresize = () => {
474         System.display.width = window.innerWidth;
475         System.display.height = window.innerWidth;
476
477         if( KWS.fullscreen.pid ){
478             KWS.resize( KWS.fullscreen.pid, System.display.width, System.display.height - 30 );
479         }
480     }
481
482     if( localStorage.getItem( "kit-lock" ) == "true" ){
483         $("section").hide();
484         setTimeout(() =>  System.lock(), 100);
485     }
486 }
487
488 async function launch( str, args, dir ) {
489     while(System.launchLock) await System.ajaxWait();
490     System.launchLock = true;
491
492     let _pid = pid;
493     System.args[_pid] = args;
494     let _path = dir || System.appdir + str;
495     System.launchpath[_pid] = _path;
496
497     if( System.appCache[_path] ) {
498         if( KWS.fullscreen.pid ) KWS.unmax(KWS.fullscreen.pid);
499         appData( System.appCache[_path] );
500     }
501     else {
502         try{
503             $.getJSON( S.launchpath[_pid] + '/define.json', appData ).fail( () => {
504                 Notification.push('kitアプリをロードできません。', `${str}を展開できませんでした。`, 'system');
505             } );
506         }
507         catch(error){
508             Notification.push( "System Error", error, "system" );
509         }
510     }
511 }
512
513 async function appData( data ) {
514     if( data.support && data.support.multiple == false ){
515         for( let p in process ){
516             if( process[p].id === data.id ){
517                 Notification.push('多重起動エラー', `アプリケーション「${data.name}」の多重起動は許可されていません。`, 'system');
518                 System.launchLock = false;
519                 return;
520             }
521         }
522     }
523     let _pid = pid;
524     process[String( _pid )] = {
525         id: data.id,
526         time: System.time.obj.toLocaleString(),
527         isactive: false,
528         preventclose: false,
529         title: data.name
530     };
531     System.appCache[System.launchpath[pid]] = data;
532     app = new App(_pid);
533     let _taskAppend = `<span id='t${_pid}'>`;
534     if( data.icon && data.icon != "none" ) _taskAppend += `<img src='${S.launchpath[_pid]}/${data.icon}'>`;
535     _taskAppend += `<span id='tname${_pid}'>${data.name}<span></span>`;
536     $( "#tasks" ).append( _taskAppend );
537     $( "#t" + _pid ).addClass( "task" ).on({
538         click: function() {
539             if( process[_pid].isactive || $(this).hasClass("task-min") ) KWS.min( _pid );
540             else{
541                 $("#w"+_pid).css("z-index", KWS.windowIndex + 1);
542                 KWS.refreshWindowIndex();
543             }
544         },
545         mouseenter: function() {
546             $("#task-ctx-name").text(data.name || 'アプリ名なし');
547             if( data.icon && data.icon != "none" ) $("#task-ctx-img").attr( "src", System.launchpath[_pid] + "/" + data.icon );
548             else $( "#task-ctx-img" ).hide();
549             $("#task-ctx-ver").text(data.version + "/pid:" + _pid);
550             $("#task-ctx-info").off().on("click", function() { System.appInfo( _pid )});
551             $("#task-ctx-sshot").off().on("click", function() { S.screenshot(_pid, true) });
552             $("#task-ctx-min").off().on("click", function() { KWS.min( String(_pid) ) });
553             if( $(this).hasClass("t-active") ) $( "#task-ctx-front" ).hide();
554             else $( "#task-ctx-front" ).show();
555             $("#task-ctx-front").off().on('click', function() {
556                 $("#w"+_pid).css("z-index", KWS.windowIndex + 1);
557                 KWS.refreshWindowIndex();
558             });
559             $("#task-ctx-close").off().on("click", () => System.close(_pid));
560             $("#task-ctx-kill").off().on("click", () => System.kill( data.id));
561             const _ctxleft = $(this).offset().left, _ctxtop = window.innerHeight - $(this).offset().top;
562             if( _ctxleft != $("#task-ctx").offset().left ) $("#task-ctx").hide();
563             $("#task-ctx").css("left", _ctxleft).css("bottom", _ctxtop).show();
564         }
565     } );
566     $( "section, #kit-tasks" ).on( "mouseenter", function() {
567         $( "#task-ctx" ).fadeOut( 200 );
568     } );
569     $( "#t" + _pid ).on({
570         mouseenter: () => {
571             prevWindowIndex = $( "#w" + _pid ).css( "z-index" );
572             $( "#w" + _pid ).addClass( "win-highlight" );
573         },
574         mouseleave: () => $( "#w" + _pid ).removeClass( "win-highlight" )
575     });
576
577     let _windowAppend = "<div id='w" + _pid + "'><div id='wt" + _pid + "' class='wt'><i class='wmzx'><span id='wm" + _pid + "'></span>";
578     if( data.support && data.support['fullscreen'] == true ) _windowAppend += "<span id='wz" + _pid + "'></span>";
579     _windowAppend += "<span id='wx" + _pid + "'></span></i>";
580     if( data.icon && data.icon != "none" ) _windowAppend += "<img src='" + S.launchpath[_pid] + "/" + data.icon + "'>";
581     _windowAppend += "<span id='wtname" + _pid + "'>" + data.name + "</span></div><div class='winc winc-" + data.id + "' id='winc" + _pid + "'></div></div>";
582     $( "#desktop-" + currentDesktop ).append( _windowAppend );
583
584     if( data.support && data.support['darkmode'] == true ) $("#winc"+_pid).addClass("winc-darkmode");
585     if( KWS.darkmode ) $("#winc"+_pid).addClass("kit-darkmode");
586
587     if( data.size ){
588         $("#winc"+_pid).css("width", data.size.width).css("height", data.size.height);
589     }
590     if( data.resize ){
591         let _minwidth = 200, _minheight = 40;
592         if( data.resize.minWidth ) _minwidth = data.resize.minWidth;
593         if( data.resize.minHeight ) _minheight = data.resize.minHeight;
594         $("#winc"+_pid).windowResizable({
595             minWidth: _minwidth,
596             minHeight: _minheight
597         });
598     }
599
600     let windowPos = 50 + ( _pid % 10 ) * 20;
601     KWS.windowIndex ++;
602     $( "#w"+_pid ).addClass( "window" ).pep({
603         elementsWithInteraction: ".winc, .ui-resizable-handle",
604         useCSSTranslation: false,
605         disableSelect: false,
606         shouldEase:     true,
607         initiate: function(){
608             $(this.el).addClass("ui-draggable-dragging");
609             KWS.windowIndex ++;
610             this.el.style.zIndex = KWS.windowIndex;
611             KWS.refreshWindowIndex();
612         },
613         stop: function(){
614             this.el.style.transition = "none";
615             $(this.el).removeClass("ui-draggable-dragging");
616         }
617     }).on( "mousedown", function(){
618         $(".window").css( "transition", "none" );
619         $(this).css("z-index", KWS.windowIndex + 1);
620         KWS.refreshWindowIndex();
621     } ).css( "left", windowPos + "px" ).css( "top", windowPos + "px" ).css( "z-index",  KWS.windowIndex );
622     KWS.refreshWindowIndex();
623     $( `#wm${_pid}` ).addClass( "wm fa fa-window-minimize" ).on("click", () => KWS.min( _pid ) );
624     $( `#wz${_pid}` ).addClass( "wz fas fa-square" ).on("click", () => KWS.max( _pid ) );
625     $( `#wx${_pid}` ).addClass( "wx fa fa-times" ).on("click", () => System.close( _pid )  );
626     $( "#winc" + _pid ).resizable( {
627         minWidth: "200"
628     } ).load( System.launchpath[_pid] + "/" + data.view, (r, s, x) => {
629         if( s == "error" ){
630             Notification.push("起動に失敗:" + x.status, x.statusText);
631             return false;
632         }
633         if( !data.script || data.script != "none" ) $.getScript( System.launchpath[_pid] + "/" + data.script, () => {
634             if( !data.support || data.support['kaf'] != false ) App.kaf(_pid);
635             pid++;
636         }).fail( () => {
637             App.kaf(_pid);
638             pid++;
639         });
640         else if( !data.support || data.support['kaf'] != false ){
641             App.kaf(_pid);
642             pid++;
643         }
644         else pid++;
645         if( data.css != "none" && $("#kit-style-"+data.id).length == 0 ){
646             $( "head" ).append( '<link href="' + System.launchpath[_pid] + '/' + data.css + '" rel="stylesheet" id="kit-style-' + data.id + '"></link>' );
647         }
648         localStorage.setItem( "kit-pid", pid );
649         System.launchLock = false;
650     } );
651 }
652
653 const System = new function() {
654     this.version = "0.2.1";
655     this.username = localStorage.getItem("kit-username");
656     this.appdir = localStorage.getItem("kit-appdir");
657     this.loc = { ...location };
658
659     this.bootopt = new URLSearchParams(location.search);
660
661     this.mouseX = 0;
662     this.mouseY = 0;
663
664     this.display = {
665         "width": window.innerWidth,
666         "height": window.innerHeight
667     }
668
669     this.selectedElement = null;
670     this.selectedText = null;
671
672     this.dom = function(_pid, ..._elems) {
673         let q = "";
674         if( !_elems.length ) q = ",#winc" + _pid;
675         else for( let i of _elems ){
676             q += ",#winc" + _pid + " " + i;
677         }
678         return $( q.substring(1) );
679     }
680
681     this.qs = ( _pid, ..._elems ) => {
682         let q = "";
683         if( !_elems.length ) q = ",#winc" + _pid;
684         else for( let i of _elems ) q += ",#winc" + _pid + " " + i;
685         return document.querySelectorAll( q.substring(1) )
686     }
687
688     this.userarea = new Object();
689     this.recycle = new Object();
690
691     this.appCache = {};
692     //アプリ引数
693     this.args = {};
694     //アプリ起動パス
695     this.launchpath = {};
696
697     this.support = $.support;
698     this.debugmode = false;
699
700     this.battery = null;
701
702     this.log = new Array();
703     this.noop = () => {}
704
705     this.launchLock = false;
706     
707     this.waitLaunchUnlock = (callback) => {
708         setTimeout(()=>{
709             if(this.ajaxLock){
710                 this.waitLaunchUnlock(callback);
711             }else{
712                 return callback();
713             }
714         }, 100)
715     }
716
717     this.ajaxWait = () =>{
718         return new Promise(resolve =>{
719              System.waitLaunchUnlock(resolve);
720         });
721     }
722
723     this.setBattery = function(){
724         if( navigator.getBattery ) navigator.getBattery().then((e)=>{
725             let _lv =  e.level * 100;
726             System.battery = _lv;
727             return _lv;
728         });
729     }
730
731     this.screenshot = function( _pid, _popup ){
732         let _elem = document.querySelector("body");
733         if( _pid ) _elem = document.querySelector("#w"+_pid);
734         html2canvas( _elem ).then(canvas => {
735             if( _popup ){
736                 canvas.style.border = "1px solid #909090";
737                 S.save( canvas.toDataURL("image/png"), "image" );
738             }
739             return canvas;
740         });
741     }
742
743     this.obj2img = function( _obj, _popup ){
744         let _elem = _obj[0];
745         html2canvas( _elem ).then(canvas => {
746             if( _popup ){
747                 canvas.style.border = "1px solid #909090";
748                 S.save( canvas.toDataURL("image/png"), "image" );
749             }
750             return canvas;
751         });
752     }
753
754     this.save = function(data, type){
755         System.launch("fivr", { "save" : data, "type" : type });
756     }
757
758     this.open = function(filename){
759         System.launch("fivr", { "open" : filename });
760     }
761
762     this.preventClose = function( _pid ){
763         if( !process[_pid] ) return false;
764         process[_pid].preventclose = true;
765         return true;
766     }
767     
768     this.shutdown = function(_opt) {
769         $( "#last-notification-close" ).click();
770         $( "#kit-power-back" ).click();
771         for( let i in process ) {
772             if( process[i].preventclose == true ){
773                 S.dialog( "シャットダウンの中断", "pid" + System.appCache[System.launchpath[i]].name + "がシャットダウンを妨げています。<br>強制終了してシャットダウンを続行する場合は[OK]を押下してください。", () => {
774                     process[i].preventclose = false;
775                     System.shutdown();
776                 } );
777                 return false;
778             }
779             else System.close( i );
780         }
781         $( "section" ).hide();
782         $( "body" ).css( "background-color", "black" );
783         $( "header, footer" ).fadeOut( 300 );
784         $( "#kit-wallpaper" ).fadeOut( 1500 );
785         if( _opt == "reboot" ) location.href = "autorun.html";
786         localStorage.setItem("kit-shutted-down", true);
787     }
788
789     this.reboot = function() {
790         System.shutdown("reboot");
791     }
792
793     this.lock = function(){
794         System.moveDesktop( "l" );
795
796         $( "#lock-user-icon" ).css( "background", localStorage.getItem( "kit-user-color" ) );
797         $( "section, header, footer" ).css( "filter", "none" );
798         $( "#kit-wallpaper" ).css( "filter", "blur(20px)" );
799         $( "header, footer, #kit-power" ).hide();
800
801         $( "#lock-username" ).text( localStorage.getItem( "kit-username" ) );
802         if( localStorage.getItem( "kit-password" ) ) $( "#lock-password" ).show();
803         else $( "#lock-password" ).hide();
804     }
805
806     this.alert = function( title, content, wtitle ) {
807         System.launch("alert", [title, content, wtitle]);
808     }
809
810     this.dialog = function( title, content, func ){
811         System.launch("dialog", {
812             "title": title,
813             "content": content,
814             "func": func
815         });
816     }
817
818     this.appInfo = function( _pid ){
819         let _title = "", _content = "";
820         let ac = System.appCache[S.launchpath[_pid]];
821         let _lp = System.launchpath[_pid];
822         if( ac ){
823             _title = ac.name + " " + ac.version;
824             if( ac.icon && ac.icon != "none" ) _content = "<img style='height: 96px' src='" + _lp + "/" + ac.icon + "'><br>";
825             for( let i in ac ){
826                 if( typeof ac[i] != "object" ) _content += "<div><span style='font-weight: 100'>" + i + " </span>" + ac[i] + "</div>";
827             }
828             _content += "<br><span style='font-weight: 100'>起動パス " + _lp + "</span><br><br>"
829         }
830         else _title = "取得に失敗しました";
831         System.alert( _title, _content );
832     }
833
834     this.apps = new Object();
835     this.installed = new Array();
836
837     this.close = function( _str ) {
838         let _pid = String( _str );
839         $( "#w" + _pid ).remove();
840         $( "#t" + _pid ).remove();
841         $( "#task-ctx" ).hide();
842         delete process[_pid];
843         KWS.refreshWindowIndex();
844     }
845
846     this.kill = function( _str ){
847         for( let _pid in process ) {
848             if( process[_pid] && process[_pid].id == _str ) System.close( _pid );
849         }
850     }
851     
852     this.vacuum = function( _left, _top ){
853         KWS.vacuum( _left, _top ); //非推奨です(削除予定)。
854     }
855
856     this.time = {
857         "obj" : new Date(),
858         "y" : "1970",
859         "m" : "1",
860         "d" : "1",
861         "h" : "00",
862         "i" : "00",
863         "s" : "00",
864         "ms" : "0"
865     }
866
867     this.clock = function() {
868         let DD = new Date();
869         S.time.obj = DD;
870         let Year = DD.getFullYear();
871         S.time.day = DD.getDay();
872         S.time.y = Year;
873         let Month = ( "00" + Number(DD.getMonth()+1) ).slice( -2 );
874         S.time.m = Month;
875         let DateN = ( "00" + DD.getDate() ).slice( -2 );
876         S.time.d = DateN;
877         let Hour = ( "00" + DD.getHours() ).slice( -2 );
878         S.time.h = Hour;
879         let Min = ( "00" + DD.getMinutes() ).slice( -2 );
880         S.time.i = Min;
881         let Sec = ( "00" + DD.getSeconds() ).slice( -2 );
882         S.time.s = Sec;
883         $( ".os-time" ).text( Hour + ":" + Min + ":" + Sec );
884         let MS = DD.getMilliseconds();
885         S.time.ms = MS;
886         let circle = {
887             outer: { radius: .9, color: "transparent" },
888             inner: { radius: .85, color: "transparent" }
889         }
890         let lines = {
891             long: { from: .8, to: .7, width: 2, color: "#303030" },
892             short: { from: .8, to: .75, width: 1, color: "#a0a0a0" }
893         }
894         let hands = {
895             hour: { length: .4, width: 3, cap: "butt", color: "#303030", ratio: .2 },
896             minute: { length: .67, width: 2, cap: "butt", color: "#303030", ratio: .2 },
897             second: { length: .67, width: 1, cap: "butt", color: "dodgerblue", ratio: .2 }
898         }
899         let canvas = $(".dropdown-clock-canvas")[0];
900         canvas.width = "200", canvas.height = "200";
901         let context = canvas.getContext("2d");
902         let center = { x: Math.floor(canvas.width / 2), y: Math.floor(canvas.height / 2) };
903         let radius = Math.min(center.x, center.y), angle, len;
904         context.beginPath();context.fillStyle = circle.outer.color;
905         context.arc(center.x, center.y, radius * circle.outer.radius, 0, Math.PI * 2, false);
906         context.fill();context.beginPath();context.fillStyle = circle.inner.color;
907         context.arc(center.x, center.y, radius * circle.inner.radius, 0, Math.PI * 2, false);
908         context.fill();
909         for( let i=0; i<60; i++ ){
910             angle = Math.PI * i / 30;
911             context.beginPath();
912             let line = ( i%5 == 0 ) ? lines.long : lines.short;
913             context.lineWidth = line.width, context.strokeStyle = line.color;
914             context.moveTo(center.x + Math.sin(angle) * radius * line.from, center.y - Math.cos(angle) * radius * line.from)
915             context.lineTo(center.x + Math.sin(angle) * radius * line.to, center.y - Math.cos(angle) * radius * line.to);
916             context.stroke();
917         }
918         angle = Math.PI * ( Number(Hour)+Number(Min)/60 ) / 6, len = radius * hands.hour.length;
919         context.beginPath(), context.lineWidth = hands.hour.width;
920         context.lineCap = hands.hour.cap, context.strokeStyle = hands.hour.color;
921         context.moveTo(center.x - Math.sin(angle) * len * hands.hour.ratio, center.y + Math.cos(angle) * len * hands.hour.ratio);
922         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
923         angle = Math.PI * ( Number(Min)+Number(Sec) / 60) / 30, len = radius * hands.minute.length;
924         context.beginPath(), context.lineWidth = hands.minute.width;
925         context.lineCap = hands.minute.cap, context.strokeStyle = hands.minute.color;
926         context.moveTo(center.x - Math.sin(angle) * len * hands.minute.ratio, center.y + Math.cos(angle) * len * hands.minute.ratio);
927         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
928         angle = Math.PI * Number(Sec) / 30, len = radius * hands.second.length;
929         context.beginPath(), context.lineWidth = hands.second.width;
930         context.lineCap = hands.second.cap, context.strokeStyle = hands.second.color;
931         context.moveTo(center.x - Math.sin(angle) * len * hands.second.ratio, center.y + Math.cos(angle) * len * hands.second.ratio);
932         context.lineTo(center.x + Math.sin(angle) * len, center.y - Math.cos(angle) * len), context.stroke();
933     }
934
935     this.changeWallpaper = function( str ) {
936         $( "#kit-wallpaper" ).css( "background", str ).css( "background-size", "cover" );
937         localStorage.setItem( "kit-wallpaper", str )
938     }
939
940     this.moveDesktop = function( str ) {
941         str = String( str );
942         $( "section" ).hide();
943         $( "#desktop-" + str ).show();
944         $( "#desktops" ).html( "<span class='far fa-clone'></span>Desktop" + str );
945         currentDesktop = str;
946     }
947
948     this.avoidMultiple = function( _pid, _alert ) {
949         let _id = process[_pid].id;
950         let _cnt = 0;
951         for( let i in process ) {
952             if( process[i].id == _id ) _cnt += 1;
953         }
954         Notification.push( "debug", _cnt );
955         if( _cnt > 1 ) {
956             System.close( _pid );
957             if( !_alert ){
958                 System.alert( "多重起動", "アプリケーション" + _id + "が既に起動しています。このアプリケーションの多重起動は許可されていません。" );
959             }
960         }
961         return _cnt;
962     }
963
964     this.resizable = function( _pid, _elem, _width, _height ){
965         let E = ".winc";
966         if( _elem ) E = String( _elem );
967         if( !_width ) _width = null;
968         if( !_height ) _height = "100";
969         $("#w" + _pid).resizable({
970             alsoResize: "#w" + _pid + " " + E,
971             minWidth: _width,
972             minHeight: _height
973         });
974     }
975
976     this.initLauncher = function(data){
977         $("#launcher-apps").html("");
978         System.apps = data;
979         for( let i in data ){
980             $('#launcher-apps').append(`<div class='launcher-app' data-launch='${i}'><img src='${data[i].icon}'>${data[i].name}</div>`);
981         }
982         if( !System.bootopt.get('safe') ){
983             for( let i of System.installed ){
984                 $('#launcher-apps').append(`<div class='launcher-app' data-launch='${i.path}' data-define-id='${i.id}'><img src='${i.icon}'>${i.name}</div>`);
985             }
986         }
987         $('.launcher-app').on('click', function(){
988             $('#launch').click();
989             System.launch( $(this).attr('data-launch') );
990         });
991     }
992
993     this.launch = async function(path, args) {
994         while(this.launchLock) await this.ajaxWait();
995         this.launchLock = true;
996
997         let _pid = pid;
998         System.args[_pid] = args;
999         let _path = path;
1000         if(_path.lastIndexOf('/') == _path.length - 1) {
1001             _path = _path.substring(0, _path.length - 1);
1002         }
1003         else if(_path.indexOf('/') == -1) {
1004             _path = System.appdir + _path;
1005         }
1006
1007         System.launchpath[_pid] = _path;
1008     
1009         if( System.appCache[_path] ) {
1010             if( KWS.fullscreen.pid ) KWS.unmax(KWS.fullscreen.pid);
1011             appData( System.appCache[_path] );
1012         }
1013         else {
1014             try{
1015                 $.getJSON( _path + '/define.json', appData ).fail( () => {
1016                     Notification.push('kitアプリをロードできません。', `${_path}を展開できませんでした。`, 'system');
1017                 } );
1018             }
1019             catch(error){
1020                 Notification.push( "System Error", error, "system" );
1021             }
1022         }
1023     }
1024
1025     this.clip = new function(){
1026         this.content = null;
1027         this.history = new Array();
1028
1029         this.set = function( content ){
1030             this.content = content;
1031             this.history.push(content);
1032             return content;
1033         }
1034         this.get = ()=>{ return this.content }
1035     }
1036
1037     this.config = new function(){
1038         this.apps = new Object();
1039     }
1040
1041     this.audio = new function(){
1042         this.level = localStorage["kit-audio-level"] || 100;
1043         this.silent = false;
1044
1045         this.list = new Array();
1046
1047         this.volume = function( _level ){
1048             $("#dropdown-sound-slider").slider("value", _level);
1049         }
1050
1051         this.play = function( _audioid, _src ){
1052             if( !System.audio.list[_audioid] ){
1053                 System.audio.list[_audioid] = new Audio(_src);
1054                 System.audio.list[_audioid].volume = System.audio.level / 100;
1055             }
1056             System.audio.list[_audioid].play();
1057         }
1058
1059         this.get = function( _audioid ){
1060             return System.audio.list[_audioid];
1061         }
1062
1063         this.pause = function( _audioid ){
1064             System.audio.list[_audioid].pause();
1065         }
1066
1067         this.stop = function( _audioid ){
1068             System.audio.list[_audioid].pause();
1069             System.audio.list[_audioid] = null;
1070         }
1071
1072         this.seek = function( _audioid, _time ){
1073             System.audio.list[_audioid].fastSeek(_time);
1074         }
1075
1076         this.mute = function( _audioid, _bool ){
1077             System.audio.list[_audioid].muted = _bool;
1078         }
1079     }
1080 }
1081
1082 const KWS = new function(){
1083     this.version = "3.2.3";
1084     this.active = null;
1085
1086     this.darkmode = false;
1087
1088     this.changeWindowTitle = function( _pid, _str ){
1089         $("#tname"+_pid).text( _str );
1090         $("#wtname"+_pid).text( _str );
1091     }
1092
1093     this.min = function( _str ) {
1094         let _pid = String( _str );
1095         if( $( "#w" + _pid ).is( ":visible" ) ) {
1096             $( "#w" + _pid ).css("transition", "none").hide( "drop", {direction: "down"}, 300 );
1097             $( "#task-ctx" ).effect( "bounce", {distance: 12, times: 1}, 400 );
1098             $( "#t" + _pid ).addClass( "task-min" );
1099         }
1100         else {
1101             $( "#w" + _pid ).show( "drop", {direction: "down"}, 300 );
1102             $( "#task-ctx" ).effect( "bounce", {distance: 12, times: 1}, 400 );
1103             $( "#t" + _pid ).removeClass( "task-min" );
1104         }
1105     }
1106
1107     this.fullscreen = {
1108         "pid": null,
1109         "prevWidth": null,
1110         "prevHeight": null,
1111         "prevTop": 0,
1112         "prevLeft": 0
1113     }
1114
1115     this.max = function( _pid ){
1116         let _appcache = System.appCache[System.launchpath[_pid]];
1117         if( KWS.fullscreen.pid || _appcache.support.fullscreen != true ){
1118             Notification.push('最大化に失敗', 'ウィンドウの最大化に失敗しました。', 'system');
1119             return;
1120         }
1121         KWS.fullscreen.prevWidth = $("#winc"+_pid).outerWidth();
1122         KWS.fullscreen.prevHeight = $("#winc"+_pid).outerHeight();
1123         KWS.fullscreen.prevTop = $("#w"+_pid).offset().top;
1124         KWS.fullscreen.prevLeft = $("#w"+_pid).offset().left;
1125         KWS.fullscreen.pid = _pid;
1126         $( "#wt"+_pid ).addClass("wtmaximize");
1127         $( "#w"+_pid ).css({
1128             "top": "0px",
1129             "left": "0px"
1130         })
1131         .addClass("windowmaximize")
1132         .css("z-index", KWS.windowIndex + 1);
1133         KWS.refreshWindowIndex();
1134         KWS.resize( _pid, System.display.width, System.display.height - 30 );
1135         $("footer").hide();
1136         $("#kit-header-fullscreen").show().on('click', () => KWS.unmax( _pid ));
1137     }
1138
1139     this.unmax = function( _pid ){
1140         if( _pid != KWS.fullscreen.pid ){
1141             Notification.push("最大化解除に失敗", "対象がフルスクリーンウィンドウではありません。");
1142             return;
1143         }
1144         $('#wt'+_pid).removeClass("wtmaximize");
1145         $('#w'+_pid).css({
1146             "top": KWS.fullscreen.prevTop,
1147             "left": KWS.fullscreen.prevLeft
1148         })
1149         .removeClass("windowmaximize");
1150         $("footer").show();
1151         $("#kit-header-fullscreen").hide().off();
1152         KWS.resize( _pid, KWS.fullscreen.prevWidth, KWS.fullscreen.prevHeight );
1153         KWS.fullscreen.pid = null;
1154         KWS.fullscreen.prevWidth = null;
1155         KWS.fullscreen.prevHeight = null;
1156         KWS.fullscreen.prevTop = null;
1157         KWS.fullscreen.prevLeft = null;
1158
1159         if( !System.appCache[System.launchpath[_pid]].size.height ) {
1160             System.qs(_pid)[0].style.height = "auto";
1161         }
1162     }
1163
1164     this.vacuum = function( _left, _top ){
1165         for( let i in process ){
1166             $("#w"+i).css("transition", ".5s all ease").css("left", _left ).css("top", _top );
1167         }
1168         setTimeout(() => {
1169             $(".window").css("transition", "none");
1170         }, 500);
1171     }
1172
1173     this.active = null;
1174     this.windowIndex = 1;
1175
1176     this.refreshWindowIndex = function(){
1177         let num = $(".window").length;
1178         let array = new Array();
1179         let obj = new Object();
1180         for( let i = 0; i < num; i++ ){
1181             obj = { id: $(".window")[i].id, zindex: $(".window")[i].style.zIndex };
1182             array.push( obj );
1183         };
1184         array.sort( (a,b) => {
1185             return Number(a.zindex - b.zindex);
1186         } );
1187         for( let i in array ){
1188             document.getElementById(array[i].id).style.zIndex = i;
1189             if( i == num-1 ){
1190                 $("#"+array[i].id).addClass("windowactive");
1191                 $("#t"+String(array[i].id).substring(1)).addClass("t-active");
1192                 KWS.active = String(array[i].id).substring(1);
1193                 process[array[i].id.substring(1)].isactive = true;
1194             }
1195             else{
1196                 $("#"+array[i].id).removeClass("windowactive");
1197                 $("#t"+String(array[i].id).substring(1)).removeClass("t-active");
1198                 process[array[i].id.substring(1)].isactive = false;
1199             }
1200         }
1201         KWS.windowIndex = num;
1202     }
1203
1204     this.front = function( _pid ) {
1205         $(`#w${_pid}`).css("z-index", KWS.windowIndex + 1);
1206         KWS.refreshWindowIndex();
1207     }
1208
1209     this.resize = function( _pid, _width, _height ){
1210         if( _width ) $("#winc"+_pid).css("width", _width)
1211         if( _height ) $("#winc"+_pid).css("height", _height);
1212     }
1213
1214     this.setTheme = function(_name){
1215         localStorage.setItem('kit-theme', _name);
1216         if(_name != 'none') $('#kit-theme-file').attr('href', `./system/theme/${localStorage.getItem('kit-theme')}`);
1217         else $('#kit-theme-file').attr('href', '');
1218         System.moveDesktop(currentDesktop);
1219     }
1220
1221     this.fusen = new function(){
1222         this.fid = 0;
1223         this.list = new Object();
1224
1225         this.add = function(_text){
1226             KWS.fusen.list[KWS.fusen.fid] = String(_text);
1227             $("#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>");
1228             $("#kit-f"+KWS.fusen.fid).css({
1229                 "left": Number(KWS.fusen.fid)*40 + 20,
1230                 "top": Number(KWS.fusen.fid)*10 + 100,
1231             }).pep({
1232                 elementsWithInteraction: ".kit-fusen-textarea",
1233                 useCSSTranslation: false,
1234                 disableSelect: false,
1235                 shouldEase:     true,
1236                 initiate: function(){
1237                     $(this.el).css("ui-opacity", "0.7");
1238                 },
1239                 stop: function(){
1240                     this.el.style.transition = "none";
1241                     $(this.el).css("ui-opacity", "1.0");
1242                 }
1243             })
1244             $(".kit-fusen-textarea").off().on("change",function(){
1245                 KWS.fusen.list[$(this).attr("data-fid")] = $(this).val();
1246                 localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1247             });
1248             localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1249             KWS.fusen.fid++;
1250         }
1251
1252         this.remove = function(_fid){
1253             delete KWS.fusen.list[_fid];
1254             localStorage.setItem("kit-fusen", JSON.stringify( KWS.fusen.list ));
1255             $("#kit-f"+_fid).remove();
1256         }
1257     }
1258
1259     this.addCustomContext = function( _elem, _contextid, _obj ){
1260         KWS.context[_contextid] = _obj;
1261     }
1262
1263     this.context = {
1264         "fusen" : {
1265             "name" : "ふせん",
1266             "delete" : {
1267                 "label" : "ふせんを削除",
1268                 "icon" : "fa-trash-alt",
1269                 "function" : function(){
1270                     KWS.fusen.remove( S.selectedElement.attr("data-fid") );
1271                 }
1272             },
1273             "copy" : {
1274                 "label" : "ふせんを複製",
1275                 "icon" : "fa-copy",
1276                 "function" : function(){
1277                     KWS.fusen.add( KWS.fusen.list[S.selectedElement.attr("data-fid")] );
1278                 }
1279             }
1280         }
1281     }
1282 }
1283
1284 const Notification = new function() {
1285     this.nid = 0;
1286     this.list = new Object();
1287
1288     this.goodnight = false;
1289     this.sound = null;
1290
1291     this.push = function( _title, _content, _app, _pid, _action, _img, _buttons ) {
1292         let _nid = this.nid;
1293         if( !System.debugmode && ( _title == "debug" || _app == "debug" ) ){
1294             return false;
1295         }
1296         Notification.list[_nid] = {
1297             title: _title,
1298             content: _content,
1299             app: _app,
1300             time: System.time.obj.toLocaleString(),
1301             pid: _pid,
1302             action: () => {
1303                 if( typeof _action == 'function' ) _action();
1304                 else if( _pid ) KWS.front(_pid);
1305                 $('#notifications').hide('drop', {direction: 'right'}, 300);
1306             },
1307             img: _img
1308         };
1309         if( _pid && System.appCache[System.launchpath[_pid]] ){
1310             _app = `<img src='${System.launchpath[_pid]}/${System.appCache[System.launchpath[_pid]].icon}'>${System.appCache[System.launchpath[_pid]].name}`;
1311         }
1312         if( !this.goodnight ){
1313             if( this.sound ) System.audio.play( "n" + this.nid, this.sound );
1314             $('#last-notification-title').text('').text( _title );
1315             $('#last-notification-content').text('').text( _content );
1316             $('#last-notification-app').text('').html( _app );
1317             $('#last-notification').hide().show('drop', {direction: "right"}, 300).off().on('click', Notification.list[this.nid].action);
1318             if( _img ) $('#last-notification-img').attr('src', _img).show();
1319             else $('#last-notification-img').attr('src', '').hide();
1320         }
1321         let imgtag = '';
1322         if( _img ) imgtag = `<img src='${_img }' alt='' class='notis_img'>`;
1323         $(`<div class='notis' id='nt${_nid}'>
1324                 ${imgtag}
1325                 <span class='notis_close' id='nc${_nid}'></span>
1326                 <div class='notis_app'>${_app}</div>
1327                 <span>${_title}</span>
1328                 ${_content}
1329                 <div class='notis_buttons'></div>
1330                 <div class='notis_time'>${System.time.obj.toTimeString()}</div>
1331             </div>`).appendTo('#notifications').on('click', Notification.list[this.nid].action);
1332         $(`#nc${_nid}`).on('click', (e) => {
1333             e.stopPropagation();
1334             $(`#nt${_nid}`).fadeOut(300);
1335         });
1336         $('#last-notification-buttons').html('');
1337         if( _buttons ){
1338             for( let b of _buttons ){
1339                 $(`<a>${b.label}</a>`).appendTo('#last-notification-buttons').on('click', (e) => {
1340                     e.stopPropagation();
1341                     b.func();
1342                 });
1343                 $(`<a>${b.label}</a>`).appendTo(`#nt${_nid} .notis_buttons`).on('click', (e) => {
1344                     e.stopPropagation();
1345                     b.func();
1346                 });
1347             }
1348         }
1349         this.nid ++;
1350         return (this.nid - 1);
1351     }
1352 }
1353
1354 class App {
1355     constructor(_pid) {
1356         App.e[_pid] = new Object();
1357         App.d[_pid] = new Object();
1358         
1359         this.process = process[_pid];
1360         this.cache = System.appCache[System.launchpath[_pid]];
1361
1362         this.args = System.args[_pid];
1363         this.close = () => System.close(_pid);
1364         this.d = App.d[_pid];
1365         this.dom = (..._args) => System.dom(_pid, ..._args);
1366         this.e =  App.e[_pid];
1367         this.ntf = (_title, _content, _action, _img, _buttons) => Notification.push(_title, _content, this.info.id, _pid, _action, _img, _buttons);
1368         this.qs = (...args) => System.qs(_pid, ...args);
1369         this.front = () => KWS.front(_pid);
1370
1371         this.changeWindowTitle = _t => App.changeWindowTitle( _pid, _t );
1372         this.data = (_name, _value) => App.data(_pid, _name, _value);
1373         this.event = (_name, _event) => App.event(_pid, _name, _event);
1374         this.getPath = _path => App.getPath(_pid, _path);
1375         this.kaf = () => App.kaf(_pid);
1376         this.load = _path => App.load(_pid, _path);
1377         this.preventClose = _bool => App.preventClose(_pid, _bool);
1378     }
1379
1380     static changeWindowTitle( _pid, _t ) {
1381         $( "#tname"+_pid ).text( _t );
1382         $( "#wtname"+_pid ).text( _t );
1383         process[_pid].title = _t;
1384         return App;
1385     }
1386
1387     static context( _cid, _obj ) {
1388         KWS.context[ _cid ] = _obj;
1389         return App;
1390     }
1391
1392     static data( _pid, _name, _value ) {
1393         if( _value !== undefined ) {
1394             S.dom(_pid, `[kit\\:bind=${_name}]`).val( _value );
1395             S.dom(_pid, `[kit\\:observe=${_name}]`).text( _value );
1396             if( _value ) S.dom(_pid, `[kit\\:if=${_name}]`).show();
1397             else S.dom(_pid, `[kit\\:if=${_name}]`).hide();
1398             return App.d[_pid][_name] = _value;
1399         }
1400         else if( _name ) return App.d[_pid][_name];
1401         else return App.d[_pid];
1402     }
1403
1404     static event( _pid, _name, _event ) {
1405         if( !App.e[_pid] ) App.e[_pid] = new Object();
1406         if( !_event && App.e[_pid][_name] ) App.e[_pid][_name].call();
1407         else App.e[_pid][_name] = _event;
1408         return App;
1409     }
1410
1411     static getPath( _pid, _path ) {
1412         if( String(_path)[0] != '/' ) _path = '/' + _path;
1413         return System.launchpath[_pid] + _path;
1414     }
1415
1416     static kaf( _pid ) {
1417         let attrs = [
1418             "[kit-ref]",
1419             "[kit-e]",
1420             "[kit-src]",
1421             "[kit-alert]",
1422             "[kit-launch]",
1423             "[kit-close]",
1424             "[kit-text]",
1425             "[kit-html]",
1426             "[kit\\:bind]",
1427             "[kit\\:observe]",
1428             "[kit\\:value]",
1429             "[kit-value]",
1430             "[kit-color]",
1431             "[kit\\:if]",
1432             "[kit-if]"
1433         ]
1434         const PID = _pid;
1435         const DATA = App.data(_pid);
1436         const ARGS = System.args[_pid];
1437         for( let i of S.qs(_pid, ...attrs) ){
1438             if( i.hasAttribute("kit-ref") ){
1439                 $(i).on("click", () => App.load(_pid, i.getAttribute("kit-ref")) );
1440             }
1441             if( i.hasAttribute("kit-e") ){
1442                 let _eqs = i.getAttribute("kit-e").split(",");
1443                 for( let k of _eqs ){
1444                     let _eq = k.split(" ");
1445                     $(i).on( _eq[1]||"click", App.e[_pid][_eq[0]] );
1446                 }
1447             }
1448             if( i.hasAttribute("kit-src") ){
1449                 $(i).attr("src", `${System.launchpath[_pid]}/${i.getAttribute("kit-src")}` );
1450             }
1451             if( i.hasAttribute("kit-alert") ){
1452                 $(i).on("click", ()=> System.alert( System.appCache[System.launchpath[_pid]].name, i.getAttribute("kit-alert") ) );
1453             }
1454             if( i.hasAttribute("kit-launch") ){
1455                 $(i).on("click", ()=> System.launch( i.getAttribute("kit-launch") ) );
1456             }
1457             if( i.hasAttribute("kit-close") ){
1458                 $(i).on("click", ()=> System.close( i.getAttribute("kit-close") || _pid ) );
1459             }
1460             if( i.hasAttribute("kit-text") ){
1461                 $(i).text( eval(i.getAttribute("kit-text")) );
1462             }
1463             if( i.hasAttribute("kit-html") ){
1464                 $(i).html( eval(i.getAttribute("kit-html")) );
1465             }
1466             if( i.hasAttribute("kit:bind") ){
1467                 if( App.d[_pid] == undefined ) App.d[_pid] = new Object();
1468                 $(i).on('keydown keyup keypress change', () => {
1469                     let _name = i.getAttribute("kit:bind");
1470                     App.d[_pid][_name] = i.value;
1471                     S.dom(_pid, `[kit\\:observe=${_name}]`).text( i.value );
1472                     if( i.value ) S.dom(_pid, `[kit\\:if=${_name}]`).show();
1473                     else S.dom(_pid, `[kit\\:if=${_name}]`).hide();
1474                 } );
1475             }
1476             if( i.hasAttribute("kit:observe") ){
1477                 $(i).text( App.d[_pid][i.getAttribute("kit:observe")] );
1478             }
1479             if( i.hasAttribute("kit:value") ){
1480                 $(i).val( App.d[_pid][i.getAttribute("kit:value")] );
1481             }
1482             if( i.hasAttribute("kit-value") ){
1483                 $(i).val( eval(i.getAttribute("kit-value")) );
1484             }
1485             if( i.hasAttribute("kit-color") ){
1486                 $(i).css('color', i.getAttribute("kit-color"));
1487             }
1488             if( i.hasAttribute("kit:if") ){
1489                 if( App.d[_pid][i.getAttribute("kit:if")] ){
1490                     $(i).show();
1491                 }
1492                 else $(i).hide();
1493             }
1494             if( i.hasAttribute("kit-if") ){
1495                 if( eval( i.getAttribute("kit-if")) ){
1496                     $(i).show();
1497                 }
1498                 else $(i).hide();
1499             }
1500         }
1501     }
1502
1503     static load( _pid, _path ) {
1504         if( String(_path)[0] != '/' ) _path = '/' + _path;
1505         _path = System.launchpath[_pid] + _path;
1506         S.dom(_pid).load( _path, () => {
1507             App.kaf(_pid);
1508             let _appcache = System.appCache[System.launchpath[_pid]];
1509             if( !KWS.fullscreen.pid && !_appcache.size.height ) {
1510                 System.qs(_pid)[0].style.height = "auto";
1511             }
1512         } );
1513         return App;
1514     }
1515
1516     static preventClose( _pid, _bool = true ) {
1517         process[_pid].preventclose = _bool || true;
1518         return App;
1519     }
1520 }
1521
1522 App.d = new Object();
1523 App.e = new Object();
1524 App.version = "2.1.1";
1525
1526 var process = {}, pid = 0, app, currentDesktop = 1, currentCTX = "", prevWindowIndex, S;