alternative to assert
[gtkD.git] / gtkD / src / atk / State.d
blob290db043ecc58df9f572dd109f6806d00ed2fc3e
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 = atk-AtkState.html
26 * outPack = atk
27 * outFile = State
28 * strct =
29 * realStrct=
30 * ctorStrct=
31 * clss = State
32 * interf =
33 * class Code: No
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - atk_state_
40 * omit structs:
41 * omit prefixes:
42 * omit code:
43 * imports:
44 * - glib.Str
45 * structWrap:
46 * module aliases:
47 * local aliases:
50 module atk.State;
52 version(noAssert)
54 version(Tango)
56 import tango.io.Stdout; // use the tango loging?
60 private import gtkc.atktypes;
62 private import gtkc.atk;
65 private import glib.Str;
70 /**
71 * Description
72 * An AtkState describes a component's particular state. The actual state of
73 * an component is described by its AtkStateSet, which is a set of AtkStates.
75 public class State
78 /**
83 /**
84 * Register a new object state.
85 * name:
86 * a character string describing the new state.
87 * Returns:
88 * an AtkState value for the new state.
90 public static AtkStateType typeRegister(char[] name)
92 // AtkStateType atk_state_type_register (const gchar *name);
93 return atk_state_type_register(Str.toStringz(name));
96 /**
97 * Gets the description string describing the AtkStateType type.
98 * type:
99 * The AtkStateType whose name is required
100 * Returns:
101 * the string describing the AtkStateType
103 public static char[] typeGetName(AtkStateType type)
105 // const gchar* atk_state_type_get_name (AtkStateType type);
106 return Str.toString(atk_state_type_get_name(type) );
110 * Gets the AtkStateType corresponding to the description string name.
111 * name:
112 * a character string state name
113 * Returns:
114 * an AtkStateType corresponding to name
116 public static AtkStateType typeForName(char[] name)
118 // AtkStateType atk_state_type_for_name (const gchar *name);
119 return atk_state_type_for_name(Str.toStringz(name));