Community
Participate
Working Groups
"sash" : {
style : function( states ) {
var tv = new org.eclipse.swt.theme.ThemeValues( states );
return {
border : states.rwt_BORDER ? "inset" : "undefined",
border : tv.getCssBorder( "Sash-Handle", "border" ),
cursor : states.disabled
? "undefined"
: states.horizontal
}
},
addState : function ( state ) {
this.base( arguments, state );
this._handle.addState( state );
removeState : function ( state ) {
this._handle.removeState( state );
_sendWidgetSelected : function() {
if( !org_eclipse_rap_rwt_EventUtil_suspend ) {
// TODO [rst] Clarify what the getOffsetLeft() does
<element name="Sash"
description="Sash control">
<element name="Sash-Handle">
<description>
The place in the middle of the sash.
</description>
<property name="border">
The border that is drawn around the sash handle.
</property>
<property name="background-image"
description="Background image for sash handle" />
sash SWT.VERTICAL style flag.
</state>
<style name="BORDER"
description="Indicates that the sash-handle should have a border." />
</element>
background-image: url( "/theme1/icons/sash.v_handle.gif" );
Sash-Handle[BORDER] {
border: 1px solid black;
/* Shell */
Shell {