~ubuntu-branches/ubuntu/lucid/scrapbook/lucid

« back to all changes in this revision

Viewing changes to chrome/scrapbook.jar!/content/scrapbook/combine.xul

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-11-08 13:04:00 UTC
  • mfrom: (1.1.5 upstream) (3.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20091108130400-qjinjbtq655eflpz
Tags: 1.3.5-1ubuntu1
* Merge from debian testing, Ubuntu remaining changes:
  - debian/control:
    + Set binary package name to scrapbook.
    + Add a transitional package (iceweasel-scrapbook -> scrapbook),
      and a Conflicts to scrapbook against older iceweasel-scrapbook
      installations.
    + Packages that Depend/Recommend/Suggest firefox must alternatively
      Depend/Recommend/Suggest abrowser.
    + Adjust the short description, replace IceWeasel occurrences with
      Firefox.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" ?>
 
2
 
 
3
<?xml-stylesheet href="chrome://global/skin/" type="text/css" ?>
 
4
<?xml-stylesheet href="chrome://scrapbook/skin/scrapbook.css" type="text/css" ?>
 
5
 
 
6
<!DOCTYPE wizard [
 
7
        <!ENTITY % mainDTD    SYSTEM "chrome://scrapbook/locale/scrapbook.dtd" >
 
8
        %mainDTD;
 
9
        <!ENTITY % propDTD    SYSTEM "chrome://scrapbook/locale/property.dtd" >
 
10
        %propDTD;
 
11
        <!ENTITY % detailDTD  SYSTEM "chrome://scrapbook/locale/detail.dtd" >
 
12
        %detailDTD;
 
13
        <!ENTITY % combineDTD SYSTEM "chrome://scrapbook/locale/combine.dtd" >
 
14
        %combineDTD;
 
15
]>
 
16
 
 
17
<wizard id="sbCombineWizard"
 
18
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
 
19
        onunload="sbCombineService.done();">
 
20
 
 
21
        <script type="application/x-javascript" src="chrome://global/content/nsDragAndDrop.js" />
 
22
        <script type="application/x-javascript" src="chrome://global/content/nsTransferable.js" />
 
23
        <script type="application/x-javascript" src="chrome://scrapbook/content/saver.js" />
 
24
        <script type="application/x-javascript" src="chrome://scrapbook/content/capture.js" />
 
25
        <script type="application/x-javascript" src="chrome://scrapbook/content/folderPicker.js" />
 
26
        <script type="application/x-javascript" src="chrome://scrapbook/content/combine.js" />
 
27
 
 
28
        <stringbundleset>
 
29
                <stringbundle id="sbMainString"    src="chrome://scrapbook/locale/scrapbook.properties" />
 
30
                <stringbundle id="sbCaptureString" src="chrome://scrapbook/locale/capture.properties" />
 
31
                <stringbundle id="sbCombineString" src="chrome://scrapbook/locale/combine.properties" />
 
32
                <stringbundle id="sbOverlayString" src="chrome://scrapbook/locale/overlay.properties" />
 
33
        </stringbundleset>
 
34
 
 
35
        <wizardpage id="sbCombineStartPage" pageid="sbCombineStartPage"
 
36
                    next="sbCombinePreviewPage"
 
37
                    label="&sb.tools.combine;"
 
38
                    onpageshow="sbCombineService.init();">
 
39
                <vbox flex="1">
 
40
                        <hbox align="center" style="margin-bottom: 12px;">
 
41
                                <label value="&sb.prop.folder;:" />
 
42
                                <textbox id="sbFolderTextbox" readonly="true" flex="1" onfocus="this.blur();" />
 
43
                                <toolbarbutton id="sbToolbarMove" tooltiptext="&sb.detail.select.folder;..." oncommand="sbFolderSelector2.pick();" />
 
44
                        </hbox>
 
45
                        <description style="margin-bottom: 8px;">&sb.combine.dragdrop;</description>
 
46
                        <listbox id="sbCombineListbox"
 
47
                                 ondragover="nsDragAndDrop.dragOver(event,sbCombineService.dropObserver);"
 
48
                                 ondragdrop="nsDragAndDrop.drop(event,sbCombineService.dropObserver);"
 
49
                                 flex="1" style="margin-bottom: 12px;" />
 
50
                        <checkbox id="sbCombineOptionRemove" label="&sb.combine.option.remove;" style="color: red;" />
 
51
                </vbox>
 
52
        </wizardpage>
 
53
 
 
54
        <wizardpage id="sbCombinePreviewPage" pageid="sbCombinePreviewPage"
 
55
                    label="&sb.combine.preview;"
 
56
                    description="&sb.combine.preview.d;"
 
57
                    onpageshow="sbCombineService.initPreview();">
 
58
                <textbox id="sbCaptureTextbox" readonly="true" />
 
59
                <browser id="sbCaptureBrowser" collapsed="true" flex="1" style="border: 1px solid ThreeDShadow;" onload="event.stopPropagation();" />
 
60
        </wizardpage>
 
61
 
 
62
</wizard>