~ubuntu-branches/ubuntu/precise/gwibber/precise-proposed-201212050210

« back to all changes in this revision

Viewing changes to client/users-item.vala

  • Committer: Package Import Robot
  • Author(s): Ken VanDine
  • Date: 2012-01-30 10:55:24 UTC
  • mfrom: (1.1.67)
  • Revision ID: package-import@ubuntu.com-20120130105524-lvj9m771qldotvi4
Tags: 3.3.3-0ubuntu1
* New upstream release
  - Fixed memory leak in ActionBoxItem (LP: #909085)
  - Fixed race conditions in async image loading while scrolling (LP: #911619)
  - Hide window while gwibber exits (Michal Hruby)
  - Improved scrolling by enclosing comments and image previews in a 
    Gtk.Expander, this fixes the tiles resizing while scrolling (LP: #875348)
  - Ported to valac-0.16
* debian/control
  - build depend on valac-0.16 

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
public class UsersItem : TabBarItem
22
22
{
23
23
  private Gtk.Alignment _align;
24
 
  private Gtk.HBox box;
25
 
  private Gtk.HBox _view;
 
24
  private Gtk.Box box;
 
25
  private Gtk.Box _view;
26
26
  private GwibberGtk.UserView _user_view;
27
27
  private GwibberGtk.StreamView _stream_view;
28
28
  public Gwibber.Streams streams { get; construct; }
29
29
  private ulong active_hander_id;
30
30
  private Gtk.Entry _entry;
31
 
  private Gtk.HBox _profile_box;
32
 
  private Gtk.VBox _vbox;
 
31
  private Gtk.Box _profile_box;
 
32
  private Gtk.Box _vbox;
33
33
  private GwibberGtk.UserProfileTile _user = null;
34
34
  private uint user_profile_handler_id = 0;
35
35
  private TabWidgets.AccountSelectorBar _acctbar;
42
42
  construct
43
43
  {
44
44
    // View
45
 
    _view = new Gtk.HBox (true, 0);
 
45
    _view = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0);
 
46
    _view.set_homogeneous (true);
46
47
    _view.set_no_show_all (true);
47
48
    _view.show ();
48
49
    _vbox.show ();
65
66
    _align = new Gtk.Alignment (0.5f, 0.5f, 1.0f, 1.0f);
66
67
 
67
68
 
68
 
    _vbox = new Gtk.VBox (false, 0);
69
 
    _profile_box = new Gtk.HBox (false, 0);
 
69
    _vbox = new Gtk.Box (Gtk.Orientation.VERTICAL, 0);
 
70
    _profile_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0);
70
71
    _profile_box.set_no_show_all (true);
71
 
    box = new Gtk.HBox (false, 12);
 
72
    box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 12);
72
73
    _vbox.pack_start (box, false, false, 0);
73
74
    _vbox.pack_start (_profile_box, false, false, 0);
74
75