summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/Altos.java
Commit message (Collapse)AuthorAge
* Move altosui to the top level, placing libaltos inside it.Keith Packard2010-11-24
| | | | Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Rewrite info table to mix with scroll pane well. Fix startup sizeKeith Packard2010-11-20
| | | | | | | | | | | Using a single table for the info table means that the scroll pane automatically picks up the table headers and shows them above the scrollable view. This patch also fixes the application size at startup so that no scrollbar is required in the info table, and the window is < 800x600. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Cleanup flight UI layoutKeith Packard2010-11-16
| | | | | | | Use common constants for fonts and insets Shrink fonts so that the window is < 600 pixels tall. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Add KML file export.Keith Packard2010-09-28
| | | | | | | Command line has switches now, --kml and --csv Export save dialog has combo box to select kml or csv result. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Move number parsing code to Altos general classKeith Packard2010-08-26
| | | | | | This moves these shared functions to the global shared class. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Compute flight state from eeprom dataKeith Packard2010-08-05
| | | | | | This lets eeprom files be used to replay flights. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: Explicitly initialize Altos classKeith Packard2010-08-05
| | | | | | | | Because the Altos class is never instantiated, the static initializers are never called, leaving the string to state mapping empty. Hand-code the call to the initialer instead. Signed-off-by: Keith Packard <keithp@keithp.com>
* altosui: rename AltosEeprom -> AltosEepromDownload, split out Altos constantsKeith Packard2010-07-31
Renames the eeprom downloading code and adds a new file to share the flight data constants across the various UI modules. Signed-off-by: Keith Packard <keithp@keithp.com>