Add support for async signal handlers
[vala-lang.git] / vala / valaenumvalue.vala
blob4a04b85698a477cc61ca8c7bd7dab44de2adae3a
1 /* valaenumvalue.vala
3 * Copyright (C) 2006-2010 Jürg Billeter
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author:
20 * Jürg Billeter <j@bitron.ch>
23 using GLib;
25 /**
26 * Represents an enum member in the source code.
28 public class Vala.EnumValue : Constant {
29 /**
30 * Creates a new enum value with the specified numerical representation.
32 * @param name enum value name
33 * @param value numerical representation
34 * @return newly created enum value
36 public EnumValue (string name, Expression? value, SourceReference? source_reference = null, Comment? comment = null) {
37 base (name, null, value, source_reference, comment);
40 /**
41 * Returns the string literal of this signal to be used in C code.
42 * (FIXME: from vlaasignal.vala)
44 * @return string literal to be used in C code
46 public CCodeConstant get_canonical_cconstant () {
47 var str = new StringBuilder ("\"");
49 string i = name;
51 while (i.length > 0) {
52 unichar c = i.get_char ();
53 if (c == '_') {
54 str.append_c ('-');
55 } else {
56 str.append_unichar (c.tolower ());
59 i = i.next_char ();
62 str.append_c ('"');
64 return new CCodeConstant (str.str);
67 public override void accept (CodeVisitor visitor) {
68 visitor.visit_enum_value (this);
71 public override void accept_children (CodeVisitor visitor) {
72 if (value != null) {
73 value.accept (visitor);
77 public override string get_default_cname () {
78 var en = (Enum) parent_symbol;
79 return "%s%s".printf (en.get_cprefix (), name);
82 public override bool check (CodeContext context) {
83 if (checked) {
84 return !error;
87 checked = true;
89 process_attributes ();
91 if (value != null) {
92 value.check (context);
95 return !error;