home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Software / Freeware / Programare / Sharp / SharpDevelop_1.0.3.1761_Setup.exe / C64CSharp.xshd < prev    next >
Extensible Markup Language  |  2004-07-05  |  10KB  |  314 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!-- syntaxdefinition for C# 2000 by Mike Krueger -->
  4.  
  5. <SyntaxDefinition name = "C64C#" extensions = ".???">
  6.  
  7.     <Environment> 
  8.         <Default      color = "#97A0EF" bgcolor = "#3F3FDF"/>
  9.         <Selection    bgcolor = "Black"/>
  10.         <VRuler       color = "LightGreen"/>
  11.         <InvalidLines color = "Red"/>
  12.         <CaretMarker  color = "DarkBlue"/>
  13.         
  14.         <LineNumbers  color = "#97A0EF" bgcolor = "#3F3FDF"/>
  15.         
  16.         <FoldLine     color = "#97A0EF"/>
  17.         <FoldMarker   color = "#97A0EF" bgcolor="#3F3FDF"/>
  18.         <SelectedFoldLine color = "Black" bgcolor="Black"/>
  19.  
  20.         <EOLMarkers   color = "LightBlue"/>
  21.         <SpaceMarkers color = "LightBlue"/>
  22.         <TabMarkers   color = "LightBlue"/>
  23.     </Environment>
  24.     
  25.     <Properties>
  26.         <Property name="LineComment" value="//"/>
  27.     </Properties>
  28.     
  29.     <Digits   name = "Digits" bold = "false" italic = "false" color = "DarkBlue"/>
  30.     
  31.     <RuleSets>
  32.         <RuleSet ignorecase = "false">
  33.           <Delimiters>~!%^*()-+=|\#/{}[]:;"'<&> , .?</Delimiters>
  34.           <Span name = "PreprocessorDirectives" bold="false" italic="false" color="LightGreen" stopateol = "true">
  35.               <Begin>#</Begin>
  36.           </Span>
  37.           
  38.           <Span name = "LINECOMMENT" rule = "DocumentSet" bold = "false" italic = "false" color = "LightGray" stopateol = "true">
  39.                <Begin>///</Begin>
  40.           </Span>
  41.           
  42.           <Span name = "LINECOMMENT" rule = "TestSet" bold = "false" italic = "false" color = "LightGray" stopateol = "true">
  43.                <Begin>//@!/@</Begin>
  44.           </Span>
  45.           
  46.             <Span name = "BLOCKCOMMENT" rule = "TestSet" bold = "false" italic = "false" color = "LightGray" stopateol = "false">
  47.                 <Begin>/*</Begin>
  48.                 <End>*/</End>
  49.             </Span>
  50.               
  51.             <Span name = "STRING" bold = "false" italic = "false" color = "Magenta" stopateol = "true">
  52.                 <Begin>"</Begin>
  53.                 <End>"</End>
  54.             </Span>
  55.             
  56.             <Span name = "MORELINEDSTRING" bold = "false" italic = "false" color = "Magenta" stopateol = "false" noescapesequences="true">
  57.                 <Begin>@@"</Begin>
  58.                 <End>"</End>
  59.             </Span>
  60.             
  61.             <Span name = "CHAR" bold = "false" italic = "false" color = "Magenta" stopateol = "true">
  62.                 <Begin>'</Begin>
  63.                 <End>'</End>
  64.             </Span>
  65.             
  66.             <MarkPrevious bold = "true" italic = "false" color = "Yellow">(</MarkPrevious>
  67.             
  68.             <KeyWords name = "Punctuation" bold = "false" italic = "false" color = "LightCyan">
  69.                 <Key word = ";" />
  70.                 <Key word = "?" />
  71.                 <Key word = "," />
  72.                 <Key word = "." />
  73.                 <Key word = "(" />
  74.                 <Key word = ")" />
  75.                 <Key word = "[" />
  76.                 <Key word = "]" />
  77.                 <Key word = "{" />
  78.                 <Key word = "}" />
  79.                 <Key word = "+" />
  80.                 <Key word = "-" />
  81.                 <Key word = "/" />
  82.                 <Key word = "%" />
  83.                 <Key word = "*" />
  84.                 <Key word = "<" />
  85.                 <Key word = ">" />
  86.                 <Key word = "^" />
  87.                 <Key word = "!" />
  88.                 <Key word = "|" />
  89.                 <Key word = "&" />
  90.               </KeyWords>
  91.           
  92.             <KeyWords name = "AccessKeywords" bold="true" italic="false" color="Black">
  93.                 <Key word = "this" />
  94.                 <Key word = "base" />
  95.             </KeyWords>
  96.             
  97.             <KeyWords name = "OperatorKeywords" bold="true" italic="false" color="White">
  98.                 <Key word = "as" />
  99.                 <Key word = "is" />
  100.                 <Key word = "new" />
  101.                 <Key word = "sizeof" />
  102.                 <Key word = "typeof" />
  103.                 <Key word = "true" />
  104.                 <Key word = "false" />
  105.                 <Key word = "stackalloc" />
  106.             </KeyWords>
  107.           
  108.         
  109.             <KeyWords name = "SelectionStatements" bold="true" italic="false" color="White">
  110.                 <Key word = "else" />
  111.                 <Key word = "if" />
  112.                 <Key word = "switch" />
  113.                 <Key word = "case" />
  114.             </KeyWords>
  115.         
  116.             <KeyWords name = "IterationStatements" bold="true" italic="false" color="White">
  117.                 <Key word = "do" />
  118.                 <Key word = "for" />
  119.                 <Key word = "foreach" />
  120.                 <Key word = "in" />
  121.                 <Key word = "while" />
  122.             </KeyWords>
  123.         
  124.             <KeyWords name = "JumpStatements" bold="false" italic="false" color="White">
  125.                 <Key word = "break" />
  126.                 <Key word = "continue" />
  127.                 <Key word = "default" />
  128.                 <Key word = "goto" />
  129.                 <Key word = "return" />
  130.             </KeyWords>
  131.           
  132.             <KeyWords name = "ExceptionHandlingStatements" bold="true" italic="false" color="White">
  133.                 <Key word = "try" />
  134.                 <Key word = "throw" />
  135.                 <Key word = "catch" />
  136.                 <Key word = "finally" />
  137.             </KeyWords>
  138.           
  139.             <KeyWords name = "CheckedUncheckedStatements" bold="true" italic="false" color="White">
  140.                 <Key word = "checked" />
  141.                 <Key word = "unchecked" />
  142.             </KeyWords>
  143.         
  144.             <KeyWords name = "UnsafeFixedStatements" bold="false" italic="false" color="White">
  145.                 <Key word = "fixed" />
  146.                 <Key word = "unsafe" />
  147.             </KeyWords>
  148.           
  149.             <KeyWords name = "PreprocessorDirectives" bold="false" italic="false" color="Green">
  150.                 <Key word = "#if" />
  151.                 <Key word = "#else" />
  152.                 <Key word = "#elif" />
  153.                 <Key word = "#endif" />
  154.                 <Key word = "#define" />
  155.                 <Key word = "#undef" />
  156.                 <Key word = "#warning" />
  157.                 <Key word = "#error" />
  158.                 <Key word = "#line" />
  159.                 <Key word = "#region" />
  160.                 <Key word = "#endregion" />
  161.               </KeyWords>
  162.           
  163.             <KeyWords name = "ValueTypes" bold="true" italic="false" color="White">
  164.                 <Key word = "bool" />
  165.                 <Key word = "byte" />
  166.                 <Key word = "char" />
  167.                 <Key word = "decimal" />
  168.                 <Key word = "double" />
  169.                 <Key word = "enum" />
  170.                 <Key word = "float" />
  171.                 <Key word = "int" />
  172.                 <Key word = "long" />
  173.                 <Key word = "sbyte" />
  174.                 <Key word = "short" />
  175.                 <Key word = "struct" />
  176.                 <Key word = "uint" />
  177.                 <Key word = "ushort" />
  178.                 <Key word = "ulong" />
  179.               </KeyWords>
  180.           
  181.               <KeyWords name = "ReferenceTypes" bold="false" italic="false" color="White">
  182.                 <Key word = "class" />
  183.                 <Key word = "interface" />
  184.                 <Key word = "delegate" />
  185.                 <Key word = "object" />
  186.                 <Key word = "string" />
  187.               </KeyWords>
  188.           
  189.               <KeyWords name = "Void" bold="false" italic="false" color="White">
  190.                 <Key word = "void" />
  191.               </KeyWords>
  192.           
  193.               <KeyWords name = "ConversionKeyWords" bold="true" italic="false" color="White">
  194.                 <Key word = "explicit" />
  195.                 <Key word = "implicit" />
  196.                 <Key word = "operator" />
  197.               </KeyWords>
  198.           
  199.             <KeyWords name = "MethodParameters" bold="true" italic="false" color="White">
  200.                 <Key word = "params" />
  201.                 <Key word = "ref" />
  202.                 <Key word = "out" />
  203.               </KeyWords>
  204.           
  205.               <KeyWords name = "Modifiers" bold="false" italic="false" color="White">
  206.                 <Key word = "abstract" />
  207.                 <Key word = "const" />
  208.                 <Key word = "event" />
  209.                 <Key word = "extern" />
  210.                 <Key word = "override" />
  211.                 <Key word = "readonly" />
  212.                 <Key word = "sealed" />
  213.                 <Key word = "static" />
  214.                 <Key word = "virtual" />
  215.               </KeyWords>
  216.           
  217.               <KeyWords name = "AccessModifiers" bold="true" italic="false" color="White">
  218.                 <Key word = "public" />
  219.                 <Key word = "protected" />
  220.                 <Key word = "private" />
  221.                 <Key word = "internal" />
  222.               </KeyWords>
  223.           
  224.             <KeyWords name = "NameSpaces" bold="true" italic="false" color="White">
  225.                 <Key word = "namespace" />
  226.                 <Key word = "using" />
  227.             </KeyWords>
  228.           
  229.             <KeyWords name = "LockKeyWord" bold="false" italic="false" color="White">
  230.                 <Key word = "lock" />
  231.               </KeyWords>
  232.           
  233.             <KeyWords name = "GetSet" bold="false" italic="false" color="White">
  234.                 <Key word = "get" />
  235.                 <Key word = "set" />
  236.                 <Key word = "add" />
  237.                 <Key word = "remove" />
  238.             </KeyWords>
  239.           
  240.             <KeyWords name = "Literals" bold="true" italic="false" color="White">
  241.                 <Key word = "null" />
  242.                 <Key word = "value" />
  243.             </KeyWords>
  244.         </RuleSet>
  245.         
  246.         <RuleSet name = "TestSet" ignorecase = "true">
  247.              <Delimiters>~!@%^*()-+=|\#/{}[]:;"'<> , .?</Delimiters>
  248.             <KeyWords name = "ErrorWords" bold="true" italic="true" color="Red">
  249.                     <Key word = "TODO" />
  250.                     <Key word = "FIXME" />
  251.             </KeyWords>
  252.             <KeyWords name = "WarningWords" bold="true" italic="true" color="Yellow">
  253.                     <Key word = "HACK" />
  254.                     <Key word = "UNDONE" />
  255.             </KeyWords>
  256.               
  257.         </RuleSet>
  258.         
  259.         <RuleSet name = "DocumentSet" ignorecase = "false">
  260.               <Delimiters>~!@%^*()-+=|\#/{}[]:;"'<> , .?</Delimiters>
  261.             
  262.             <Span name = "XMLTAG" rule = "XMLDocuSet" bold = "false" italic = "true" color = "Gray" stopateol = "true">
  263.                 <Begin><</Begin>
  264.                 <End>></End>
  265.             </Span>
  266.             
  267.             <KeyWords name = "Testword" bold="true" italic="true" color="Red">
  268.                     <Key word = "TODO" />
  269.             </KeyWords>
  270.         </RuleSet>
  271.         
  272.         <RuleSet name = "XMLDocuSet" ignorecase = "false">
  273.               <Delimiters>~!@%^*()-+=|\#/{}[]:;"'<> , .?</Delimiters>
  274.               
  275.             <Span name = "STRING" bold = "true" italic = "true" color = "Silver" stopateol = "true">
  276.                 <Begin>"</Begin>
  277.                 <End>"</End>
  278.             </Span>
  279.              
  280.             
  281.             <KeyWords name = "Punctuation" bold = "true" italic = "true" color = "Gray">
  282.                 <Key word = "/" />
  283.                 <Key word = "|" />
  284.                 <Key word = "=" />
  285.               </KeyWords>
  286.               
  287.              <KeyWords name = "SpecialComment" bold="true" italic="true" color="Gray">
  288.                     <Key word = "c" />
  289.                     <Key word = "code" />
  290.                     <Key word = "example" />
  291.                     <Key word = "list" />
  292.                     <Key word = "para" />
  293.                     <Key word = "param" />
  294.                     <Key word = "paramref" />
  295.                     <Key word = "permission" />
  296.                     <Key word = "remarks" />
  297.                     <Key word = "returns" />
  298.                     <Key word = "see" />
  299.                     <Key word = "seealso" />
  300.                     <Key word = "summary" />
  301.                     <Key word = "value" />
  302.                     <Key word = "type" />
  303.                     <Key word = "name" />
  304.                     <Key word = "cref" />
  305.                     <Key word = "item" />
  306.                     <Key word = "term" />
  307.                     <Key word = "description" />
  308.                     <Key word = "listheader" />
  309.               </KeyWords>
  310.         </RuleSet>
  311.     </RuleSets>
  312.  
  313. </SyntaxDefinition>
  314.