currentcallview: show peer uri

When we have a the name of the peer which is not the same as the uri,
show the uri below the name. This way the users knows exactly who the
conversation is with.

Change-Id: I525c48985aa060832f90ca2273eb0cf248c45394
Tuleap: #645
diff --git a/ui/currentcallview.ui b/ui/currentcallview.ui
index 72bcd05..6eb5c49 100644
--- a/ui/currentcallview.ui
+++ b/ui/currentcallview.ui
@@ -62,23 +62,53 @@
         <property name="fill">True</property>
       </packing>
     </child>
+
+    <!-- box which contains peer name and uri (if different) -->
     <child>
-      <object class="GtkLabel" id="label_identity">
+      <object class="GtkBox" id="vbox_peer_identity">
         <property name="visible">True</property>
-        <property name="can_focus">True</property>
-        <property name="selectable">True</property>
-        <property name="ellipsize">end</property>
-        <!-- <property name="valign">start</property> -->
-        <attributes>
-          <attribute name="scale" value="1.25"/>
-          <attribute name="foreground" value="#ffffffffffff"/>
-        </attributes>
+        <property name="spacing">5</property>
+        <property name="valign">start</property>
+        <property name="orientation">vertical</property>
+        <child>
+          <object class="GtkLabel" id="label_name">
+            <property name="visible">True</property>
+            <property name="can_focus">True</property>
+            <property name="selectable">True</property>
+            <property name="ellipsize">end</property>
+            <property name="halign">start</property>
+            <attributes>
+              <attribute name="scale" value="1.25"/>
+              <attribute name="foreground" value="#ffffffffffff"/>
+            </attributes>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+          </packing>
+        </child>
+        <child>
+          <object class="GtkLabel" id="label_uri">
+            <property name="visible">False</property>
+            <property name="can_focus">True</property>
+            <property name="selectable">True</property>
+            <property name="ellipsize">end</property>
+            <attributes>
+              <attribute name="foreground" value="#ffffffffffff"/>
+            </attributes>
+          </object>
+          <packing>
+            <property name="expand">False</property>
+            <property name="fill">True</property>
+          </packing>
+        </child>
       </object>
       <packing>
         <property name="expand">False</property>
         <property name="fill">True</property>
       </packing>
     </child>
+    <!-- end of box which contains peer name and uri -->
 
     <!-- call status box -->
     <child>