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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package org.litesoft.GWT.client.widgets.nonpublic;

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

public abstract class AbstractSizeableTextBoxBase extends AbstractSizeableComposite
        implements SourcesChangeEvents,
                   SourcesClickEvents,
                   HasText,
                   HasFocus
{
    abstract protected TextBoxBase getTextBoxBase();

    private DelegatingKeyboardListenerCollection mKeyboardListeners;
    private DelegatingClickListenerCollection mClickListeners;
    private DelegatingFocusListenerCollection mFocusListeners;
    private DelegatingChangeListenerCollection mChangeListeners;

    public void addKeyboardListener( KeyboardListener listener )
    {
        if ( listener != null )
        {
            if ( mKeyboardListeners == null )
            {
                mKeyboardListeners = new DelegatingKeyboardListenerCollection( this, getTextBoxBase() );
            }
            mKeyboardListeners.add( listener );
        }
    }

    public void removeKeyboardListener( KeyboardListener listener )
    {
        if ( (listener != null) && (mKeyboardListeners != null) && //
             mKeyboardListeners.remove( listener ) && mKeyboardListeners.isEmpty() )
        {
            getTextBoxBase().removeKeyboardListener( mKeyboardListeners );
            mKeyboardListeners = null;
        }
    }

    public void addClickListener( ClickListener listener )
    {
        if ( listener != null )
        {
            if ( mClickListeners == null )
            {
                mClickListeners = new DelegatingClickListenerCollection( this, getTextBoxBase() );
            }
            mClickListeners.add( listener );
        }
    }

    public void removeClickListener( ClickListener listener )
    {
        if ( (listener != null) && (mClickListeners != null) && //
             mClickListeners.remove( listener ) && mClickListeners.isEmpty() )
        {
            getTextBoxBase().removeClickListener( mClickListeners );
            mClickListeners = null;
        }
    }

    public void addFocusListener( FocusListener listener )
    {
        if ( listener != null )
        {
            if ( mFocusListeners == null )
            {
                mFocusListeners = new DelegatingFocusListenerCollection( this, getTextBoxBase() );
            }
            mFocusListeners.add( listener );
        }
    }

    public void removeFocusListener( FocusListener listener )
    {
        if ( (listener != null) && (mFocusListeners != null) && //
             mFocusListeners.remove( listener ) && mFocusListeners.isEmpty() )
        {
            getTextBoxBase().removeFocusListener( mFocusListeners );
            mFocusListeners = null;
        }
    }

    public void addChangeListener( ChangeListener listener )
    {
        if ( listener != null )
        {
            if ( mChangeListeners == null )
            {
                mChangeListeners = new DelegatingChangeListenerCollection( this, getTextBoxBase() );
            }
            mChangeListeners.add( listener );
        }
    }

    public void removeChangeListener( ChangeListener listener )
    {
        if ( (listener != null) && (mChangeListeners != null) && //
             mChangeListeners.remove( listener ) && mChangeListeners.isEmpty() )
        {
            getTextBoxBase().removeChangeListener( mChangeListeners );
            mChangeListeners = null;
        }
    }

    /**
     * Selects all of the text in the box.
     */
    public void selectAll()
    {
        getTextBoxBase().selectAll();
    }

    /**
     * Sets the cursor position.
     *
     * @param pos the new cursor position
     */
    public void setCursorPos( int pos )
    {
        getTextBoxBase().setCursorPos( pos );
    }

    /**
     * If a keyboard event is currently being handled by the text box, this method
     * replaces the unicode character or key code associated with it. This allows
     * listeners to easily filter keyboard input.
     *
     * @param key the new key value
     */
    public void setKey( char key )
    {
        getTextBoxBase().setKey( key );
    }

    public void setName( String name )
    {
        getTextBoxBase().setName( name );
    }

    /**
     * Sets the range of text to be selected.
     *
     * @param pos    the position of the first character to be selected
     * @param length the number of characters to be selected
     */
    public void setSelectionRange( int pos, int length )
    {
        getTextBoxBase().setSelectionRange( pos, length );
    }

    public void setText( String text )
    {
        getTextBoxBase().setText( text );
    }

    /**
     * If a keyboard event is currently being handled on this text box, calling
     * this method will suppress it. This allows listeners to easily filter
     * keyboard input.
     */
    public void cancelKey()
    {
        getTextBoxBase().cancelKey();
    }

    /**
     * Gets the current position of the cursor (this also serves as the beginning
     * of the text selection).
     *
     * @return the cursor's position
     */
    public int getCursorPos()
    {
        return getTextBoxBase().getCursorPos();
    }

    public String getName()
    {
        return getTextBoxBase().getName();
    }

    /**
     * Gets the text currently selected within this text box.
     *
     * @return the selected text, or an empty string if none is selected
     */
    public String getSelectedText()
    {
        return getTextBoxBase().getSelectedText();
    }

    /**
     * Gets the length of the current text selection.
     *
     * @return the text selection length
     */
    public int getSelectionLength()
    {
        return getTextBoxBase().getSelectionLength();
    }

    public String getText()
    {
        return getTextBoxBase().getText();
    }

    public boolean isEnabled()
    {
        return getTextBoxBase().isEnabled();
    }

    public void setEnabled( boolean enabled )
    {
        TextBoxBase zTextBox = getTextBoxBase();
        
        if( enabled )
        {
            zTextBox.removeStyleName( "DisabledTextArea" );
            zTextBox.addStyleName( "EnabledTextArea" );
        }
        else
        {
            zTextBox.removeStyleName( "EnabledTextArea" );
            zTextBox.addStyleName( "DisabledTextArea" );
        }

        zTextBox.setEnabled( enabled );
    }

    public int getTabIndex()
    {
        return getTextBoxBase().getTabIndex();
    }

    public void setTabIndex( int index )
    {
        getTextBoxBase().setTabIndex( index );
    }

    public void setAccessKey( char key )
    {
        getTextBoxBase().setAccessKey( key );
    }

    public void setFocus( boolean focused )
    {
        getTextBoxBase().setFocus( focused );
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/AbstractSizeableTextBoxBase.java

Diff revisions: vs.
Revision Author Commited Message
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000