File: libbonoboui-2.0.vapi

package info (click to toggle)
vala-0.14 0.14.2-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 35,140 kB
  • sloc: ansic: 517,548; sh: 11,725; makefile: 1,433; yacc: 1,218; xml: 657; lex: 286; perl: 106
file content (21 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * WARNING: this vapi file is provided only to support development of gnome-panel applets
 * since libbonoboui is deprecated (http://library.gnome.org/devel/references.html.en_GB)
 */

[CCode (cheader_filename = "libbonoboui.h")]
namespace BonoboUI {
	public struct Verb {
		public weak string cname;
		public weak VerbFn cb;
		public void* user_data;
	}

	[CCode (type_check_function = "BONOBO_IS_UI_COMPONENT")]
	public class Component : GLib.Object
	{
	}

	[CCode (has_target = false)]
	public delegate void VerbFn (Component component, void* user_data, string cname);
}