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
/*
 * Copyright 2007 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.google.gwt.gen2.table.client;

import java.util.*;

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

/**
 * Abstract base class for panels that can contain multiple child widgets.
 */
public abstract class Gen2TableComplexPanel extends Gen2TablePanel implements IndexedPanel
{

    private WidgetCollection children = new WidgetCollection( this );

    @Override
    public Widget getWidget( int index )
    {
        return getChildren().get( index );
    }

    @Override
    public int getWidgetCount()
    {
        return getChildren().size();
    }

    @Override
    public int getWidgetIndex( Widget child )
    {
        return getChildren().indexOf( child );
    }

    @Override
    public Iterator<Widget> iterator()
    {
        return getChildren().iterator();
    }

    @Override
    public boolean remove( int index )
    {
        return remove( getWidget( index ) );
    }

    @Override
    public boolean remove( Widget w )
    {
        // Validate.
        if ( w.getParent() != this )
        {
            return false;
        }
        // Orphan.
        orphan( w );

        // Physical detach.
        Element elem = w.getElement();
        DOM.removeChild( DOM.getParent( elem ), elem );

        // Logical detach.
        getChildren().remove( w );
        return true;
    }

    /**
     * Adds a new child widget to the panel, attaching its Element to the
     * specified container Element.
     *
     * @param child     the child widget to be added
     * @param container the element within which the child will be contained
     */
    protected void add( Widget child, Element container )
    {
        // Detach new child.
        child.removeFromParent();

        // Logical attach.
        getChildren().add( child );

        // Physical attach.
        DOM.appendChild( container, child.getElement() );

        // Adopt.
        adopt( child );
    }

    /**
     * Adjusts beforeIndex to account for the possibility that the given widget is
     * already a child of this panel.
     *
     * @param child       the widget that might be an existing child
     * @param beforeIndex the index at which it will be added to this panel
     *
     * @return the modified index
     */
    protected int adjustIndex( Widget child, int beforeIndex )
    {
        checkIndexBoundsForInsertion( beforeIndex );

        // Check to see if this widget is already a direct child.
        if ( child.getParent() == this )
        {
            // If the Widget's previous position was left of the desired new position
            // shift the desired position left to reflect the removal
            int idx = getWidgetIndex( child );
            if ( idx < beforeIndex )
            {
                beforeIndex--;
            }
        }

        return beforeIndex;
    }

    /**
     * Checks that <code>index</code> is in the range [0, getWidgetCount()), which
     * is the valid range on accessible indexes.
     *
     * @param index the index being accessed
     */
    protected void checkIndexBoundsForAccess( int index )
    {
        if ( index < 0 || index >= getWidgetCount() )
        {
            throw new IndexOutOfBoundsException();
        }
    }

    /**
     * Checks that <code>index</code> is in the range [0, getWidgetCount()], which
     * is the valid range for indexes on an insertion.
     *
     * @param index the index where insertion will occur
     */
    protected void checkIndexBoundsForInsertion( int index )
    {
        if ( index < 0 || index > getWidgetCount() )
        {
            throw new IndexOutOfBoundsException();
        }
    }

    /**
     * Gets the list of children contained in this panel.
     *
     * @return a collection of child widgets
     */
    protected WidgetCollection getChildren()
    {
        return children;
    }

    /**
     * This method was used by subclasses to insert a new child Widget. It is now
     * deprecated because it was ambiguous whether the <code>child</code> should
     * be appended to <code>container</code> element versus inserted into
     * <code>container</code> at <code>beforeIndex</code>. Use
     * {@link #insert(Widget, Element, int, boolean)}, which clarifies this
     * ambiguity.
     *
     * @deprecated Use {@link #insert(Widget, Element, int, boolean)}.
     */
    @Deprecated
    protected void insert( Widget child, Element container, int beforeIndex )
    {
        if ( container == null )
        {
            throw new NullPointerException( "container may not be null" );
        }
        insert( child, container, beforeIndex, false );
    }

    /**
     * Insert a new child Widget into this Gen2TablePanel at a specified index, attaching
     * its Element to the specified container Element. The child Element will
     * either be attached to the container at the same index, or simply appended
     * to the container, depending on the value of <code>domInsert</code>.
     *
     * @param child       the child Widget to be added
     * @param container   the Element within which <code>child</code> will be
     *                    contained
     * @param beforeIndex the index before which <code>child</code> will be
     *                    inserted
     * @param domInsert   if <code>true</code>, insert <code>child</code> into
     *                    <code>container</code> at <code>beforeIndex</code>; otherwise
     *                    append <code>child</code> to the end of <code>container</code>.
     */
    protected void insert( Widget child, Element container, int beforeIndex, boolean domInsert )
    {
        // Validate index; adjust if the widget is already a child of this panel.
        beforeIndex = adjustIndex( child, beforeIndex );

        // Detach new child.
        child.removeFromParent();

        // Logical attach.
        getChildren().insert( child, beforeIndex );

        // Physical attach.
        if ( domInsert )
        {
            DOM.insertChild( container, child.getElement(), beforeIndex );
        }
        else
        {
            DOM.appendChild( container, child.getElement() );
        }

        // Adopt.
        adopt( child );
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/com/google/gwt/gen2/table/client/Gen2TableComplexPanel.java

Diff revisions: vs.
Revision Author Commited Message
939 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 21:30:31 +0000

Extracting commonfoundation

475 Diff Diff GeorgeS picture GeorgeS Sat 03 Sep, 2011 13:54:51 +0000
282 GeorgeS picture GeorgeS Fri 17 Jun, 2011 13:54:39 +0000