チェンジセット 61

差分発生行の前後
無視リスト:
更新日時:
2009/07/11 14:52:41 (3 年 前)
更新者:
h
ログメッセージ:

fixes #6
機能そのものは完成。追加があったらその都度で。

パス:
branches/release-1.0
ファイル:
1 追加
1 削除
3 変更
3 移動

凡例:

変更なし
追加
削除
  • branches/release-1.0/chrome/content/about.js

    r60 r61  
    106106 
    107107function openSplashScreen(){ 
    108         var splash = "chrome://vocalofx/content/splash.xul"; 
     108        var splash = "chrome://vocalofx/content/splash/splash.xul"; 
    109109        var option = "chrome,centerscreen,alwaysRaised=yes,titlebar=no,modal=yes"; 
    110110        window.openDialog(splash, "vocalofx-splash", option, -1); 
  • branches/release-1.0/chrome/content/splash/splash.js

    r60 r61  
    99        var height = pref.getIntPref("extensions.vocalofx.skin_splash.screen_height"); 
    1010        if(!image){ 
    11                 image = "chrome://vocalofx/content/icons/eclipse-3.4.png"; 
     11                image = "chrome://vocalofx/content/splash/eclipse-3.4.png"; 
    1212                width = 455; 
    1313                height = 295; 
  • branches/release-1.0/chrome/content/splash/splash.xul

    r60 r61  
    44<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
    55        id="vocalofx-splash" onload="init();" hidechrome="true"> 
    6         <script type="application/x-javascript" src="chrome://vocalofx/content/splash.js"/> 
     6        <script type="application/x-javascript" src="chrome://vocalofx/content/splash/splash.js"/> 
    77        <keyset> 
    88                <key keycode="VK_ESCAPE" oncommand="window.close();"/> 
  • branches/release-1.0/components/vocalofx.js

    r60 r61  
    1717                if(pref.getCharPref("extensions.vocalofx.skin_splash.screen")){ 
    1818                        var watcher = Cc['@mozilla.org/embedcomp/window-watcher;1'].getService(Ci.nsIWindowWatcher); 
    19                         watcher.openWindow(null, "chrome://vocalofx/content/splash.xul", "vocalofx-splash", "chrome,centerscreen,alwaysRaised=yes,titlebar=no,modal=yes", null); 
     19                        watcher.openWindow(null, "chrome://vocalofx/content/splash/splash.xul", "vocalofx-splash", "chrome,centerscreen,alwaysRaised=yes,titlebar=no,modal=yes", null); 
    2020                } 
    2121        } 
  • branches/release-1.0/defaults/preferences/vocalofx.js

    r60 r61  
    1717pref("extensions.vocalofx.skin_icons.bookmark-item", "bookmark-item-negiroller"); 
    1818pref("extensions.vocalofx.skin_icons.sidebar-treechildren", "sidebar-treechildren-negiroller"); 
    19 pref("extensions.vocalofx.skin_splash.screen", "chrome://vocalofx/content/icons/Firemiku_about.png"); 
    20 pref("extensions.vocalofx.skin_splash.screen_width", 300); 
    21 pref("extensions.vocalofx.skin_splash.screen_height", 216); 
    22 pref("extensions.vocalofx.skin_splash.voice", "chrome://vocalofx/content/splash.wav"); 
     19pref("extensions.vocalofx.skin_splash.screen", "chrome://vocalofx/content/splash/eclipse-3.4.png"); 
     20pref("extensions.vocalofx.skin_splash.screen_width", 455); 
     21pref("extensions.vocalofx.skin_splash.screen_height", 295); 
     22pref("extensions.vocalofx.skin_splash.voice", "chrome://vocalofx/content/splash/miku_kidou.wav"); 
    2323pref("extensions.vocalofx.skin_pallet_alert", true); 
    2424pref("extensions.vocalofx.skin_theme_alert", true);