~ubuntu-branches/ubuntu/raring/speeddial/raring

« back to all changes in this revision

Viewing changes to content/multikeyWindow.xul

  • Committer: Bazaar Package Importer
  • Author(s): Andrea Veri, Andrea Veri, Vikram Dhillon
  • Date: 2009-10-11 12:10:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091011121035-0ysv7mrfd2by5yot
Tags: 0.9.1.1-0ubuntu1

[ Andrea Veri ]

* New upstream release. FFe granted. (LP: #430155)
* debian/control:
  - added missing xpi:enhances, xpi:provides, xpi:recommends
    fields.
  - set depends on misc:depends
  - removed ant B-D, no more needed
  - added Vcs-Browser field.
  - added homepage field.
* debian/rules:
  - cleaned a bit removing useless comments
  - removed MOZ_EXTENSION_PKG field, it's deprecated atm.
  - MOZ_XPI_BUILD_COMMAND is not set to $(null), nothing needs
    to be built manually. 

[ Vikram Dhillon ]

* Updated Standards-Version to 3.8.3
* Updated mozilla-devscripts to 0.16~

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
 
3
 
<?xml-stylesheet href="chrome://browser/skin" type="text/css"?>
4
 
<?xml-stylesheet href="chrome://browser/content/browser.css" type="text/css"?>
5
 
<?xml-stylesheet href="chrome://speeddial/skin/multikeyWindow.css" type="text/css"?>
6
 
 
7
 
<!DOCTYPE window [
8
 
<!ENTITY % windowDTD SYSTEM "chrome://speeddial/locale/multikeyWindow.dtd" >
9
 
%windowDTD;
10
 
]>
11
 
 
12
 
<dialog id="transparentMultiKeyWindow"
13
 
  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
14
 
  title="Transparent windows test"
15
 
  hidechrome="true"
16
 
  style="background-color:transparent;"
17
 
  onload="Startup();"
18
 
  onunload="Unload();"
19
 
  buttons="none">
20
 
 
21
 
  <stringbundleset id="stringbundleset">
22
 
    <stringbundle id="bundle_speeddial" src="chrome://speeddial/locale/speeddial.properties"/>
23
 
    <stringbundle id="bundle_multikey" src="chrome://speeddial/locale/multikeyWindow.properties"/>
24
 
  </stringbundleset>
25
 
 
26
 
  <keyset>
27
 
    <key id="MultiKey-1" modifiers="control,accel,alt,meta,shift,any" key="1" oncommand="processKey(1);"/>
28
 
    <key id="MultiKey-2" modifiers="control,accel,alt,meta,shift,any" key="2" oncommand="processKey(2);"/>
29
 
    <key id="MultiKey-3" modifiers="control,accel,alt,meta,shift,any" key="3" oncommand="processKey(3);"/>
30
 
    <key id="MultiKey-4" modifiers="control,accel,alt,meta,shift,any" key="4" oncommand="processKey(4);"/>
31
 
    <key id="MultiKey-5" modifiers="control,accel,alt,meta,shift,any" key="5" oncommand="processKey(5);"/>
32
 
    <key id="MultiKey-6" modifiers="control,accel,alt,meta,shift,any" key="6" oncommand="processKey(6);"/>
33
 
    <key id="MultiKey-7" modifiers="control,accel,alt,meta,shift,any" key="7" oncommand="processKey(7);"/>
34
 
    <key id="MultiKey-8" modifiers="control,accel,alt,meta,shift,any" key="8" oncommand="processKey(8);"/>
35
 
    <key id="MultiKey-9" modifiers="control,accel,alt,meta,shift,any" key="9" oncommand="processKey(9);"/>
36
 
    <key id="MultiKey-0" modifiers="control,accel,alt,meta,shift,any" key="0" oncommand="processKey(0);"/>
37
 
    <key id="MultiKey-Up" modifiers="control,accel,alt,meta,shift,any" keycode="VK_UP" oncommand="goPreviousDial();"/>
38
 
    <key id="MultiKey-Down" modifiers="control,accel,alt,meta,shift,any" keycode="VK_DOWN" oncommand="goNextDial();"/>
39
 
    <key id="MultiKey-Left" modifiers="control,accel,alt,meta,shift,any" keycode="VK_LEFT" oncommand="goPreviousDial();"/>
40
 
    <key id="MultiKey-Right" modifiers="control,accel,alt,meta,shift,any" keycode="VK_RIGHT" oncommand="goNextDial();"/>
41
 
    <key id="MultiKey-Plus" modifiers="control,accel,alt,meta,shift,any" key="+" oncommand="goNextDial();"/>
42
 
    <key id="MultiKey-Minus" modifiers="control,accel,alt,meta,shift,any" key="-" oncommand="goPreviousDial();"/>
43
 
    <key id="MultiKey-Escape" modifiers="control,accel,alt,meta,shift,any" keycode="VK_ESCAPE" oncommand="cancelDialog();"/>
44
 
    <key id="MultiKey-Back" modifiers="control,accel,alt,meta,shift,any" keycode="VK_BACK" oncommand="processBackspace();"/>
45
 
  </keyset>
46
 
 
47
 
  <script type="application/x-javascript" src="multikeyWindow.js" />
48
 
  
49
 
  <vbox id="mainBox">
50
 
    <label id="accessDialLabel" flex="1"/>
51
 
    <hbox>
52
 
      <spacer flex="1"/>
53
 
      <hbox id="digitBox"/>
54
 
      <spacer flex="1"/>
55
 
    </hbox>
56
 
    <hbox flex="1" id="currentDialBox">
57
 
      <spacer flex="1000"/>
58
 
      <image id="currentDialIcon" class="bookmark-item" validate="never" onerror="this.src=null"/>
59
 
      <label id="currentDialLabel" crop="end" value=" " flex="1"/>
60
 
      <spacer flex="1000"/>
61
 
    </hbox>
62
 
    <label id="currentDialURL" flex="1" value=" " crop="center"/>
63
 
  </vbox>
64
 
</dialog>