Example #1
0
            pass
        
        # include_get_set_attributes
        include_get_set_attributes=[]
        try:
            for attr in interfaces.interfaces[classname].include_get_set_attributes:
                attributes.append(attr)
        except KeyError:
            pass

        ############### get/set methods #################
        if len(attributes)>0:
            
            # fields
            for (typestr, attrname, ispointer, isenum) in attributes:
                protected += '    ' + typestr + ' ' + cpp.make_attr_name(attrname) + ';\n'
            
            # get/set methods
            for (typestr, attrname, ispointer, isenum) in attributes:
                animated = 0
                typestrBase = ""
                pos = typestr.find('Animated')
                if pos>=0 and typestr != "wxSVGAnimatedType": # SVGAnimatedTypename
                    typestrBase = typestr[pos+len('Animated'):]
                    animated = 1
                
                # get
                methodName = 'Get' + attrname[0].upper()+attrname[1:]
                if(methodName in exclude_methods):
                    continue
                exclude_methods.append(methodName)
Example #2
0
def process(classdecl):
    if classdecl.name in already_done.keys():
        return already_done[classdecl.name]

    already_done[classdecl.name] = 0
    nattr = 0
    func_body = ''

    for attr in classdecl.attributes:
        try:
            entity_name = mapDtdIdl.attributes_idl_dtd[attr]
        except KeyError:
            #print classdecl.name, attr ###### TODO
            #print classdecl
            #print mapDtdIdl.attributes_idl_dtd
            #raise ""
            continue

        if nattr == 0:
            includes.append(classdecl.name)
        nattr = nattr + 1

        get_attr = cpp.make_attr_name(attr.name)
        typestr = attr.type.name
        anim_pos = typestr.find('Animated')
        if anim_pos >= 0 and typestr != "SVGAnimatedType":  # SVGAnimatedTypename
            typestr = typestr[anim_pos + len('Animated'):]
            get_attr = get_attr + '.GetBaseVal()'

        #print classdecl.name + '::' + attr.name, typestr
        check = ''
        if typestr in ["String", "DOMString"]:
            check = '!%s.IsEmpty()' % get_attr
        elif typestr in [
                "Integer", "Boolean", "Enumeration", "unsigned short"
        ]:
            etype = ''
            if typestr == "Integer":
                etype = '(long int) '
            elif typestr == "Boolean":
                check = get_attr
                etype = '(bool) '
            elif typestr == "Enumeration":
                check = '%s != 0' % get_attr
                etype = '(char) '
            elif typestr == "unsigned short":
                if classdecl.name == "SVGZoomAndPan":
                    check = '%s != wxSVG_ZOOMANDPAN_UNKNOWN' % get_attr
                    etype = '(wxSVG_ZOOMANDPAN) '
                elif classdecl.name == "SVGColorProfileElement":
                    etype = '(wxRENDERING_INTENT) '
            if classdecl.name == "SVGGradientElement" and attr.name == "gradientUnits":
                check = '%s != wxSVG_UNIT_TYPE_UNKNOWN && %s != wxSVG_UNIT_TYPE_OBJECTBOUNDINGBOX' % (
                    get_attr, get_attr)
                get_attr = 'wxT("userSpaceOnUse")'
            elif (classdecl.name + '::' + attr.name) in enum_map.enum_map:
                def_enum = ''
                for enum in classdecl.enums:
                    if enum.name == enum_map.enum_map[classdecl.name + '::' +
                                                      attr.name] and len(
                                                          enum.const_decls):
                        def_enum = cpp.fix_typename('%s' %
                                                    enum.const_decls[0].name)
                if (len(def_enum)):
                    check = '%s != %s' % (get_attr, def_enum)
                    get_attr = 'GetAttribute(wxT("%s"))' % attr.name
                else:
                    get_attr = etype + get_attr
                    get_attr = 'wxString::Format(wxT("%%d"), %s)' % get_attr
            else:
                get_attr = etype + get_attr
                get_attr = 'wxString::Format(wxT("%%d"), %s)' % get_attr
        elif typestr in ["float", "Number"]:
            check = '%s > 0' % get_attr
            get_attr = 'wxString::Format(wxT("%%g"), %s)' % get_attr
        elif typestr == "css::CSSStyleDeclaration":
            check = '!%s.empty()' % get_attr
            get_attr = '%s.GetCSSText()' % get_attr
        elif typestr in [
                "SVGLength", "Length", "Rect", "PreserveAspectRatio",
                "SVGAnimatedType"
        ] or typestr[-4:] == "List":
            if typestr == "Length" or typestr == "SVGLength":
                check = '%s.GetUnitType() != wxSVG_LENGTHTYPE_UNKNOWN' % get_attr
            elif typestr == "PreserveAspectRatio":
                check = '%s.GetAlign() != wxSVG_PRESERVEASPECTRATIO_UNKNOWN' % get_attr
            elif typestr == "SVGAnimatedType":
                check = '%s.GetPropertyType() != wxSVG_ANIMATED_UNKNOWN' % get_attr
            else:
                check = '!%s.IsEmpty()' % get_attr
            get_attr = '%s.GetValueAsString()' % get_attr
        if len(check) > 0:
            func_body = func_body + '  if (%s)\n  ' % check
        func_body = func_body + '  attrs.Add(wxT("%s"), %s);\n' % (entity_name,
                                                                   get_attr)
    try:
        custom_parser = interfaces.interfaces[classdecl.name].custom_parser
        if custom_parser:
            func_body = func_body + '  attrs.Add(GetCustomAttributes());\n'
    except KeyError:
        pass
    for inh in classdecl.inherits:
        if inh in [
                "Element", "events::EventTarget", "events::DocumentEvent",
                "css::ViewCSS", "css::DocumentCSS", "css::CSSValue",
                "smil::ElementTimeControl", "Document", "events::UIEvent",
                "css::CSSRule", "events::Event"
        ]:
            continue
        res = process(parse_idl.class_decls[inh])
        if res > 0:
            if nattr == 0:
                includes.append(classdecl.name)
            nattr = nattr + res
            func_body = func_body + '  attrs.Add(wx%s::GetAttributes());\n' % inh

    if nattr > 0:
        output_cpp = '''
// wx%s
wxSvgXmlAttrHash wx%s::GetAttributes() const
{
  wxSvgXmlAttrHash attrs;
%s\
  return attrs;
}
''' % (classdecl.name, classdecl.name, func_body)

        output_cpps[classdecl.name] = output_cpp

    already_done[classdecl.name] = nattr
    return nattr
Example #3
0
def process(classdecl):
    if classdecl.name in already_done.keys():
        return already_done[classdecl.name];
    
    already_done[classdecl.name] = 0
    nattr=0
    func_body = ''

    for attr in classdecl.attributes:
        try:
            entity_name = mapDtdIdl.attributes_idl_dtd[attr]
        except KeyError:
            #print classdecl.name, attr ###### TODO
            #print classdecl
            #print mapDtdIdl.attributes_idl_dtd
            #raise ""
            continue

        if nattr == 0:
            includes.append(classdecl.name)
        nattr = nattr + 1
        
        get_attr = cpp.make_attr_name(attr.name)
        typestr = attr.type.name
        anim_pos = typestr.find('Animated')
        if anim_pos>=0 and typestr != "SVGAnimatedType": # SVGAnimatedTypename
            typestr = typestr[anim_pos+len('Animated'):]
            get_attr = get_attr + '.GetBaseVal()'
        
        #print classdecl.name, typestr
        if typestr in ["Integer", "Boolean", "Enumeration", "unsigned short"]:
            etype = ''
            if typestr == "Integer":
                etype = '(long int) '
            elif typestr == "Boolean":
                etype = '(bool) '
            elif typestr == "Enumeration":
                etype = '(char) '
            elif typestr == "unsigned short":
                if classdecl.name == "SVGZoomAndPan":
                    etype = '(wxSVG_ZOOMANDPAN) '
                elif classdecl.name == "SVGColorProfileElement":
                    etype = '(wxRENDERING_INTENT) '
            if classdecl.name == "SVGGradientElement" and attr.name == "gradientUnits":
                get_attr = '''  {
    if (%s == wxSVG_UNIT_TYPE_USERSPACEONUSE)
      return wxT("userSpaceOnUse");
    else if (%s == wxSVG_UNIT_TYPE_OBJECTBOUNDINGBOX)
      return wxT("objectBoundingBox");
    return wxT("");
  }'''%(get_attr,get_attr)
            elif (classdecl.name + '::' + attr.name) in enum_map.enum_map:
                get_attr2 = ''
                for enum in classdecl.enums:
                    if enum.name == enum_map.enum_map[classdecl.name + '::' + attr.name]:
                        get_attr2 = "    switch (%s) {\n"%get_attr
                        for const_decl in enum.const_decls:
                            enum_str = const_decl.name.split('_')[-1].lower()
                            if enum_str != 'unknown':
                                get_attr2 = get_attr2 + '    case %s:\n'%(cpp.fix_typename('%s'%const_decl.name))
                                get_attr2 = get_attr2 + '      return wxT("%s");\n'%(enum_str)
                        get_attr = get_attr2 + '    default:\n      return wxT("");\n    }'
                        break
                if (not len(get_attr2)):
                    get_attr = etype + get_attr
                    get_attr = '    return wxString::Format(wxT("%%d"), %s);'%get_attr
            else:
                get_attr = etype + get_attr
                get_attr = '    return wxString::Format(wxT("%%d"), %s);'%get_attr
        elif typestr in ["float", "Number"]:
            get_attr = '    return wxString::Format(wxT("%%g"), %s);'%get_attr
        elif typestr == "css::CSSStyleDeclaration":
            get_attr = '    return %s.GetCSSText();'%get_attr
        elif typestr in ["SVGLength", "Length", "Rect", "PreserveAspectRatio", "SVGAnimatedType"] or typestr[-4:] == "List":
            get_attr = '    return %s.GetValueAsString();'%get_attr
        else:
            get_attr = '    return ' + get_attr + ';'
        func_body = func_body + 'if (attrName == wxT("%s"))\n'%entity_name
        func_body = func_body + get_attr + '\n  else '

    for inh in classdecl.inherits:
        if inh in ["Element", "events::EventTarget", "events::DocumentEvent",
                   "css::ViewCSS", "css::DocumentCSS", "css::CSSValue",
                   "smil::ElementTimeControl", "Document", "events::UIEvent",
                   "css::CSSRule", "events::Event"]:
            continue
        res = process(parse_idl.class_decls[inh])
        if res>0:
            if nattr==0:
                includes.append(classdecl.name)

            nattr = nattr + res
            func_body = func_body + 'if (wx%s::HasAttribute(attrName))\n'%inh
            func_body = func_body + '    return wx%s::GetAttribute(attrName);\n'%inh
            func_body = func_body + '  else '

    if nattr>0:
        try:
            custom_parser = interfaces.interfaces[classdecl.name].custom_parser
            if custom_parser:
                func_body += 'if (HasCustomAttribute(attrName))\n'
                func_body += '    return GetCustomAttribute(attrName);\n'
                func_body += '  else'
        except KeyError:
            pass
        if classdecl in mapDtdIdl.elements_idl_dtd:
            func_body = func_body + '\n    return wxT("");\n' #wxLogDebug(wxT("unknown attribute %s::") + attrName);%(classdecl.name)
        else:
            func_body = func_body + '\n    return wxT("");\n'

        output_cpp = '''
// wx%s
wxString wx%s::GetAttribute(const wxString& attrName) const {
  %s
  return wxT("");
}      
'''%(classdecl.name, classdecl.name, func_body)

        output_cpps[classdecl.name]=output_cpp
    
    already_done[classdecl.name] = nattr
    return nattr
Example #4
0
def process(classdecl):
    if classdecl.name in already_done.keys():
        return already_done[classdecl.name]

    already_done[classdecl.name] = 0
    nattr = 0
    func_body = ''
    func_body_anim = ''

    for attr in classdecl.attributes:
        try:
            entity_name = mapDtdIdl.attributes_idl_dtd[attr]
        except KeyError:
            #print classdecl.name, attr ###### TODO
            #print classdecl
            #print mapDtdIdl.attributes_idl_dtd
            #raise ""
            continue

        if nattr == 0:
            includes.append(classdecl.name)
        nattr = nattr + 1

        attr_name = cpp.make_attr_name(attr.name)
        set_attr = attr_name
        typestr = attr.type.name
        anim_pos = -1
        if typestr != "SVGAnimatedType":
            anim_pos = typestr.find('Animated')
        if anim_pos >= 0:  # SVGAnimatedTypename
            typestr = typestr[anim_pos + len('Animated'):]
            if typestr not in [
                    "float", "Number", "Integer", "Boolean", "Enumeration",
                    "unsigned short"
            ]:
                set_attr = set_attr + '.GetBaseVal()'
        set_attr_anim = ''

        #print classdecl.name, attr.name, typestr
        if typestr in ["Integer", "Boolean", "Enumeration", "unsigned short"]:
            etype = ''
            if typestr == "Integer":
                etype = '(long int) '
            elif typestr == "Boolean":
                etype = '(bool) '
            elif typestr == "Enumeration":
                etype = '(unsigned char) '
            elif typestr == "unsigned short":
                if classdecl.name == "SVGZoomAndPan":
                    etype = '(wxSVG_ZOOMANDPAN) '
                elif classdecl.name == "SVGColorProfileElement":
                    etype = '(wxRENDERING_INTENT) '
            if anim_pos >= 0:
                set_attr = '%s.SetBaseVal(%svalue)' % (set_attr, etype)
                set_attr_anim = '%s.SetAnimVal(%sattrValue.GetLength().GetValue());' % (
                    attr_name, etype)
            else:
                set_attr = '%s = %svalue' % (set_attr, etype)
            if classdecl.name == "SVGGradientElement" and attr.name == "gradientUnits":
                set_attr = '''  {
    wxSVG_UNIT_TYPE value = wxSVG_UNIT_TYPE_UNKNOWN;
    if (attrValue.Lower() == wxT("userspaceonuse"))
        value = wxSVG_UNIT_TYPE_USERSPACEONUSE;
    else if (attrValue.Lower() == wxT("objectboundingbox"))
        value = wxSVG_UNIT_TYPE_OBJECTBOUNDINGBOX;
    %s;
  }''' % set_attr
            elif (classdecl.name + '::' + attr.name) in enum_map.enum_map:
                set_attr2 = ''
                for enum in classdecl.enums:
                    if enum.name == enum_map.enum_map[classdecl.name + '::' +
                                                      attr.name] and len(
                                                          enum.const_decls):
                        set_attr2 = '  {\n    %s value = %s;\n' % (
                            cpp.fix_typename(enum.name),
                            cpp.fix_typename('%s' % enum.const_decls[0].name))
                        for const_decl in enum.const_decls[1:]:
                            set_attr2 = set_attr2 + '    '
                            if const_decl.name != enum.const_decls[1].name:
                                set_attr2 = set_attr2 + 'else '
                            set_attr2 = set_attr2 + 'if (attrValue.Lower() == wxT("%s"))\n' % (
                                const_decl.name.split('_')[-1].lower())
                            set_attr2 = set_attr2 + '      value = %s;\n' % (
                                cpp.fix_typename('%s' % const_decl.name))
                        set_attr = set_attr2 + '    %s;\n  }' % set_attr
                        break
                if (not len(set_attr2)):
                    set_attr = '  {\n    long value;\n    if (attrValue.ToLong(&value))\n      %s;\n  }' % set_attr
            else:
                set_attr = '  {\n    long value;\n    if (attrValue.ToLong(&value))\n      %s;\n  }' % set_attr
        elif typestr in ["float", "Number"]:
            if anim_pos >= 0:
                set_attr = '%s.SetBaseVal(value)' % set_attr
                set_attr_anim = '%s.SetAnimVal(attrValue.GetLength().GetValue());' % attr_name
            else:
                set_attr = '%s = value' % set_attr
            calc_proc = ''
            if classdecl.name == "SVGStopElement" and attr.name == "offset":
                calc_proc = 'if (attrValue.Last() == wxT(\'%%\') && attrValue.Left(attrValue.Length()-1).ToDouble(&value))\n    {\n      value = value/100;\n      %s;\n    }\n    else ' % set_attr
            set_attr = "  {\n    double value;\n    %sif (attrValue.ToDouble(&value))\n      %s;\n  }" % (
                calc_proc, set_attr)
        elif typestr == "css::CSSStyleDeclaration":
            set_attr = '    %s.SetCSSText(attrValue);' % set_attr
        elif typestr in ["Rect"] or typestr[-4:] == "List":
            set_attr = '    %s.SetValueAsString(attrValue);' % set_attr
            if anim_pos >= 0:
                set_attr_anim += 'if (attrValue.GetPropertyType() == wxSVG_ANIMATED_LENGTH_LIST) {\n'
                if typestr == "NumberList":
                    set_attr_anim += "\t  wxSVGNumberList list;\n"
                    set_attr_anim += "\t  for (unsigned int i = 0; i < attrValue.GetLengthList().size(); i++) {\n"
                    set_attr_anim += "\t\tlist.push_back(attrValue.GetLengthList()[i].GetValue());\n"
                    set_attr_anim += "\t  }\n"
                    set_attr_anim += '\t  %s.SetAnimVal(list);\n' % attr_name
                    set_attr_anim += '\t} else if (attrValue.GetPropertyType() == wxSVG_ANIMATED_NUMBER_LIST) {\n'
                    set_attr_anim += '\t  %s.SetAnimVal(attrValue.GetNumberList());\n' % attr_name
                elif typestr == "TransformList":
                    set_attr_anim += '\t  %s.SetAnimVal(attrValue.GetTransformList());\n' % attr_name
                elif typestr == "Rect":
                    set_attr_anim += '\t  if (attrValue.GetLengthList().size() >= 4) {\n'
                    set_attr_anim += '\t\tconst wxSVGLengthList& list = attrValue.GetLengthList();\n'
                    set_attr_anim += '\t\t%s.SetAnimVal(wxSVGRect(list[0], list[1], list[2], list[3]));\n' % attr_name
                    set_attr_anim += '\t  }\n'
                else:
                    set_attr_anim += '\t  %s.SetAnimVal(attrValue.GetLengthList());\n' % attr_name
                set_attr_anim += '\t} else {\n'
                set_attr_anim += '\t  %s.ResetAnimVal();\n' % attr_name
                set_attr_anim += '\t}'
        elif typestr in [
                "SVGLength", "Length", "PreserveAspectRatio", "SVGAnimatedType"
        ]:
            set_attr = '    %s.SetValueAsString(attrValue);' % set_attr
            if anim_pos >= 0:
                if typestr == "PreserveAspectRatio":
                    set_attr_anim += 'if (attrValue.GetPropertyType() == wxSVG_ANIMATED_STRING) {\n'
                    set_attr_anim += '\t  wxSVGPreserveAspectRatio ratio;\n'
                    set_attr_anim += '\t  ratio.SetValueAsString(attrValue.GetString());\n'
                    set_attr_anim += '\t  %s.SetAnimVal(ratio);\n' % attr_name
                else:
                    set_attr_anim += 'if (attrValue.GetPropertyType() == wxSVG_ANIMATED_LENGTH) {\n'
                    set_attr_anim += '\t  %s.SetAnimVal(attrValue.GetLength().GetValue());\n' % attr_name
                set_attr_anim += '\t} else {\n'
                set_attr_anim += '\t  %s.ResetAnimVal();\n' % attr_name
                set_attr_anim += '\t}'
        else:
            set_attr = '\t' + set_attr + ' = attrValue;'
            if anim_pos >= 0:
                set_attr_anim += 'if (attrValue.GetPropertyType() != wxSVG_ANIMATED_UNKNOWN) {\n'
                set_attr_anim += '\t  %s.SetAnimVal(attrValue.GetString());\n' % attr_name
                set_attr_anim += '\t} else {\n'
                set_attr_anim += '\t  %s.ResetAnimVal();\n' % attr_name
                set_attr_anim += '\t}'
        if entity_name == "xlink:href":
            func_body = func_body + 'if (attrName == wxT("%s") || attrName == wxT("href"))\n' % entity_name
        else:
            func_body = func_body + 'if (attrName == wxT("%s"))\n' % entity_name
        func_body = func_body + set_attr + '\n  else '
        if len(set_attr_anim):
            func_body_anim += 'if (attrName == wxT("%s")) {\n' % entity_name
            func_body_anim += '    ' + set_attr_anim + '\n  } else '

    for inh in classdecl.inherits:
        if inh in [
                "Element", "events::EventTarget", "events::DocumentEvent",
                "css::ViewCSS", "css::DocumentCSS", "css::CSSValue",
                "smil::ElementTimeControl", "Document", "events::UIEvent",
                "css::CSSRule", "events::Event"
        ]:
            continue
        res = process(parse_idl.class_decls[inh])
        if res > 0:
            if nattr == 0:
                includes.append(classdecl.name)
            nattr = nattr + res
            func_body = func_body + "if (wx%s::SetAttribute(attrName, attrValue));\n  else " % (
                inh)
            has_anim = 0
            if len(parse_idl.class_decls[inh].attributes):
                for attr in parse_idl.class_decls[inh].attributes:
                    if attr in mapDtdIdl.attributes_idl_dtd and attr.type.name[
                            0:
                            11] == "SVGAnimated" and attr.type.name != "SVGAnimatedType":
                        has_anim = 1
                        break
            if has_anim and parse_idl.class_decls[
                    inh].name != "SVGExternalResourcesRequired":
                func_body_anim += "if (wx%s::SetAnimatedValue(attrName, attrValue));\n  else " % (
                    inh)

    if nattr > 0:
        try:
            custom_parser = interfaces.interfaces[classdecl.name].custom_parser
            if custom_parser:
                func_body += "if (SetCustomAttribute(attrName, attrValue));\n  else"
                if classdecl.name not in ["SVGAnimationElement"]:
                    func_body_anim += "if (SetCustomAnimatedValue(attrName, attrValue));\n  else "
        except KeyError:
            pass

        #if it's an element
        #if classdecl.name.find("Element")>0 and classdecl.name != "SVGElement":
        if classdecl in mapDtdIdl.elements_idl_dtd:
            func_body = func_body + '\n  {\n    //wxLogDebug(wxT("unknown attribute %s::") + attrName);\n    return false;\n  }\n' % (
                classdecl.name)
        else:
            func_body = func_body + '\n      return false;\n'

        output_cpp = '''
// wx%s
bool wx%s::SetAttribute(const wxString& attrName, const wxString& attrValue) {
  %s
  return true;
}\n''' % (classdecl.name, classdecl.name, func_body)
        if len(func_body_anim):
            output_cpp += '''
bool wx%s::SetAnimatedValue(const wxString& attrName, const wxSVGAnimatedType& attrValue) {
  %s{
    return false;
  }
  return true;
}\n''' % (classdecl.name, func_body_anim)

        output_cpps[classdecl.name] = output_cpp

    already_done[classdecl.name] = nattr
    return nattr