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
37
38
39
40
41
42
package org.litesoft.GWT.client.widgets.sliderbar.client.presenter;

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

import com.google.gwt.event.dom.client.*;
import com.google.gwt.user.client.ui.*;

import java.util.*;

public interface Display {

    Widget getRootWidget();

    ArrayList<Widget> getMoreWidgets();

    ArrayList<Widget> getLessWidgets();

    Widget getDragWidget();

    Widget getScaleWidget();

    int getAbsMaxLength();

    Orientation getOrientation();

    int getScaleTouchPosition( MouseEvent event );

    int getDragPosition();

    void setDragPosition( int position );

    void drawScrollBar( int barPixelSize );

    Widget asWidget();

    void putMark( Mark mark, int markPosition );

    public boolean isAttached();

    void setDragVisible( boolean isVisible );
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/sliderbar/client/presenter/Display.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!