telegps: Add graph display
[fw/altos] / altosuilib / AltosUIFrame.java
1 /*
2  * Copyright © 2011 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 org.altusmetrum.altosuilib_2;
19
20 import java.awt.*;
21 import java.awt.event.*;
22 import javax.swing.*;
23 import java.util.*;
24
25 class AltosUIFrameListener extends WindowAdapter {
26         public void windowClosing (WindowEvent e) {
27                 AltosUIPreferences.unregister_ui_listener((AltosUIFrame) e.getWindow());
28         }
29 }
30
31 public class AltosUIFrame extends JFrame implements AltosUIListener, AltosPositionListener {
32
33         public void ui_changed(String look_and_feel) {
34                 SwingUtilities.updateComponentTreeUI(this);
35                 this.pack();
36         }
37
38         static String[] altos_icon_names = {
39                 "/altus-metrum-16.png",
40                 "/altus-metrum-32.png",
41                 "/altus-metrum-48.png",
42                 "/altus-metrum-64.png",
43                 "/altus-metrum-128.png",
44                 "/altus-metrum-256.png"
45         };
46
47         static public String[] icon_names;
48
49         static public void set_icon_names(String[] new_icon_names) { icon_names = new_icon_names; }
50
51         public String[] icon_names() {
52                 if (icon_names == null)
53                         set_icon_names(altos_icon_names);
54                 return icon_names;
55         }
56
57         public void set_icon() {
58                 ArrayList<Image> icons = new ArrayList<Image>();
59                 String[] icon_names = icon_names();
60
61                 for (int i = 0; i < icon_names.length; i++) {
62                         java.net.URL imgURL = AltosUIFrame.class.getResource(icon_names[i]);
63                         if (imgURL != null)
64                                 icons.add(new ImageIcon(imgURL).getImage());
65                 }
66                 setIconImages(icons);
67         }
68
69         private boolean location_by_platform = true;
70
71         public void setLocationByPlatform(boolean lbp) {
72                 location_by_platform = lbp;
73                 super.setLocationByPlatform(lbp);
74         }
75
76         public void scan_device_selected(AltosDevice device) {
77         }
78
79         public void setSize() {
80                 /* Smash sizes around so that the window comes up in the right shape */
81                 Insets i = getInsets();
82                 Dimension ps = rootPane.getPreferredSize();
83                 ps.width += i.left + i.right;
84                 ps.height += i.top + i.bottom;
85                 setPreferredSize(ps);
86                 setSize(ps);
87         }
88
89         public void setPosition (int position) {
90                 Insets i = getInsets();
91                 Dimension ps = getSize();
92
93                 /* Stick the window in the desired location on the screen */
94                 setLocationByPlatform(false);
95                 GraphicsDevice gd = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
96                 GraphicsConfiguration gc = gd.getDefaultConfiguration();
97                 Rectangle r = gc.getBounds();
98
99                 /* compute X position */
100                 int x = 0;
101                 int y = 0;
102                 switch (position) {
103                 case AltosUILib.position_top_left:
104                 case AltosUILib.position_left:
105                 case AltosUILib.position_bottom_left:
106                         x = 0;
107                         break;
108                 case AltosUILib.position_top:
109                 case AltosUILib.position_center:
110                 case AltosUILib.position_bottom:
111                         x = (r.width - ps.width) / 2;
112                         break;
113                 case AltosUILib.position_top_right:
114                 case AltosUILib.position_right:
115                 case AltosUILib.position_bottom_right:
116                         x = r.width - ps.width + i.right;
117                         break;
118                 }
119
120                 /* compute Y position */
121                 switch (position) {
122                 case AltosUILib.position_top_left:
123                 case AltosUILib.position_top:
124                 case AltosUILib.position_top_right:
125                         y = 0;
126                         break;
127                 case AltosUILib.position_left:
128                 case AltosUILib.position_center:
129                 case AltosUILib.position_right:
130                         y = (r.height - ps.height) / 2;
131                         break;
132                 case AltosUILib.position_bottom_left:
133                 case AltosUILib.position_bottom:
134                 case AltosUILib.position_bottom_right:
135                         y = r.height - ps.height + i.bottom;
136                         break;
137                 }
138                 setLocation(x, y);
139         }
140
141         int position;
142
143         public void position_changed(int position) {
144                 this.position = position;
145                 if (!location_by_platform)
146                         setPosition(position);
147         }
148
149         public void setVisible (boolean visible) {
150                 if (visible)
151                         setLocationByPlatform(location_by_platform);
152                 super.setVisible(visible);
153                 if (visible) {
154                         setSize();
155                         if (!location_by_platform)
156                                 setPosition(position);
157                 }
158         }
159
160         void init() {
161                 AltosUIPreferences.register_ui_listener(this);
162                 AltosUIPreferences.register_position_listener(this);
163                 position = AltosUIPreferences.position();
164                 addWindowListener(new AltosUIFrameListener());
165                 set_icon();
166         }
167
168         public AltosUIFrame() {
169                 init();
170         }
171
172         public AltosUIFrame(String name) {
173                 super(name);
174                 init();
175         }
176 }