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

source: chrome/content/v_identity/v_identity.xul @ 9e9bab

Last change on this file since 9e9bab was 9e9bab, checked in by root <root@…>, 15 years ago

initial import v0.4.0

  • Property mode set to 100644
File size: 3.5 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<?xml-stylesheet href="chrome://v_identity/skin/v_identity.css" type="text/css"?>
27<?xml-stylesheet href="chrome://messenger/skin/messageHeader.css" type="text/css"?>
28<?xml-stylesheet href="chrome://messenger/skin/primaryToolbar.css" type="text/css"?>
29
30
31<!DOCTYPE overlay [
32<!ENTITY % versionDTD SYSTEM "chrome://v_identity/content/_version.dtd">
33%versionDTD;
34<!ENTITY % vIdentDTD SYSTEM "chrome://v_identity/locale/v_identity.dtd">
35%vIdentDTD;
36]>
37
38  <overlay id="v_identity"
39          xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
40
41<script type="application/x-javascript" src="chrome://v_identity/content/v_identity.js" />
42<script type="application/x-javascript" src="chrome://v_identity/content/vI_account.js" />
43<script type="application/x-javascript" src="chrome://v_identity/content/vI_msgIdentityClone.js" />
44<script type="application/x-javascript" src="chrome://v_identity/content/vI_smartIdentity.js" />
45<script type="application/x-javascript" src="chrome://v_identity/content/vI_smtpSelector.js" />
46<script type="application/x-javascript" src="chrome://v_identity/content/vI_notificationBar.js"/>
47
48  <stringbundleset id="stringbundleset">
49    <stringbundle id="vIdentBundle" src="chrome://v_identity/locale/v_identity.properties" />
50  </stringbundleset>
51
52<toolbox id="headers-box">
53    <notificationbox id="vINotification" position="1" insertbefore="MsgHeadersToolbar" />
54</toolbox>
55
56<vbox flex="1" id="addresses-box"> <!-- this is used as a strorage, elements will be rearranged by v_identity_init -->
57
58<hbox id="msgIdentityHbox" flex="1">
59    <menulist id="msgIdentity_clone" class="identity_clone-menulist person-icon"
60        label="..." flex="1" oncommand="vI_msgIdentityClone.LoadIdentity(false);">
61        <menupopup id="msgIdentityPopup_clone"/>
62    </menulist>
63    <hbox id="smtpServerListHbox" hidden="true">
64    <spacer flex="1" />
65    <menulist id="smtp_server_list" oncommand="vI_smtpSelector.loadSMTP();">
66       <menupopup id="smtp_server_list_popup" />
67    </menulist>
68    </hbox>
69</hbox>
70   
71  <!-- Some of "Dynamic part of labels" are placed here.-->
72  <!-- (Well, I know that its not a good ideal to put them here. :P) -->
73  <data id="prettyName-Prefix" label="&vident.accPane.prettyName.prefix;" />
74 
75  </vbox>
76  <statusbarpanel id="statusText">
77  <label id="v_identity_logo"  class="v_identity_logo"
78            value="&vident.compose.vidLogo.label; &vident.version;" align="right" hidden="true" flex="1"/>
79    </statusbarpanel>
80</overlay>
Note: See TracBrowser for help on using the repository browser.