~ubuntu-branches/ubuntu/oneiric/gwibber/oneiric

« back to all changes in this revision

Viewing changes to libgwibber-gtk/gwibber-gtk-0.2.vapi

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2011-08-25 15:36:16 UTC
  • mfrom: (1.1.59 upstream)
  • Revision ID: james.westby@ubuntu.com-20110825153616-sd8yqbkdytwh0gi5
Tags: 3.1.6-0ubuntu1
* New upstream release
  - async loading of all images
  - display thumbnails for images and videos
  - display facebook comments inline
  - round the corners of avatars and thumbnails
  - significant performance improvements for rendering the stream views
* debian/libgwibber-gtk2.symbols
  - added symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
        }
90
90
        [CCode (cheader_filename = "gwibber-gtk.h")]
91
91
        public class StreamView : Gtk.HBox {
 
92
                public Gwibber.Service service;
92
93
                public Gwibber.Utils utils;
93
94
                public StreamView ();
94
95
                public override void get_preferred_height (out int mh, out int nh);
104
105
                public virtual signal void reply (string mid, string account, string sender);
105
106
        }
106
107
        [CCode (cheader_filename = "gwibber-gtk.h")]
 
108
        public class StreamViewAvatar : Gtk.Image {
 
109
                public StreamViewAvatar ();
 
110
        }
 
111
        [CCode (cheader_filename = "gwibber-gtk.h")]
107
112
        public class StreamViewTile : Gtk.EventBox {
108
113
                public uint uid;
109
 
                public StreamViewTile (Gwibber.Utils utils, bool show_fullname);
 
114
                public StreamViewTile (Gwibber.Utils utils, Gwibber.Service service, bool show_fullname);
110
115
                public void reset ();
111
 
                public void set_details (string[] _accounts, string _stream, string _sender, string _sender_nick, bool _from_me, string _timestamp, string _message, string _html, string _icon_uri, string _url, string _source, string _timestring, string _reply_nick, string _reply_name, string _reply_url, double _likes, string _retweet_nick, string _retweet_name, string _retweet_id, string _link_picture, string _link_name, string _link_url, string _link_desc, string _link_caption, string _link_icon, string _img_url, string _img_src, string _img_thumb, string _img_name);
 
116
                public void set_details (string[] _accounts, string _stream, string _sender, string _sender_nick, bool _from_me, string _timestamp, string _message, string _html, string _icon_uri, string _url, string _source, string _timestring, string _reply_nick, string _reply_name, string _reply_url, double _likes, string _retweet_nick, string _retweet_name, string _retweet_id, string _link_picture, string _link_name, string _link_url, string _link_desc, string _link_caption, string _link_icon, string _img_url, string _img_src, string _img_thumb, string _img_name, string _video_picture, string _video_src, string _video_url, string _video_name, string _comments);
 
117
                public Gwibber.Service service { get; set construct; }
112
118
                public bool show_fullname { get; set construct; }
113
119
                public Gwibber.Utils utils { get; set construct; }
114
120
                public virtual signal void reply (string mid, string account, string sender);