altoslib: Create AltosProgrammer class
[fw/altos] / altosui / AltosFlightInfoTableModel.java
1 /*
2  * Copyright © 2010 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package altosui;
19
20 import javax.swing.table.*;
21
22 public class AltosFlightInfoTableModel extends AbstractTableModel {
23         final static private String[] columnNames = {"Field", "Value"};
24
25         int     rows;
26         int     cols;
27         private String[][] data;
28
29         public int getColumnCount() { return cols; }
30         public int getRowCount() { return rows; }
31         public String getColumnName(int col) { return columnNames[col & 1]; }
32
33         public Object getValueAt(int row, int col) {
34                 if (row >= rows || col >= cols)
35                         return "";
36                 return data[row][col];
37         }
38
39         int[]   current_row;
40
41         public void reset() {
42                 for (int i = 0; i < cols / 2; i++)
43                         current_row[i] = 0;
44         }
45
46         public void clear() {
47                 reset();
48                 for (int c = 0; c < cols; c++)
49                         for (int r = 0; r < rows; r++)
50                                 data[r][c] = "";
51                 fireTableDataChanged();
52         }
53
54         public void addRow(int col, String name, String value) {
55                 if (current_row[col] < rows) {
56                         data[current_row[col]][col * 2] = name;
57                         data[current_row[col]][col * 2 + 1] = value;
58                 }
59                 current_row[col]++;
60         }
61
62         public void finish() {
63                 for (int c = 0; c < cols / 2; c++)
64                         while (current_row[c] < rows)
65                                 addRow(c, "", "");
66                 fireTableDataChanged();
67         }
68
69         public AltosFlightInfoTableModel (int in_rows, int in_cols) {
70                 rows = in_rows;
71                 cols = in_cols * 2;
72                 data = new String[rows][cols];
73                 current_row = new int[in_cols];
74         }
75 }