~ubuntu-branches/ubuntu/raring/codeblocks/raring-proposed

« back to all changes in this revision

Viewing changes to src/sdk/resources/lexers/lexer_pascal.xml

  • Committer: Bazaar Package Importer
  • Author(s): Cosme Domínguez Díaz
  • Date: 2010-08-09 04:38:38 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100809043838-a59ygguym4eg0jgw
Tags: 10.05-0ubuntu1
* New upstream release. Closes (LP: #322350)
 - Switch to dpkg-source 3.0 (quilt) format
 - Remove unneeded README.source
 - Add debian/get-source-orig script that removes all
   Windows prebuilt binaries
* Bump Standards-Version to 3.9.1
 - Stop shipping *.la files
* debian/control
 - Add cdbs package as Build-Depend
 - Add libbz2-dev and zlib1g-dev packages as
   Build-Depends (needed by libhelp_plugin.so)
 - Remove dpatch package of Build-Depends
 - Add codeblocks-contrib-debug package
 - Split architecture-independent files of codeblocks
   package in codeblocks-common package
* debian/rules
 - Switch to CDBS rules system
 - Add parallel build support
 - Add a call to debian/get-source-orig script
 - Use lzma compression (saves 23,5 MB of free space)
* debian/patches
 - Refresh 01_codeblocks_plugin_path
 - Add 02_no_Makefiles_in_debian_dir to remove any link
   in codeblocks build system to deleted Makefiles of debian directory
 - Drop 02_ftbfs_gcc44 and 03_ftbfs_glib221 (merged in upstream)
* debian/watch
 - Update to use the new host (berlios.de)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!DOCTYPE CodeBlocks_lexer_properties>
 
3
<CodeBlocks_lexer_properties>
 
4
                <Lexer name="Pascal"
 
5
                                index="18"
 
6
                                filemasks="*.pas,*.inc">
 
7
                                <Style name="Default"
 
8
                                                index="0"
 
9
                                                fg="0,0,0"
 
10
                                                bg="255,255,255"
 
11
                                                bold="0"
 
12
                                                italics="0"
 
13
                                                underlined="0"/>
 
14
                <Style name="Number"
 
15
                                                index="3"
 
16
                                                fg="240,0,240"/>
 
17
                <Style mame="Preprocessor"
 
18
                        index = "9"
 
19
                        fg="0,160,0"/>
 
20
                <Style name ="Identifier"
 
21
                        index = "11"
 
22
                        fg = "0,0,0"/>
 
23
                <Style name = "Instruction word"
 
24
                        index = "5"
 
25
                        fg="0,0,160"
 
26
                        bold="1"/>
 
27
                <Style name = "Character"
 
28
                        index="7"
 
29
                        fg="0,0,255"/>
 
30
                <Style name = "Operator"
 
31
                        index="10"
 
32
                        fg="255,0,0"
 
33
                        bold="1"/>
 
34
                <Style name = "Regex"
 
35
                        index="14"
 
36
                        fg="0,0,0"
 
37
                        bold="1"/>
 
38
                <Style name = "Comment (normal)"
 
39
                        index="1,2"
 
40
                        fg="0,128,0"/>
 
41
                <Style name = "Comment (documentation)"
 
42
                        index="3"
 
43
                        fg="128,128,255"
 
44
                        bold="1"/>
 
45
                <Style name="Comment keyword (documentation)"
 
46
                                                index="17"
 
47
                                                fg="0,128,128"/>
 
48
                <Style name="Comment keyword error (documentation)"
 
49
                                                index="18"
 
50
                                                fg="128,0,0"/>
 
51
                                <Style name="Selection"
 
52
                                                index="-99"
 
53
                                                bg="192,192,192"/>
 
54
                                <Style name="Active line"
 
55
                                                index="-98"
 
56
                                                bg="255,255,160"/>
 
57
                                <Style name="Breakpoint line"
 
58
                                                index="-2"
 
59
                                                bg="255,160,160"/>
 
60
                                <Style name="Debugger active line"
 
61
                                                index="-3"
 
62
                                                bg="160,160,255"/>
 
63
                                <Style name="Compiler error line"
 
64
                                                index="-4"
 
65
                                                bg="255,128,0"/>
 
66
                                <Style name="Matching brace highlight"
 
67
                                                index="34"
 
68
                                                bg="128,255,255"
 
69
                                                bold="1"/>
 
70
                                <Style name="No matching brace highlight"
 
71
                                                index="35"
 
72
                                                fg="255,255,255"
 
73
                                                bg="255,0,0"
 
74
                                                bold="1"/>
 
75
                                <Keywords>
 
76
                        <!-- Primary keywords and identifiers -->
 
77
                        <Set index="0"
 
78
                        value = "and array asm begin case cdecl class const constructor
 
79
                                 default destructor div do downto else end end. except
 
80
                                 exit exports external far file finalization finally for
 
81
                                 function goto if implementation in index inherited
 
82
                                 initialization inline interface label library message
 
83
                                 mod near nil not object of on or out overload override
 
84
                                 packed pascal private procedure program property protected
 
85
                                 public published raise read record register repeat resourcestring
 
86
                                 safecall set shl shr stdcall stored string then threadvar to
 
87
                                 try type unit until uses var virtual while with write xor"/>
 
88
                                </Keywords>
 
89
                                <SampleCode value="lexer_pascal.sample"
 
90
                                                breakpoint_line="3"
 
91
                                                debug_line="6"
 
92
                                                error_line="7"/>
 
93
                <LanguageAttributes
 
94
                    LineComment="//"
 
95
                    StreamCommentStart="{"
 
96
                    StreamCommentEnd="}"
 
97
                    BoxCommentStart="(* "
 
98
                    BoxCommentMid=" * "
 
99
                    BoxCommentEnd=" *)"
 
100
                    CaseSensitive="0"/>
 
101
                </Lexer>
 
102
</CodeBlocks_lexer_properties>