/src/wrappers/gobject/library/g_param_spec_character.e
http://github.com/tybor/Liberty · Specman e · 33 lines · 19 code · 8 blank · 6 comment · 0 complexity · c51b1b1e76aabfd7331fbf96ee2de074 MD5 · raw file
- indexing
- description: "Character GParamSpec"
- copyright: "Copyright (c) 2005, Paolo Redaelli"
- license: "LGPL"
- date: "$Date: $"
- revision: "$ $"
- class G_PARAM_SPEC_CHARACTER
- inherit G_PARAM_SPEC
- creation make
-
- feature -- Creation
- make (a_name,a_nick,a_blurb: STRING;
- a_min,a_max,a_default: CHARACTER; some_flags: INTEGER) is
- -- Creates a new G_PARAM_SPEC_BOOLEAN.
- -- `a_name' is the canonical name of the property specified,
- -- `a_nick' is the nick name for the property specified,
- -- `a_blurb' is a description of the property specified.
- --`a_default' is the default value for the property
- --`some_flags' are flags for the property specified
- do
- from_external_pointer (g_param_spec_char
- (a_name.to_external, a_nick.to_external, a_blurb.to_external,
- a_min.to_integer_8, a_max.to_integer_8, a_default.to_integer_8,
- some_flags))
- end
- end