diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-02-04 14:47:31 +0800 |
---|---|---|
committer | Chandni Verma <chandniverma2112@gmail.com> | 2011-03-08 08:26:15 +0800 |
commit | 83e88245ea04ee0d66c98ce36bf4f7112cbd2f23 (patch) | |
tree | a1b439ad6430065d7732eccc8f40b90d7e2d2d91 /libempathy-gtk/empathy-contact-blocking-dialog.ui | |
parent | 2eb9099ce3e60b8c60039b7947e249c294b02167 (diff) | |
download | gsoc2013-empathy-83e88245ea04ee0d66c98ce36bf4f7112cbd2f23.tar gsoc2013-empathy-83e88245ea04ee0d66c98ce36bf4f7112cbd2f23.tar.gz gsoc2013-empathy-83e88245ea04ee0d66c98ce36bf4f7112cbd2f23.tar.bz2 gsoc2013-empathy-83e88245ea04ee0d66c98ce36bf4f7112cbd2f23.tar.lz gsoc2013-empathy-83e88245ea04ee0d66c98ce36bf4f7112cbd2f23.tar.xz gsoc2013-empathy-83e88245ea04ee0d66c98ce36bf4f7112cbd2f23.tar.zst gsoc2013-empathy-83e88245ea04ee0d66c98ce36bf4f7112cbd2f23.zip |
Beginning of contact blocking dialog
Can currently select an account and view the contact blocking 'deny' list.
List reponds to changes in the group membership.
Add/Remove buttons do not yet do anything.
Diffstat (limited to 'libempathy-gtk/empathy-contact-blocking-dialog.ui')
-rw-r--r-- | libempathy-gtk/empathy-contact-blocking-dialog.ui | 145 |
1 files changed, 145 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contact-blocking-dialog.ui b/libempathy-gtk/empathy-contact-blocking-dialog.ui new file mode 100644 index 000000000..648850e13 --- /dev/null +++ b/libempathy-gtk/empathy-contact-blocking-dialog.ui @@ -0,0 +1,145 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <requires lib="gtk+" version="2.16"/> + <!-- interface-naming-policy project-wide --> + <object class="GtkVBox" id="contents"> + <property name="visible">True</property> + <property name="border_width">6</property> + <property name="spacing">6</property> + <child> + <object class="GtkHBox" id="account-hbox"> + <property name="visible">True</property> + <property name="spacing">6</property> + <child> + <object class="GtkLabel" id="label1"> + <property name="visible">True</property> + <property name="xalign">0</property> + <property name="label" translatable="yes">Account:</property> + </object> + <packing> + <property name="expand">False</property> + <property name="position">0</property> + </packing> + </child> + <child> + <placeholder/> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="hbox1"> + <property name="visible">True</property> + <property name="spacing">6</property> + <child> + <object class="GtkScrolledWindow" id="scrolledwindow1"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="hscrollbar_policy">never</property> + <property name="vscrollbar_policy">automatic</property> + <property name="shadow_type">etched-in</property> + <child> + <object class="GtkTreeView" id="treeview1"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="model">blocked-contacts</property> + <property name="headers_clickable">False</property> + <child> + <object class="GtkTreeViewColumn" id="treeviewcolumn1"> + <property name="title">Blocked Contacts</property> + <property name="sort_column_id">0</property> + <child> + <object class="GtkCellRendererText" id="cellrenderertext1"/> + <attributes> + <attribute name="text">0</attribute> + </attributes> + </child> + </object> + </child> + </object> + </child> + </object> + <packing> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkVButtonBox" id="vbuttonbox1"> + <property name="visible">True</property> + <property name="layout_style">start</property> + <child> + <object class="GtkButton" id="remove-button"> + <property name="label">gtk-remove</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="position">0</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="position">1</property> + </packing> + </child> + <child> + <object class="GtkHBox" id="add-contact-hbox"> + <property name="visible">True</property> + <property name="spacing">6</property> + <child> + <object class="GtkEntry" id="add-contact-entry"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="invisible_char">●</property> + </object> + <packing> + <property name="position">0</property> + </packing> + </child> + <child> + <object class="GtkButton" id="add-button"> + <property name="label">gtk-add</property> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="receives_default">True</property> + <property name="use_stock">True</property> + </object> + <packing> + <property name="expand">False</property> + <property name="position">1</property> + </packing> + </child> + </object> + <packing> + <property name="expand">False</property> + <property name="position">2</property> + </packing> + </child> + </object> + <object class="GtkListStore" id="blocked-contacts"> + <columns> + <!-- column-name identifier --> + <column type="gchararray"/> + <!-- column-name handle --> + <column type="guint"/> + </columns> + </object> + <object class="GtkSizeGroup" id="sizegroup1"> + <widgets> + <widget name="remove-button"/> + <widget name="add-button"/> + </widgets> + </object> +</interface> |