sogo/UI/Templates/MailerUI/UIxMailEditor.wox
Wolfgang Sourdeau 39228fb130 Monotone-Parent: 8566d6fbfa896a774b9907c3125e7b3de87296cd
Monotone-Revision: 2ad8b0c019808014c990f51cc69c4457fdb537c6

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-07-28T22:59:11
Monotone-Branch: ca.inverse.sogo
2006-07-28 22:59:11 +00:00

90 lines
3 KiB
XML

<?xml version='1.0' standalone='yes'?>
<var:component
xmlns="http://www.w3.org/1999/xhtml"
xmlns:var="http://www.skyrix.com/od/binding"
xmlns:const="http://www.skyrix.com/od/constant"
xmlns:uix="OGo:uix"
xmlns:rsrc="OGo:url"
xmlns:label="OGo:label"
className="UIxMailMainFrame"
title="panelTitle"
const:popup="YES"
>
<div id="compose_panel">
<var:if condition="showInternetMarker">
<div id="compose_internetmarker">
<var:string
label:value="This mail is being sent from an unsecure network!" />
</div>
</var:if>
<table id="compose_table">
<tr>
<td id="compose_leftside" var:style="initialLeftsideStyle">
<div id="compose_fromline">
<table>
<tr>
<td class="compose_label" width="20%">
<var:string label:value="From" />:
</td>
<td width="80%">
<var:popup const:name="from" list="fromEMails" item="item"
selection="from"
const:style="width: 100%;"
/>
</td>
</tr>
</table>
</div>
<div id="compose_toselection">
<var:component className="UIxMailToSelection"
to="to"
cc="cc"
bcc="bcc"
/>
</div>
<!-- moved below to selection to make it look better -->
<div id="compose_subject">
<table>
<tr>
<td class="compose_label" width="20%">
<var:string label:value="Subject" />:
</td>
<td width="80%"><input name="subject"
id="compose_subject_input"
type="text"
var:value="subject"
/></td>
</tr>
</table>
</div>
</td>
<td id="compose_rightside" var:style="initialRightsideStyle">
<div id="compose_attachments">
<div id="compose_attachments_header">
<span class="compose_label"
><var:string label:value="Attachments" />:</span>
<!--<a href="#"
onclick="hideInlineAttachmentList(this);"
><var:string label:value="close" /></a>-->
</div>
<div id="compose_attachments_list"
onclick="clickedEditorAttach(this);"
>
<var:foreach list="attachmentNames" item="attachmentName">
<var:string value="attachmentName" /><br />
</var:foreach>
</div>
</div>
</td>
</tr>
</table>
<!-- separator line -->
<div id="compose_text">
<textarea name="content" var:value="text" />
</div>
<!-- img rsrc:src="tbird_073_compose.png" alt="screenshot" / -->
</div>
</var:component>