Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package org.litesoft.GWT.client.widgets.sliderbar.client.solution.iph;

import org.litesoft.GWT.client.widgets.sliderbar.client.view.*;

import com.google.gwt.core.client.*;
import com.google.gwt.resources.client.*;
import com.google.gwt.user.client.ui.*;

public class IpSliderBar146 extends SliderBarHorizontal {

    ImagesIpSliderBar146 images = GWT.create( ImagesIpSliderBar146.class );

    public IpSliderBar146( String leftTxt, String rightTxt ) {
        IScale iScale = new IScale( leftTxt, rightTxt, 146, 27 );
        iScale.addLeftStyleName( "ip146whitelabel" );
        iScale.addRightStyleName( "ip146dgreylabel" );
        iScale.setBackGroundImage( new Image( images.scale().getUrl() ) );
        this.setLessWidget( new Image( images.moreLess() ) );
        setScaleWidget( iScale, 27 );
        this.setLessWidget( new Image( images.moreLess() ) );
        this.setDragWidget( new Image( images.drag() ) );
        this.setWidth( "148px" );
        this.setMaxValue( 1 );
    }

    interface ImagesIpSliderBar146 extends ClientBundle {
        @Source("ifml.png")
        ImageResource moreLess();

        @Source("ifmdrag.png")
        ImageResource drag();

        @Source("ifmscl.png")
        DataResource scale();
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/sliderbar/client/solution/iph/IpSliderBar146.java

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

917 GeorgeS picture GeorgeS Sun 08 Dec, 2013 20:49:56 +0000

1.7 prep & VersionedStaticContentFilter upgrade to new “/ver” model!