alternative to assert
[gtkD.git] / gtkD / src / gtk / IMContextSimple.d
blob46a43ceaffc01df8352d27d9517073cf8212b88c
1 /*
2 * This file is part of gtkD.
4 * gtkD is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2.1 of the License, or
7 * (at your option) any later version.
9 * gtkD is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with gtkD; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 // generated automatically - do not change
20 // find conversion definition on APILookup.txt
21 // implement new conversion functionalities on the wrap.utils pakage
24 * Conversion parameters:
25 * inFile = GtkIMContextSimple.html
26 * outPack = gtk
27 * outFile = IMContextSimple
28 * strct = GtkIMContextSimple
29 * realStrct=
30 * ctorStrct=
31 * clss = IMContextSimple
32 * interf =
33 * class Code: No
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - gtk_im_context_simple_
40 * - gtk_
41 * omit structs:
42 * omit prefixes:
43 * omit code:
44 * imports:
45 * - gtk.IMContext
46 * structWrap:
47 * - GtkIMContext* -> IMContext
48 * module aliases:
49 * local aliases:
52 module gtk.IMContextSimple;
54 version(noAssert)
56 version(Tango)
58 import tango.io.Stdout; // use the tango loging?
62 private import gtkc.gtktypes;
64 private import gtkc.gtk;
67 private import gtk.IMContext;
72 /**
73 * Description
75 private import gtk.IMContext;
76 public class IMContextSimple : IMContext
79 /** the main Gtk struct */
80 protected GtkIMContextSimple* gtkIMContextSimple;
83 public GtkIMContextSimple* getIMContextSimpleStruct()
85 return gtkIMContextSimple;
89 /** the main Gtk struct as a void* */
90 protected void* getStruct()
92 return cast(void*)gtkIMContextSimple;
95 /**
96 * Sets our main struct and passes it to the parent class
98 public this (GtkIMContextSimple* gtkIMContextSimple)
100 version(noAssert)
102 if ( gtkIMContextSimple is null )
104 int zero = 0;
105 version(Tango)
107 Stdout("struct gtkIMContextSimple is null on constructor").newline;
109 else
111 printf("struct gtkIMContextSimple is null on constructor");
113 zero = zero / zero;
116 else
118 assert(gtkIMContextSimple !is null, "struct gtkIMContextSimple is null on constructor");
120 super(cast(GtkIMContext*)gtkIMContextSimple);
121 this.gtkIMContextSimple = gtkIMContextSimple;
129 * Creates a new GtkIMContextSimple.
130 * Returns:
131 * a new GtkIMContextSimple.
133 public static IMContext newIMContextSimple()
135 // GtkIMContext* gtk_im_context_simple_new (void);
136 return new IMContext( gtk_im_context_simple_new() );
140 * Adds an additional table to search to the input context.
141 * Each row of the table consists of max_seq_len key symbols
142 * followed by two guint16 interpreted as the high and low
143 * words of a gunicode value. Tables are searched starting
144 * from the last added.
145 * The table must be sorted in dictionary order on the
146 * numeric value of the key symbol fields. (Values beyond
147 * the length of the sequence should be zero.)
148 * context_simple:
149 * A GtkIMContextSimple
150 * data:
151 * the table
152 * max_seq_len:
153 * Maximum length of a sequence in the table
154 * (cannot be greater than GTK_MAX_COMPOSE_LEN)
155 * n_seqs:
156 * number of sequences in the table
158 public void addTable(ushort* data, int maxSeqLen, int nSeqs)
160 // void gtk_im_context_simple_add_table (GtkIMContextSimple *context_simple, guint16 *data, gint max_seq_len, gint n_seqs);
161 gtk_im_context_simple_add_table(gtkIMContextSimple, data, maxSeqLen, nSeqs);