update to latest nikiroo-utils
[jvcard.git] / src / be / nikiroo / jvcard / tui / panes / ContactDetails.java
1 package be.nikiroo.jvcard.tui.panes;
2
3 import java.awt.Image;
4 import java.util.LinkedList;
5 import java.util.List;
6
7 import be.nikiroo.jvcard.Contact;
8 import be.nikiroo.jvcard.Data;
9 import be.nikiroo.jvcard.TypeInfo;
10 import be.nikiroo.jvcard.resources.ColorOption;
11 import be.nikiroo.jvcard.resources.DisplayBundle;
12 import be.nikiroo.jvcard.resources.DisplayOption;
13 import be.nikiroo.jvcard.resources.StringId;
14 import be.nikiroo.jvcard.tui.ImageTextControl;
15 import be.nikiroo.jvcard.tui.KeyAction;
16 import be.nikiroo.jvcard.tui.KeyAction.DataType;
17 import be.nikiroo.jvcard.tui.KeyAction.Mode;
18 import be.nikiroo.jvcard.tui.UiColors;
19 import be.nikiroo.utils.StringUtils;
20 import be.nikiroo.utils.ui.ImageUtilsAwt;
21
22 import com.googlecode.lanterna.TerminalSize;
23 import com.googlecode.lanterna.gui2.BorderLayout;
24 import com.googlecode.lanterna.gui2.Borders;
25 import com.googlecode.lanterna.gui2.Direction;
26 import com.googlecode.lanterna.gui2.LinearLayout;
27 import com.googlecode.lanterna.gui2.Panel;
28 import com.googlecode.lanterna.gui2.TextBox;
29 import com.googlecode.lanterna.gui2.TextBox.Style;
30 import com.googlecode.lanterna.input.KeyType;
31
32 public class ContactDetails extends MainContent {
33 private Contact contact;
34 private Panel top;
35 private ImageTextControl txtImage;
36 private Image image;
37 private boolean fullscreenImage;
38 private Panel infoPanel;
39 private TextBox note;
40
41 // from .properties file:
42 private int labelSize = -1;
43 private String infoFormat = "";
44
45 //
46
47 public ContactDetails(Contact contact) {
48 // Get the .properties info:
49 DisplayBundle map = new DisplayBundle();
50 labelSize = map.getInteger(DisplayOption.CONTACT_DETAILS_LABEL_WIDTH,
51 -1);
52 infoFormat = map.getString(DisplayOption.CONTACT_DETAILS_INFO);
53 //
54
55 BorderLayout blayout = new BorderLayout();
56 setLayoutManager(blayout);
57
58 top = new Panel();
59 blayout = new BorderLayout();
60 top.setLayoutManager(blayout);
61
62 infoPanel = new Panel();
63 infoPanel.setLayoutManager(new LinearLayout(Direction.VERTICAL));
64 top.addComponent(infoPanel, BorderLayout.Location.CENTER);
65
66 Panel notePanel = new Panel();
67 notePanel.setLayoutManager(new LinearLayout(Direction.HORIZONTAL));
68
69 notePanel.addComponent(UiColors.createLabel(
70 ColorOption.VIEW_CONTACT_NOTES_TITLE, "Notes:"));
71 // 10000x10000 is probably enough or "max"
72 note = new TextBox(new TerminalSize(10000, 10000), Style.MULTI_LINE);
73 note.setReadOnly(true);
74 notePanel.addComponent(note);
75 note.setVerticalFocusSwitching(false);
76 note.setHorizontalFocusSwitching(false);
77
78 setContact(contact);
79
80 addComponent(top.withBorder(Borders.doubleLineBevel()),
81 BorderLayout.Location.TOP);
82 addComponent(notePanel.withBorder(Borders.singleLineBevel()),
83 BorderLayout.Location.CENTER);
84 }
85
86 /**
87 * Change the enclosed {@link Contact} from this {@link ContactDetails}.
88 * Also re-set the image.
89 *
90 * @param contact
91 * the new {@link Contact}
92 */
93 public void setContact(Contact contact) {
94 this.contact = contact;
95 image = null;
96
97 if (contact != null) {
98 infoPanel.removeAllComponents();
99
100 String name = contact.getPreferredDataValue("FN");
101 infoPanel.addComponent(UiColors.createLabel(
102 ColorOption.VIEW_CONTACT_NAME, name));
103 infoPanel.addComponent(UiColors.createLabel(
104 ColorOption.VIEW_CONTACT_NORMAL, ""));
105
106 // List of infos:
107 String[] infos = infoFormat.split("\\|");
108 for (String info : infos) {
109 // # - "=FIELD" will take the preferred value for this field
110 // # - "+FIELD" will take the preferred value for this field and
111 // highlight it
112 // # - "#FIELD" will take all the values with this field's name
113 // # - "*FIELD" will take all the values with this field's name,
114 // highlighting the preferred one
115 // #
116
117 boolean hl = false;
118 boolean all = false;
119 if (info.contains("+") || info.contains("#")) {
120 hl = true;
121 }
122 if (info.contains("*") || info.contains("#")) {
123 all = true;
124 }
125
126 if (all || hl || info.contains("=")) {
127 ColorOption el = hl ? ColorOption.VIEW_CONTACT_HIGHLIGHT
128 : ColorOption.VIEW_CONTACT_NORMAL;
129
130 int index = info.indexOf('=');
131 if (index < 0) {
132 index = info.indexOf('+');
133 }
134 if (index < 0) {
135 index = info.indexOf('#');
136 }
137 if (index < 0) {
138 index = info.indexOf('*');
139 }
140
141 String label = info.substring(0, index);
142 String field = info.substring(index + 1);
143
144 if (all) {
145 Data pref = contact.getPreferredData(field);
146 for (Data data : contact.getData(field)) {
147 if (data == pref) {
148 infoPanel.addComponent(UiColors.createLabel(el,
149 StringUtils.padString(label, labelSize)
150 + data.toString()));
151 } else {
152 infoPanel.addComponent(UiColors.createLabel(
153 ColorOption.VIEW_CONTACT_NORMAL,
154 StringUtils.padString(label, labelSize)
155 + data.toString()));
156 }
157 }
158 } else {
159 String val = contact.getPreferredDataValue(field);
160 if (val == null) {
161 val = "";
162 }
163 infoPanel.addComponent(UiColors.createLabel(el,
164 StringUtils.padString(label, labelSize) + val));
165 }
166 } else {
167 String label = info;
168 infoPanel.addComponent(UiColors.createLabel(
169 ColorOption.VIEW_CONTACT_NORMAL,
170 StringUtils.padString(label, labelSize)));
171 }
172 }
173 // end of list
174
175 infoPanel.addComponent(UiColors.createLabel(
176 ColorOption.VIEW_CONTACT_NORMAL, ""));
177
178 String notes = contact.getPreferredDataValue("NOTE");
179 if (notes == null) {
180 notes = "";
181 }
182 note.setText(notes);
183
184 Data photo = contact.getPreferredData("PHOTO");
185 if (photo != null) {
186 TypeInfo encoding = null;
187 for (TypeInfo info : photo) {
188 if (info.getName() != null) {
189 if (info.getName().equalsIgnoreCase("ENCODING"))
190 encoding = info;
191 // We don't check for the "TYPE" anymore, we just defer
192 // it to ImageIcon
193 }
194 }
195
196 if (encoding != null && encoding.getValue() != null
197 && encoding.getValue().equalsIgnoreCase("b")) {
198 try {
199 be.nikiroo.utils.Image img = new be.nikiroo.utils.Image(
200 photo.getValue());
201 try {
202 image = ImageUtilsAwt.fromImage(img);
203 } finally {
204 img.close();
205 }
206 } catch (Exception e) {
207 System.err.println("Cannot parse image for contact: "
208 + contact.getPreferredDataValue("UID"));
209 }
210 }
211 }
212 }
213
214 setImage(image);
215 }
216
217 @Override
218 public DataType getDataType() {
219 return DataType.DATA;
220 }
221
222 @Override
223 public List<KeyAction> getKeyBindings() {
224 List<KeyAction> actions = new LinkedList<KeyAction>();
225
226 actions.add(new KeyAction(Mode.NONE, KeyType.Tab,
227 StringId.KEY_ACTION_SWITCH_FORMAT) {
228 @Override
229 public boolean onAction() {
230 if (txtImage != null) {
231 txtImage.switchMode();
232 }
233
234 return false;
235 }
236 });
237 actions.add(new KeyAction(Mode.NONE, 'i', StringId.KEY_ACTION_INVERT) {
238 @Override
239 public boolean onAction() {
240 if (txtImage != null) {
241 txtImage.invertColor();
242 }
243
244 return false;
245 }
246 });
247 actions.add(new KeyAction(Mode.NONE, 'f',
248 StringId.KEY_ACTION_FULLSCREEN) {
249 @Override
250 public boolean onAction() {
251 fullscreenImage = !fullscreenImage;
252 setImage(image);
253 return false;
254 }
255 });
256 // TODO: add "normal" edit
257 actions.add(new KeyAction(Mode.CONTACT_DETAILS_RAW, 'r',
258 StringId.KEY_ACTION_EDIT_CONTACT_RAW) {
259 @Override
260 public Object getObject() {
261 return contact;
262 }
263 });
264
265 return actions;
266 }
267
268 @Override
269 public synchronized Panel setSize(TerminalSize size) {
270 super.setSize(size);
271 setImage(image);
272 return this;
273 }
274
275 /**
276 * Set the {@link Image} to render and refresh it to the current size
277 * constraints.
278 *
279 * @param image
280 * the new {@link Image}
281 */
282 private void setImage(Image image) {
283 this.image = image;
284
285 if (txtImage != null && top.containsComponent(txtImage)) {
286 top.removeComponent(txtImage);
287 }
288
289 TerminalSize size = getTxtSize();
290 if (size != null) {
291 if (txtImage != null) {
292 txtImage.setSize(size);
293 } else {
294 txtImage = new ImageTextControl(image, size);
295 }
296 }
297
298 if (size != null) {
299 top.addComponent(txtImage, BorderLayout.Location.LEFT);
300 }
301
302 invalidate();
303 }
304
305 /**
306 * Compute the size to use for the {@link Image} text rendering. Return NULL
307 * in case of error.
308 *
309 * @return the {@link TerminalSize} to use or NULL if it is not possible
310 */
311 private TerminalSize getTxtSize() {
312 if (image != null && getSize() != null && getSize().getColumns() > 0
313 && getSize().getRows() > 0) {
314 if (fullscreenImage) {
315 return getSize();
316 }
317
318 // TODO: configure size?
319 int w = getSize().getColumns() - 40;
320 int h = getSize().getRows() - 9;
321 if (w <= 0 || h <= 0) {
322 return null;
323 }
324
325 return new TerminalSize(w, h);
326 }
327
328 return null;
329 }
330 }