This file is indexed.

/usr/share/vala-0.22/vapi/sdl-ttf.vapi is in valac-0.22-vapi 0.22.1-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
[CCode (cheader_filename="SDL_ttf.h")]
namespace SDLTTF {
	[CCode (cname="TTF_Linked_Version")]
	public static unowned SDL.Version linked();

	[CCode (cname="TTF_ByteSwappedUNICODE")]
	public static void byteswap_unicode(int swapped);

	[CCode (cname="TTF_Init")]
	public static int init();

	[CCode (cname="TTF_WasInit")]
	public static int get_initialized();

	[CCode (cname="TTF_Quit")]
	public static void quit();

	[CCode (cname="int", cprefix="TTF_STYLE_", has_type_id = false)]
	public enum FontStyle {
		NORMAL, BOLD, ITALIC, UNDERLINE
	}// FontStyle

	[CCode (cname="TTF_Font", free_function="TTF_CloseFont")]
	[Compact]
	public class Font {
		[CCode (cname="TTF_OpenFont")]
		public Font(string file, int ptsize);

		[CCode (cname="TTF_OpenFontIndex")]
		public Font.index(string file, int ptsize, long index);

		[CCode (cname="TTF_OpenFontRW")]
		public Font.RW(SDL.RWops src, int freesrc=0, int ptsize);

		[CCode (cname="TTF_OpenFontIndexRW")]
		public Font.RWindex(SDL.RWops src, int freesrc=0, int ptsize, long index);

		[CCode (cname="TTF_GetFontStyle")]
		public FontStyle get_style();

		[CCode (cname="TTF_SetFontStyle")]
		public FontStyle set_style(FontStyle style);

		[CCode (cname="TTF_FontHeight")]
		public int height();

		[CCode (cname="TTF_FontAscent")]
		public int ascent();

		[CCode (cname="TTF_FontDescent")]
		public int descent();

		[CCode (cname="TTF_FontLineSkip")]
		public int lineskip();

		[CCode (cname="TTF_FontFaces")]
		public long faces();

		[CCode (cname="TTF_FontFaceIsFixedWidth")]
		public int is_fixed_width();

		[CCode (cname="TTF_FontFaceFamilyName")]
		public string family();

		[CCode (cname="TTF_FontFaceStyleName")]
		public string style();

		[CCode (cname="TTF_GlyphMetrics")]
		public int metrics(uint16 ch, ref int minx, ref int maxx,
			ref int miny, ref int maxy, ref int advance);

		[CCode (cname="TTF_SizeText")]
		public int size(string text, ref int w, ref int h);

		[CCode (cname="TTF_SizeUTF8")]
		public int size_utf8(string text, ref int w, ref int h);

		[CCode (cname="TTF_SizeUNICODE")]
		public int size_unicode([CCode (array_length = false)] uint16[] text, ref int w, ref int h);

		[CCode (cname="TTF_RenderText_Solid")]
		public SDL.Surface? render(string text, SDL.Color fg);

		[CCode (cname="TTF_RenderUTF8_Solid")]
		public SDL.Surface? render_utf8(string text, SDL.Color fg);

		[CCode (cname="TTF_RenderUNICODE_Solid")]
		public SDL.Surface? render_unicode([CCode (array_length = false)] uint16[] text, SDL.Color fg);

		[CCode (cname="TTF_RenderText_Shaded")]
		public SDL.Surface? render_shaded(string text, SDL.Color fg, SDL.Color bg);

		[CCode (cname="TTF_RenderUTF8_Shaded")]
		public SDL.Surface? render_shaded_utf8(string text, SDL.Color fg, SDL.Color bg);

		[CCode (cname="TTF_RenderUNICODE_Shaded")]
		public SDL.Surface? render_shaded_unicode([CCode (array_length = false)] uint16[] text, SDL.Color fg, SDL.Color bg);

		[CCode (cname="TTF_RenderText_Blended")]
		public SDL.Surface? render_blended(string text, SDL.Color fg);

		[CCode (cname="TTF_RenderUTF8_Blended")]
		public SDL.Surface? render_blended_utf8(string text, SDL.Color fg);

		[CCode (cname="TTF_RenderUNICODE_Blended")]
		public SDL.Surface? render_blended_unicode([CCode (array_length = false)] uint16[] text, SDL.Color fg);
	}// Font
}// SDLTTF