~ubuntu-branches/ubuntu/raring/vala-0.20/raring-proposed

« back to all changes in this revision

Viewing changes to vapi/libbonoboui-2.0.vapi

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-04-05 13:45:05 UTC
  • Revision ID: package-import@ubuntu.com-20130405134505-yyk3rec9904i7p8o
Tags: upstream-0.20.1
ImportĀ upstreamĀ versionĀ 0.20.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * WARNING: this vapi file is provided only to support development of gnome-panel applets
 
3
 * since libbonoboui is deprecated (http://library.gnome.org/devel/references.html.en_GB)
 
4
 */
 
5
 
 
6
[CCode (cheader_filename = "libbonoboui.h")]
 
7
[Deprecated]
 
8
namespace BonoboUI {
 
9
        public struct Verb {
 
10
                public weak string cname;
 
11
                public weak VerbFn cb;
 
12
                public void* user_data;
 
13
        }
 
14
 
 
15
        [CCode (type_check_function = "BONOBO_IS_UI_COMPONENT")]
 
16
        public class Component : GLib.Object
 
17
        {
 
18
        }
 
19
 
 
20
        [CCode (has_target = false)]
 
21
        public delegate void VerbFn (Component component, void* user_data, string cname);
 
22
}