Merge remote-tracking branch 'mjb/altosdroid'
[fw/altos] / altosdroid / src / org / altusmetrum / AltosDroid / GoNoGoLights.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 android.content.res.Resources;
21 import android.graphics.drawable.Drawable;
22 import android.widget.ImageView;
23
24 public class GoNoGoLights {
25         private Boolean state;
26
27         private ImageView red;
28         private ImageView green;
29
30         private Drawable dRed;
31         private Drawable dGreen;
32         private Drawable dGray;
33
34         public GoNoGoLights(ImageView in_red, ImageView in_green, Resources r) {
35                 red = in_red;
36                 green = in_green;
37                 state = false;
38
39                 dRed   = r.getDrawable(R.drawable.redled);
40                 dGreen = r.getDrawable(R.drawable.greenled);
41                 dGray  = r.getDrawable(R.drawable.grayled);
42         }
43
44         public void set(Boolean s) {
45                 if (s == state) return;
46                 state = s;
47                 if (state) {
48                         red.setImageDrawable(dGray);
49                         green.setImageDrawable(dGreen);
50                 } else {
51                         red.setImageDrawable(dRed);
52                         green.setImageDrawable(dGray);
53                 }
54         }
55 }