altosdroid: use 'show' to set new tab contents in onResume
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / AltosDroidTab.java
1 /*
2  * Copyright © 2013 Mike Beattie <mike@ethernal.org>
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 org.altusmetrum.AltosDroid;
19
20 import org.altusmetrum.altoslib_7.*;
21 import android.location.Location;
22 import android.app.Activity;
23 import android.graphics.Color;
24 import android.os.Bundle;
25 import android.support.v4.app.Fragment;
26 import android.support.v4.app.FragmentTransaction;
27 import android.support.v4.app.FragmentManager;
28 import android.location.Location;
29 import android.widget.TextView;
30
31 public abstract class AltosDroidTab extends Fragment implements AltosUnitsListener {
32         AltosState              last_state;
33         AltosGreatCircle        last_from_receiver;
34         Location                last_receiver;
35
36         public abstract void show(AltosState state, AltosGreatCircle from_receiver, Location receiver);
37
38         public abstract String tab_name();
39
40         public void set_map_type(int map_type) {
41         }
42
43         public void units_changed(boolean imperial_units) {
44                 if (!isHidden() && last_state != null)
45                         show(last_state, last_from_receiver, last_receiver);
46         }
47
48         public void set_value(TextView text_view,
49                               AltosUnits units,
50                               int width,
51                               double value) {
52                 if (value == AltosLib.MISSING)
53                         text_view.setText("");
54                 else
55                         text_view.setText(units.show(width, value));
56         }
57
58         public void set_visible(boolean visible) {
59                 FragmentTransaction     ft = AltosDroid.fm.beginTransaction();
60                 if (visible) {
61                         AltosState              state = last_state;
62                         AltosGreatCircle        from_receiver = last_from_receiver;
63                         Location                receiver = last_receiver;
64
65                         ft.show(this);
66                         show(state, from_receiver, receiver);
67                 } else
68                         ft.hide(this);
69                 ft.commitAllowingStateLoss();
70         }
71
72         @Override
73         public void onResume() {
74                 super.onResume();
75                 AltosDebug.debug("onResume tab %s\n", tab_name());
76                 set_visible(true);
77         }
78
79         public void update_ui(AltosState state, AltosGreatCircle from_receiver, Location receiver, boolean is_current) {
80                 last_state = state;
81                 last_from_receiver = from_receiver;
82                 last_receiver = receiver;
83                 if (is_current)
84                         show(state, from_receiver, receiver);
85                 else
86                         return;
87         }
88 }