Add text-image control and separate Edit/View contact
[jvcard.git] / src / be / nikiroo / jvcard / tui / panes / ContactDetails.java
index c1e86c3d1fca92fbda2798a7bc16aae2542b92e9..825be1a40f9515a013e7e19459da9e67b522ab5a 100644 (file)
@@ -1,38 +1,29 @@
 package be.nikiroo.jvcard.tui.panes;
 
+import java.awt.Image;
+import java.util.Base64;
 import java.util.List;
 
+import javax.swing.ImageIcon;
+
 import be.nikiroo.jvcard.Contact;
 import be.nikiroo.jvcard.Data;
+import be.nikiroo.jvcard.TypeInfo;
+import be.nikiroo.jvcard.tui.ImageText;
 import be.nikiroo.jvcard.tui.KeyAction;
 import be.nikiroo.jvcard.tui.KeyAction.DataType;
-import be.nikiroo.jvcard.tui.KeyAction.Mode;
 
-import com.googlecode.lanterna.gui2.Direction;
-import com.googlecode.lanterna.gui2.Label;
+import com.googlecode.lanterna.TerminalSize;
+import com.googlecode.lanterna.gui2.BorderLayout;
+import com.googlecode.lanterna.gui2.Panel;
+import com.googlecode.lanterna.gui2.TextBox;
 
 public class ContactDetails extends MainContent {
        private Contact contact;
 
-       public ContactDetails(Contact contact) {
-               super(Direction.VERTICAL);
-
-               this.contact = contact;
-
-               for (Data data : contact.getContent()) {
-                       addComponent(new Label(data.getName() + ": " + data.getValue()));
-               }
-       }
-
        @Override
        public DataType getDataType() {
-               return DataType.CONTACT;
-       }
-
-       @Override
-       public String getExitWarning() {
-               // TODO Auto-generated method stub
-               return null;
+               return DataType.DATA;
        }
 
        @Override
@@ -41,27 +32,42 @@ public class ContactDetails extends MainContent {
                return null;
        }
 
-       @Override
-       public Mode getMode() {
-               return Mode.CONTACT_DETAILS;
-       }
+       public ContactDetails(Contact contact) {
+               this.contact = contact;
 
-       @Override
-       public String getTitle() {
-               String title = null;
+               BorderLayout blayout = new BorderLayout();
+               setLayoutManager(blayout);
 
+               Panel top = new Panel();
                if (contact != null) {
-                       title = contact.getPreferredDataValue("FN");
-                       if (title == null || title.length() == 0)
-                               title = contact.getPreferredDataValue("N");
-               }
+                       Data photo = contact.getPreferredData("PHOTO");
+                       if (photo != null) {
+                               TypeInfo encoding = null;
+                               TypeInfo type = null;
+                               for (TypeInfo info : photo.getTypes()) {
+                                       if (info.getName() != null) {
+                                               if (info.getName().equalsIgnoreCase("ENCODING"))
+                                                       encoding = info;
+                                               if (info.getName().equalsIgnoreCase("TYPE"))
+                                                       type = info;
+                                       }
+                               }
 
-               return title;
-       }
+                               if (encoding != null && encoding.getValue() != null
+                                               && encoding.getValue().equalsIgnoreCase("b")) {
 
-       @Override
-       public String move(int x, int y) {
-               // TODO Auto-generated method stub
-               return null;
+                                       Image img = new ImageIcon(Base64.getDecoder().decode(
+                                                       photo.getValue())).getImage();
+
+                                       TerminalSize size = new TerminalSize(40, 20);
+                                       size = new TerminalSize(120, 50);
+
+                                       String str = new ImageText(img, size).getText();
+                                       top.addComponent(new TextBox(size, str));
+                               }
+                       }
+               }
+
+               addComponent(top, BorderLayout.Location.TOP);
        }
 }