summaryrefslogtreecommitdiff
path: root/javax/swing/SizeSequence.java
blob: cb6c8bc25dfb8466caee31bbadebf67063b6c282 (plain)
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
/* SizeSequence.java --
   Copyright (C) 2002, 2006, Free Software Foundation, Inc.

This file is part of GNU Classpath.

GNU Classpath is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GNU Classpath is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with GNU Classpath; see the file COPYING.  If not, write to the
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA.

Linking this library statically or dynamically with other modules is
making a combined work based on this library.  Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module.  An independent module is a module which is not derived from
or based on this library.  If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so.  If you do not wish to do so, delete this
exception statement from your version. */

package javax.swing;

import java.util.Arrays;

/**
 * A sequence of values that represent the dimensions (widths or heights) of 
 * some collection of items (for example, the widths of the columns in a table).
 * 
 * @author	Andrew Selkirk
 */
public class SizeSequence
{
  // TODO: Sun's API specification for this class contains an implementation
  // note regarding the encoding for the element sizes.  We currently use the
  // simple size encoding but we should look at improving this.
  
  /** Storage for the element sizes. */
  private int[] sizes;

  /**
   * Creates a new empty <code>SizeSequence</code> instance.
   */
  public SizeSequence()
  {
    sizes = new int[0];
  }

  /**
   * Creates a new <code>SizeSequence</code> instance with the specified number 
   * of elements, each having a size of 0.
   * 
   * @param numEntries  the number of elements.
   */
  public SizeSequence(int numEntries)
  {
    this(numEntries, 0);
  }

  /**
   * Creates a new <code>SizeSequence</code> instance with the specified number
   * of elements all having the same size (<code>value</code>).
   * 
   * @param numEntries  the number of elements.
   * @param value  the value for each element.
   */
  public SizeSequence(int numEntries, int value)
  {
    sizes = new int[numEntries];
    Arrays.fill(sizes, value);
  }

  /**
   * Creates a new <code>SizeSequence</code> instance using the specified 
   * element sizes.
   * 
   * @param sizes  the element sizes (<code>null</code> not permitted).
   */
  public SizeSequence(int[] sizes)
  {
    this.sizes = (int[]) sizes.clone();
  }

  /**
   * Sets the size of the element at the specified index.
   * 
   * @param index  the index.
   * @param size  the size.
   */
  public void setSize(int index, int size)
  {
    if (index >= 0 && index < sizes.length)
      sizes[index] = size;
  }

  /**
   * Returns the index of the element that contains the specified position.
   * 
   * @param position  the position.
   * 
   * @return The index of the element that contains the specified position.
   */
  public int getIndex(int position)
  {
    int i = 0;
    int runningTotal = 0;  
    while (i < sizes.length && position >= runningTotal + sizes[i]) 
      {
        runningTotal += sizes[i];
        i++;
      }
    return i;
  }

  /**
   * Returns the size of the specified element, or 0 if the element index is
   * outside the defined range.
   * 
   * @param index  the element index.
   * 
   * @return The size of the specified element, or 0 if the element index is
   *     outside the defined range.
   */
  public int getSize(int index)
  {
    if (index < 0 || index >= sizes.length)
      return 0;
    return sizes[index];
  }

  /**
   * Sets the sizes for the elements in the sequence.
   * 
   * @param sizes  the element sizes (<code>null</code> not permitted).
   */
  public void setSizes(int[] sizes)
  {
    this.sizes = (int[]) sizes.clone();
  }

  /**
   * Returns an array containing the sizes for all the elements in the sequence.
   * 
   * @return The element sizes.
   */
  public int[] getSizes()
  {
    return (int[]) sizes.clone();
  }

  /**
   * Returns the position of the specified element.
   * 
   * @param index  the element index.
   * 
   * @return The position.
   */
  public int getPosition(int index)
  {
    int position;
    int loop;
    position = 0;
    for (loop = 0; loop < index; loop++)
      position += sizes[loop];
    return position;

  }

  /**
   * Inserts new entries into the sequence at the <code>start</code> position.
   * There are <code>length</code> new entries each having the specified
   * <code>value</code>.
   * 
   * @param start  the start element.
   * @param length  the number of elements to insert.
   * @param value  the size for each of the new elements.
   */
  public void insertEntries(int start, int length, int value)
  {
    int[] newSizes = new int[sizes.length + length];
    System.arraycopy(sizes, 0, newSizes, 0, start);
    for (int i = start; i < start + length; i++)
      newSizes[i] = value;
    System.arraycopy(sizes, start, newSizes, start + length, 
                     sizes.length - start);
    sizes = newSizes;
  }

  /**
   * Removes the element(s) at index <code>start</code> (the number of elements
   * removed is <code>length</code>).
   * 
   * @param start  the index of the first element to remove.
   * @param length  the number of elements to remove.
   */
  public void removeEntries(int start, int length)
  {
    // Sanity check.
    if ((start + length) > sizes.length)
      throw new IllegalArgumentException("Specified start/length that "
                                         + "is greater than available sizes");

    int[] newSizes = new int[sizes.length - length];
    System.arraycopy(sizes, 0, newSizes, 0, start);
    System.arraycopy(sizes, start + length, newSizes, start, 
                     sizes.length - start - length);
    sizes = newSizes;
  }
}