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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/*
 * Copyright 2006 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 com.google.gwt.user.client.*;

/**
 * This class should replace the actual class of the same name.
 * <p/>
 * TODO: Incorporate changes into actual class.
 */
public class FlexTable extends HTMLTable {

    /**
     * FlexTable-specific implementation of {@link HTMLTable.CellFormatter}. The
     * formatter retrieved from {@link HTMLTable#getCellFormatter()} may be cast
     * to this class.
     */
    public class FlexCellFormatter extends CellFormatter {

        /**
         * Gets the column span for the given cell. This is the number of logical
         * columns covered by the cell.
         *
         * @param row    the cell's row
         * @param column the cell's column
         *
         * @return the cell's column span
         *
         * @throws IndexOutOfBoundsException
         */
        public int getColSpan( int row, int column ) {
            return DOM.getElementPropertyInt( getElement( row, column ), "colSpan" );
        }

        /**
         * Gets the row span for the given cell. This is the number of logical rows
         * covered by the cell.
         *
         * @param row    the cell's row
         * @param column the cell's column
         *
         * @return the cell's row span
         *
         * @throws IndexOutOfBoundsException
         */
        public int getRowSpan( int row, int column ) {
            return DOM.getElementPropertyInt( getElement( row, column ), "rowSpan" );
        }

        /**
         * Sets the column span for the given cell. This is the number of logical
         * columns covered by the cell.
         *
         * @param row     the cell's row
         * @param column  the cell's column
         * @param colSpan the cell's column span
         *
         * @throws IndexOutOfBoundsException
         */
        public void setColSpan( int row, int column, int colSpan ) {
            DOM.setElementPropertyInt( ensureElement( row, column ), "colSpan", colSpan );
        }

        /**
         * Sets the row span for the given cell. This is the number of logical rows
         * covered by the cell.
         *
         * @param row     the cell's row
         * @param column  the cell's column
         * @param rowSpan the cell's row span
         *
         * @throws IndexOutOfBoundsException
         */
        public void setRowSpan( int row, int column, int rowSpan ) {
            DOM.setElementPropertyInt( ensureElement( row, column ), "rowSpan", rowSpan );
        }
    }

    /**
     * Add cells to the specified row.
     *
     * @param table the table to affect
     * @param row   the row to affect
     * @param num   the number of cells to add
     */
    private static native void addCells( Element table, int row, int num )/*-{
        var rowElem = table.rows[row];
        for ( var i = 0; i < num; i++ )
        {
            var cell = $doc.createElement( "td" );
            cell['colSpan'] = 1;
            cell['rowSpan'] = 1;
            rowElem.appendChild( cell );
        }
    }-*/;

    public FlexTable() {
        super();
        setCellFormatter( new FlexCellFormatter() );
        setRowFormatter( new RowFormatter() );
        setColumnFormatter( new ColumnFormatter() );
    }

    /**
     * Appends a cell to the specified row.
     *
     * @param row the row to which the new cell will be added
     *
     * @throws IndexOutOfBoundsException
     */
    public void addCell( int row ) {
        insertCell( row, getCellCount( row ) );
    }

    /**
     * Gets the number of cells on a given row.
     *
     * @param row the row whose cells are to be counted
     *
     * @return the number of cells present
     *
     * @throws IndexOutOfBoundsException
     */
    @Override
    public int getCellCount( int row ) {
        checkRowBounds( row );
        return getDOMCellCount( row );
    }

    /**
     * Gets the overall column index of this cell as if this table were a grid, as
     * determined by the rowspan and colspan of other cells in the table.
     *
     * @param row    the cell's row
     * @param column the cell's column
     *
     * @return the cell's column index
     *
     * @throws IndexOutOfBoundsException
     */
    public int getColumnIndex( int row, int column ) {
        checkCellBounds( row, column );
        return getRawColumnIndex( row, column );
    }

    /**
     * Explicitly gets the {@link FlexCellFormatter}. The results of
     * {@link HTMLTable#getCellFormatter()} may also be downcast to a
     * {@link FlexCellFormatter}.
     *
     * @return the FlexTable's cell formatter
     */
    public FlexCellFormatter getFlexCellFormatter() {
        return (FlexCellFormatter) getCellFormatter();
    }

    /**
     * Gets the number of rows.
     *
     * @return number of rows
     */
    @Override
    public int getRowCount() {
        return getDOMRowCount();
    }

    /**
     * Inserts a cell into the FlexTable.
     *
     * @param beforeRow    the cell's row
     * @param beforeColumn the cell's column
     *
     * @return the element
     */
    @Override
    public Element insertCell( int beforeRow, int beforeColumn ) {
        return super.insertCell( beforeRow, beforeColumn );
    }

    /**
     * Inserts a row into the FlexTable.
     *
     * @param beforeRow the row to insert
     */
    @Override
    public int insertRow( int beforeRow ) {
        return super.insertRow( beforeRow );
    }

    /**
     * Removes the specified cell from the table.
     *
     * @param row    the row of the cell to remove
     * @param column the column of cell to remove
     *
     * @throws IndexOutOfBoundsException
     */
    @Override
    public void removeCell( int row, int column ) {
        super.removeCell( row, column );
    }

    /**
     * Removes a number of cells from a row in the table.
     *
     * @param row    the row of the cells to be removed
     * @param column the column of the first cell to be removed
     * @param num    the number of cells to be removed
     *
     * @throws IndexOutOfBoundsException
     */
    public void removeCells( int row, int column, int num ) {
        for ( int i = 0; i < num; i++ ) {
            removeCell( row, column );
        }
    }

    @Override
    public void removeRow( int row ) {
        super.removeRow( row );
    }

    /**
     * Add cells to the specified row.
     *
     * @param row the row to affect
     * @param num the number of cells to add
     */
    protected void addCells( int row, int num ) {
        addCells( getBodyElement(), row, num );
    }

    /**
     * Ensure that the cell exists.
     *
     * @param row    the row to prepare.
     * @param column the column to prepare.
     *
     * @throws IndexOutOfBoundsException if the row is negative
     */
    @Override
    protected void prepareCell( int row, int column ) {
        prepareRow( row );
        if ( column < 0 ) {
            throw new IndexOutOfBoundsException( "Cannot create a column with a negative index: " + column );
        }

        // Ensure that the requested column exists.
        int cellCount = getCellCount( row );
        int required = column + 1 - cellCount;
        if ( required > 0 ) {
            addCells( row, required );
        }
    }

    /**
     * Ensure that the row exists.
     *
     * @param row The row to prepare.
     *
     * @throws IndexOutOfBoundsException if the row is negative
     */
    @Override
    protected void prepareRow( int row ) {
        if ( row < 0 ) {
            throw new IndexOutOfBoundsException( "Cannot create a row with a negative index: " + row );
        }

        // Ensure that the requested row exists.
        int rowCount = getRowCount();
        for ( int i = rowCount; i <= row; i++ ) {
            insertRow( i );
        }
    }

    /**
     * Gets the overall column index of this cell as if this table were a grid, as
     * determined by the rowspan and colspan of other cells in the table. This
     * helper method doesn't check the bounds on every recursive call.
     *
     * @param row    the cell's row
     * @param column the cell's column
     *
     * @return the cell's column index
     *
     * @throws IndexOutOfBoundsException
     */
    private int getRawColumnIndex( int row, int column ) {
        // Get cells before me in my row
        FlexCellFormatter formatter = getFlexCellFormatter();
        int columnIndex = 0;
        for ( int curCell = 0; curCell < column; curCell++ ) {
            columnIndex += formatter.getColSpan( row, curCell );
        }

        // Get cells that span down into my row
        int numCells = 0;
        for ( int curRow = 0; curRow < row; curRow++ ) {
            numCells = getCellCount( curRow );
            for ( int curCell = 0; curCell < numCells; curCell++ ) {
                if ( (curRow + formatter.getRowSpan( curRow, curCell ) - 1) >= row ) {
                    if ( getRawColumnIndex( curRow, curCell ) <= columnIndex ) {
                        columnIndex += formatter.getColSpan( curRow, curCell );
                    }
                }
            }
        }

        return columnIndex;
    }
}

Commits for litesoft/trunk/Java/GWT/Client/src/com/google/gwt/gen2/table/client/FlexTable.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

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