90 lines
4.1 KiB
XML
90 lines
4.1 KiB
XML
<?xml version="1.0" standalone="no" encoding="UTF-8"?>
|
|
<!DOCTYPE dialog SYSTEM "http://kirkwood.mcom.com/ui.dtd">
|
|
<UI>
|
|
|
|
<!-- This is the Dialog XML
|
|
Objects
|
|
dialog (type of container, generally a widget subclass)
|
|
button (type of widget)
|
|
editfield (type of widget)
|
|
|
|
Tags
|
|
|
|
dialog (all container properties apply)
|
|
|
|
name - specifies the id it is known by
|
|
layout - specifies the type of layout to use for children in the container
|
|
|
|
button/editfield/separator (all widget properties apply)
|
|
|
|
name - specifies the id it is known by
|
|
container - An associated container when clicked on, can be drop down list of sorts
|
|
align - How is this item aligned (left, right,etc...)
|
|
type - The type of widget to use (buttons, separators, text, etc...)
|
|
shortcut - shortcut that applies
|
|
rule - rule that gets applied, can modify appearance (or lack thereof)
|
|
|
|
(widget properties that typically are used)
|
|
enable - TRUE is is enabled by default
|
|
check - TRUE if checked. Must be a button type for this to apply
|
|
|
|
(problematic areas)
|
|
onaction - What to do on an action event. currently the name of the control is sent.
|
|
We need to map this to something simpler.
|
|
|
|
<tabwidget tab1="Tab1" tab2="Tab2" tab3="Tab3" weightmajor="0" weightminor="0"/>
|
|
-->
|
|
|
|
<!-- This is the Dialog Definition -->
|
|
<dialog name="ComposeEventDialog" layout="ybox">
|
|
|
|
<editfield backgroundcolor="#448dc0" foregroundcolor="#FFFFFF" name="HeaderBar" label="Event Composer" height="22" weightmajor="0" weightminor="0"/>
|
|
|
|
<!-- This is the Dialog User Selection -->
|
|
<canvas name="UserSelection" layout="xbox" height="66">
|
|
|
|
<canvas layout="ybox" name="StaticUserFields" width="50">
|
|
<editfield backgroundcolor="#448dc0" foregroundcolor="#FFFFFF" name="ReqiStaticUserFields" label="From:" height="22" weightmajor="0" weightminor="0"/>
|
|
<editfield backgroundcolor="#448dc0" foregroundcolor="#FFFFFF" name="ReqsStaticUserFields" label="Req:" height="22" weightmajor="0" weightminor="0" />
|
|
<editfield backgroundcolor="#448dc0" foregroundcolor="#FFFFFF" name="OptStaticUserFields" label="Opt:" height="22" weightmajor="0" weightminor="0" />
|
|
</canvas>
|
|
|
|
<canvas layout="ybox" backgroundcolor="#FFFFFF" name="EditableUserFields">
|
|
|
|
<editfield keyboardfocus="true" tabid="1" backgroundcolor="#FFFFFF" name="ReqiEditableUserFields" height="22" label="" weightmajor="0" weightminor="0"/>
|
|
<editfield tabid="2" backgroundcolor="#FFFFFF" name="ReqsEditableUserFields" height="22" label="" weightmajor="0" weightminor="0"/>
|
|
<editfield tabid="3" backgroundcolor="#FFFFFF" name="OptEditableUserFields" height="22" label="" weightmajor="0" weightminor="0"/>
|
|
|
|
</canvas>
|
|
</canvas>
|
|
|
|
<!-- This is the Time Selection-->
|
|
<canvas name="TimeSelection" layout="xbox" height="22">
|
|
|
|
<!-- <editfield backgroundcolor="#448dc0" foregroundcolor="#FFFFFF" name="DateStaticTimeFields" label="When?" weightmajor="0"/> -->
|
|
<!-- <editfield tabid="4" backgroundcolor="#FFFFFF" name="DateEditableTimeFields" label="" weightmajor="1"/> -->
|
|
<editfield backgroundcolor="#448dc0" foregroundcolor="#FFFFFF" name="StartStaticTimeFields" label="Start:" weightmajor="0"/>
|
|
<editfield tabid="4" backgroundcolor="#FFFFFF" name="StartEditableTimeFields" label="" weightmajor="1"/>
|
|
<editfield backgroundcolor="#448dc0" foregroundcolor="#FFFFFF" name="EndStaticTimeFields" label="End:" weightmajor="0"/>
|
|
<editfield tabid="5" backgroundcolor="#FFFFFF" name="EndEditableTimeFields" label="" weightmajor="1"/>
|
|
|
|
</canvas>
|
|
|
|
<!-- This is the Subject Selection-->
|
|
<canvas name="SubjectSelection" layout="xbox" height="22">
|
|
|
|
<editfield backgroundcolor="#448dc0" foregroundcolor="#FFFFFF" name="SubjectStaticTimeFields" label="Subject:" width="70" weightmajor="0"/>
|
|
<editfield tabid="6" backgroundcolor="#FFFFFF" name="SubjectEditableTimeFields" label="" weightmajor="1"/>
|
|
|
|
</canvas>
|
|
|
|
<xpbutton height="22" onaction="LoadUrl?resource://res/ui/julian_month_sum.cal?target=content" label="Month" weightmajor="0" weightminor="0"/>
|
|
<editfield tabid="7" backgroundcolor="#FFFFFF" name="ComposeArea" label="" />
|
|
|
|
|
|
</dialog>
|
|
|
|
</UI>
|
|
|
|
|