3 * Copyright (C) 2006-2009 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
20 * Jürg Billeter <j@bitron.ch>
26 * Represents an enum member in the source code.
28 public class Vala
.EnumValue
: Symbol
{
30 * Specifies the numerical representation of this enum value.
32 public Expression value
{ get; set; }
34 public Comment comment
{ get; set; }
39 * Creates a new enum value.
41 * @param name enum value name
42 * @return newly created enum value
44 public EnumValue (string name
, SourceReference? source_reference
= null, Comment? comment
= null) {
45 base (name
, source_reference
);
46 this
.comment
= comment
;
50 * Creates a new enum value with the specified numerical representation.
52 * @param name enum value name
53 * @param value numerical representation
54 * @return newly created enum value
56 public EnumValue
.with_value (string name
, Expression value
, SourceReference? source_reference
= null, Comment? comment
= null) {
57 this (name
, source_reference
, comment
);
62 * Returns the string literal of this signal to be used in C code.
63 * (FIXME: from vlaasignal.vala)
65 * @return string literal to be used in C code
67 public CCodeConstant
get_canonical_cconstant () {
68 var str
= new
StringBuilder ("\"");
72 while (i
.len () > 0) {
73 unichar c
= i
.get_char ();
77 str
.append_unichar (c
.tolower ());
85 return new
CCodeConstant (str
.str
);
88 public override void accept (CodeVisitor visitor
) {
89 visitor
.visit_enum_value (this
);
92 public override void accept_children (CodeVisitor visitor
) {
94 value
.accept (visitor
);
99 * Process all associated attributes.
101 public void process_attributes () {
102 foreach (Attribute a
in attributes
) {
103 if (a
.name
== "CCode" && a
.has_argument("cname")) {
104 cname
= a
.get_string ("cname");
110 * Returns the name of this enum value as it is used in C code.
112 * @return the name to be used in C code
114 public string get_cname () {
116 cname
= get_default_cname ();
121 public string get_default_cname () {
122 var en
= (Enum
) parent_symbol
;
123 return "%s%s".printf (en
.get_cprefix (), name
);
127 * Sets the name of this enum value to be used in C code.
129 * @param cname the name to be used in C code
131 public void set_cname (string cname
) {
135 public override bool check (SemanticAnalyzer analyzer
) {
142 process_attributes ();
145 value
.check (analyzer
);