This is just some static backup of the original site, don't expect every link to work!

source: content/prefDialog/vI_prefDialog_TB3FolderPicker.xul @ 184c6c

ng_0.9
Last change on this file since 184c6c was 184c6c, checked in by rene <rene@…>, 11 years ago

rearranged tree structure / added build-script

  • Property mode set to 100644
File size: 3.4 KB
Line 
1<?xml version="1.0"?>
2<!-- ***** BEGIN LICENSE BLOCK *****
3   - This program is free software; you can redistribute it and/or modify
4   - it under the terms of the GNU General Public License as published by
5   - the Free Software Foundation; either version 2 of the License, or
6   - (at your option) any later version.
7
8   - This program is distributed in the hope that it will be useful,
9   - but WITHOUT ANY WARRANTY; without even the implied warranty of
10   - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11   - GNU General Public License for more details.
12
13   - You should have received a copy of the GNU General Public License
14   - along with this program; if not, write to the Free Software
15   - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
16
17   - The Original Code is the Virtual Identity Extension.
18
19   - The Initial Developer of the Original Code is Rene Ejury.
20   - Portions created by the Initial Developer are Copyright (C) 2007
21   - the Initial Developer. All Rights Reserved.
22
23   - Contributor(s):
24   - ***** END LICENSE BLOCK ***** -->
25
26<!DOCTYPE pickerDTD SYSTEM "chrome://messenger/locale/msgFolderPickerOverlay.dtd">
27<?xml-stylesheet href="chrome://messenger/skin/folderMenus.css" type="text/css"?>
28
29<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
30   
31    <script type="application/x-javascript"
32        src="chrome://v_identity/content/prefDialog/vI_prefDialog_TB3FolderPicker.js" />
33    <script type="application/x-javascript"
34        src="chrome://messenger/content/widgetglue.js"/>
35   
36    <row id="msgFccAccountPickerRow">
37        <menulist id="msgFccAccountPicker"
38              aria-labelledby="VIdent_fcc_selectAccount"
39              observes="VIdent_broadcaster_doFcc">
40            <menupopup id="msgFccAccountPopup" type="folder" mode="filing"
41                   expandFolders="false"/>
42        </menulist>
43    </row>
44    <row id="msgFccFolderPickerRow">
45        <menulist id="msgFccFolderPicker"
46              aria-labelledby="VIdent_fcc_selectFolder"
47              oncommand="noteSelectionChange('VIdent_fcc_selectFolder', event)"
48              observes="VIdent_broadcaster_doFcc">
49            <menupopup id="msgFccFolderPopup" type="folder" mode="filing"
50                   showFileHereLabel="true"
51                   fileHereLabel="&filemessageschoosethis.label;"/>
52        </menulist>
53    </row>
54    <row id="msgDraftsAccountPickerRow">
55        <menulist id="msgDraftsAccountPicker"
56              aria-labelledby="VIdent_draft_selectAccount">
57            <menupopup id="msgDraftAccountPopup" type="folder" mode="filing"
58                   expandFolders="false"/>
59        </menulist>
60    </row>
61    <row id="msgDraftsFolderPickerRow">
62        <menulist id="msgDraftsFolderPicker"
63              aria-labelledby="VIdent_draft_selectFolder"
64              oncommand="noteSelectionChange('VIdent_draft_selectFolder', event)">
65            <menupopup id="msgDraftFolderPopup" type="folder" mode="filing"
66                   showFileHereLabel="true"
67                   fileHereLabel="&filemessageschoosethis.label;"/>
68        </menulist>
69    </row>
70    <row id="msgStationeryAccountPickerRow">
71        <menulist id="msgStationeryAccountPicker"
72              aria-labelledby="VIdent_tmpl_selectAccount">
73            <menupopup id="msgFccAccountPopup" type="folder" mode="filing"
74                   expandFolders="false"/>
75        </menulist>
76    </row>
77    <row id="msgStationeryFolderPickerRow">
78        <menulist id="msgStationeryFolderPicker"
79              aria-labelledby="VIdent_tmpl_selectFolder"
80              oncommand="noteSelectionChange('VIdent_tmpl_selectFolder', event)">
81            <menupopup id="msgTemplFolderPopup" type="folder" mode="filing"
82                   showFileHereLabel="true"
83                   fileHereLabel="&filemessageschoosethis.label;"/>
84        </menulist>
85    </row>
86   
87</overlay>
Note: See TracBrowser for help on using the repository browser.