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