mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-11 09:39:11 +02:00
added a README
git-svn-id: trunk@4866 -
This commit is contained in:
parent
0c7ffd188b
commit
a4bb6dff22
47
README
Normal file
47
README
Normal file
@ -0,0 +1,47 @@
|
||||
Welcome to Lazarus
|
||||
==================
|
||||
|
||||
Lazarus is a Rapid Application Development Tool for FreePascal.
|
||||
It comes with the LCL - Lazarus component library, which contains platform
|
||||
independent visual components like buttons, windows, checkbox, treeview and
|
||||
many, many more. The LCL is platform independent, so you can write an
|
||||
application once and then compile for various platforms without changing code.
|
||||
|
||||
FreePascal at www.freepascal.org is a fast object pascal compiler (and more),
|
||||
that runs on more than 20 platforms (linux, windows, BSD, OS/2, DOS, PowerPC,
|
||||
and many more).
|
||||
|
||||
The LCL currently supports linux (gtk, gnome and little bit gtk2) and windows.
|
||||
|
||||
|
||||
Installation:
|
||||
|
||||
See the file docs/INSTALL.
|
||||
|
||||
|
||||
Documentation:
|
||||
|
||||
The official site is www.lazarus.freepascal.org. There you can find the FAQ -
|
||||
the frequently asked questions.
|
||||
Documents about specific topics can be found at lazarus-ccr.sourceforge.net.
|
||||
Examples, how to use the LCL can be found in the 'examples' directory.
|
||||
Help, documents and files about FreePascal are at www.freepascal.org.
|
||||
|
||||
|
||||
Mailing list:
|
||||
|
||||
There is a very active and helpful mailing list for lazarus, where the
|
||||
developers interact, share ideas, discuss problems, and of course answer
|
||||
questions.
|
||||
To subscribe send an email with the subject "subscribe" to
|
||||
lazarus-request@miraclec.com
|
||||
|
||||
|
||||
How to help lazarus:
|
||||
|
||||
If you find bugs, don't hesitate to use the bug tracking tool at the website,
|
||||
or send an email to the list.
|
||||
Patches can be send as .zip or .tgz attachments directly to the mailing list.
|
||||
|
||||
|
||||
|
57
docs/INSTALL
57
docs/INSTALL
@ -7,8 +7,8 @@ Lazarus provides two main parts:
|
||||
|
||||
What is required for lazarus:
|
||||
- FreePascal - the FreePascal Compiler plus packages plus sources.
|
||||
- gtk libaries - Most distributions already install them. See www.gtk.org.
|
||||
You need gtk 1.x. The new gtk2 is not yet supported.
|
||||
- Under Linux/xxxBSD: gtk libaries - Most distributions already install them.
|
||||
See www.gtk.org. You need gtk 1.x. The new gtk2 is not yet supported.
|
||||
|
||||
|
||||
The FAQ - Frequently Asked Question is available at www.lazarus.freepascal.org
|
||||
@ -18,21 +18,50 @@ The FAQ - Frequently Asked Question is available at www.lazarus.freepascal.org
|
||||
The following will describe how to get FreePascal and how to install lazarus
|
||||
properly:
|
||||
|
||||
|
||||
================================================================================
|
||||
1. Installing FreePascal
|
||||
1. Quick installation guide
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
1.1 Installing FreePascal under Linux:
|
||||
1.1 This is the short version. For more details, see the following sections.
|
||||
|
||||
Lazarus is intended to be a development tool. Therefore it is designed, that
|
||||
any normal user can easily install his local copy. This means, lazarus does
|
||||
not need to be installed as root and it does not any sym links or config
|
||||
entries. You can literally just unpack it into a directory of your choice and
|
||||
compile it.
|
||||
|
||||
|
||||
1.2 Under Linux/BSD:
|
||||
|
||||
Make sure, that you have installed X, gtk1 and gtk1-devel.
|
||||
|
||||
Download and install FreePascal. Either the rpm, tgz or the daily snapshot.
|
||||
You need at least fpc 1.0.10 (1.0.x is the stable version of fpc, the 1.9 is
|
||||
the development version).
|
||||
|
||||
To compile lazarus (LCL + IDE) go to your unpacked lazarus source and do:
|
||||
[]$ make clean all
|
||||
|
||||
You don't need "./configure" and you don't need "make install". You now have
|
||||
already a complete lazarus. You can start the IDE with "./lazarus".
|
||||
The "make install" as root will just copy the files and set some nice sym
|
||||
links and desktop entries.
|
||||
|
||||
================================================================================
|
||||
2. Installing FreePascal
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
2.1 Installing FreePascal under Linux:
|
||||
|
||||
Lazarus requires a fpc (FreePascal) version 1.0.10 and it requires both - the
|
||||
compiled fpc libs (binaries) and the fpc sources. The fpc 1.0.6 is too buggy.
|
||||
|
||||
The fpc binaries:
|
||||
At the lazarus downloads section (www.lazarus.freepascal.org) you can get the
|
||||
rpm/deb of the freepascal compiler (compiler / linux) and its packages. Or if
|
||||
you don't have a rpm system, you can download and install the tars from the
|
||||
www.freepascal.org.
|
||||
At the lazarus downloads section (www.lazarus.freepascal.org
|
||||
or http://sourceforge.net/project/showfiles.php?group_id=89339) you can get
|
||||
the rpm/deb of the freepascal compiler(compiler / linux) and its packages.
|
||||
Or if you don't have a rpm system, you can download and install the tars from
|
||||
the www.freepascal.org.
|
||||
If you want to compile the binaries for yourself see the BSD section.
|
||||
|
||||
The fpc sources:
|
||||
@ -67,7 +96,7 @@ properly:
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
1.2 Installing FreePascal under Windows:
|
||||
2.2 Installing FreePascal under Windows:
|
||||
|
||||
ToDo: Write me.
|
||||
|
||||
@ -82,7 +111,7 @@ properly:
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
1.3 Installing FreePascal under BSD/manually:
|
||||
2.3 Installing FreePascal under BSD/manually:
|
||||
|
||||
Effectively, you need:
|
||||
|
||||
@ -138,10 +167,10 @@ properly:
|
||||
|
||||
|
||||
================================================================================
|
||||
2. Installing Lazarus
|
||||
3. Installing Lazarus
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
2.1 Installing Lazarus under Linux/BSD:
|
||||
3.1 Installing Lazarus under Linux/BSD:
|
||||
|
||||
You can either install the rpms for lazarus, or follow these instructions.
|
||||
Because the whole lazarus stuff is installed into one directory, uninstall
|
||||
@ -211,7 +240,7 @@ properly:
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
2.1 Installing Lazarus under Windows:
|
||||
3.1 Installing Lazarus under Windows:
|
||||
|
||||
Under windows the IDE does not run well. So don't expect too much.
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* XPM */
|
||||
static char * tbitbtn_xpm[] = {
|
||||
"19 11 37 1",
|
||||
"19 11 36 1",
|
||||
" c None",
|
||||
". c #F8F8F8",
|
||||
"+ c #FFFFFF",
|
||||
@ -37,7 +37,6 @@ static char * tbitbtn_xpm[] = {
|
||||
"5 c #898989",
|
||||
"6 c #020202",
|
||||
"7 c #050505",
|
||||
"8 c #C3C3C3",
|
||||
".+@++#++++++++++$+%",
|
||||
"+&&&&&&&&&&&*=*-*;>",
|
||||
",&&&&''&&))-&)!)*;>",
|
||||
@ -48,4 +47,4 @@ static char * tbitbtn_xpm[] = {
|
||||
",&''/&&&&))(&)!)*;>",
|
||||
"+&&&&&&&&&&&&&&&&;>",
|
||||
"_:<[}|122222222345>",
|
||||
">6>7>)>>>>>>>>>>6>8"};
|
||||
">6>7>)>>>>>>>>>>6> "};
|
||||
|
@ -61,4 +61,4 @@ static char * tbutton_xpm[] = {
|
||||
"{]>^/;(6/7|*~1:&;!~",
|
||||
"+&*=-&;*]8<^90)&;!~",
|
||||
"abcdefghhhhhhhhijk~",
|
||||
"~2~|~(~~~~~~~~~~2~4"};
|
||||
"~2~|~(~~~~~~~~~~2~ "};
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* XPM */
|
||||
static char * tcolorbutton_xpm[] = {
|
||||
"19 11 43 1",
|
||||
"19 11 42 1",
|
||||
" c None",
|
||||
". c #F8F8F8",
|
||||
"+ c #FFFFFF",
|
||||
@ -23,11 +23,11 @@ static char * tcolorbutton_xpm[] = {
|
||||
"] c #C8C8C8",
|
||||
"^ c #C6C6C6",
|
||||
"/ c #C4C4C4",
|
||||
"( c #C0C0C0",
|
||||
"_ c #FF0000",
|
||||
": c #FFFF00",
|
||||
"< c #0000FF",
|
||||
"[ c #B9B9B9",
|
||||
"( c #FF0000",
|
||||
"_ c #FFFF00",
|
||||
": c #0000FF",
|
||||
"< c #B9B9B9",
|
||||
"[ c #C0C0C0",
|
||||
"} c #848484",
|
||||
"| c #FEFEFE",
|
||||
"1 c #7C7C7C",
|
||||
@ -43,15 +43,14 @@ static char * tcolorbutton_xpm[] = {
|
||||
"a c #020202",
|
||||
"b c #050505",
|
||||
"c c #010101",
|
||||
"d c #C3C3C3",
|
||||
".+@++#++++++++++$+%",
|
||||
"+&*=-&; ;>,';);&;!~",
|
||||
"+&*=-&;&;>,';);&;!~",
|
||||
"{]>^~~~~~~~~~~/&;!~",
|
||||
"+* (~__~::~<<~[&;!~",
|
||||
".;-,~__~::~<<~(&;!~",
|
||||
".;-,~~~~~~~~~~>&;!~",
|
||||
"+* (~}}~++~~~~(&;!~",
|
||||
"+*]>~((~__~::~<&;!~",
|
||||
".;&*~((~__~::~[&;!~",
|
||||
".;]>~~~~~~~~~~>&;!~",
|
||||
"+*&*~}}~++~~~~[&;!~",
|
||||
"{]>^~}}~++~~~~/&;!~",
|
||||
"+&*=~~~~~~~~~~)&;!~",
|
||||
"|12345677777777890~",
|
||||
"~a~b~c~~~~~~~~~~a~d"};
|
||||
"~a~b~c~~~~~~~~~~a~ "};
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* XPM */
|
||||
static char * tmenu_xpm[] = {
|
||||
"22 21 188 2",
|
||||
static char * tmainmenu_xpm[] = {
|
||||
"22 21 185 2",
|
||||
" c None",
|
||||
". c #837F96",
|
||||
"+ c #817E9D",
|
||||
@ -110,85 +110,82 @@ static char * tmenu_xpm[] = {
|
||||
"'. c #FAFFF9",
|
||||
"). c #FCFFF4",
|
||||
"!. c #000300",
|
||||
"~. c #BEC0B5",
|
||||
"{. c #83868D",
|
||||
"]. c #FBFCFF",
|
||||
"^. c #F5F5FF",
|
||||
"/. c #F7F5FF",
|
||||
"(. c #F5F6FF",
|
||||
"_. c #F4F6FF",
|
||||
":. c #F9FCFF",
|
||||
"<. c #FCFFFF",
|
||||
"[. c #777A83",
|
||||
"}. c #F8F9FF",
|
||||
"|. c #0A0A3E",
|
||||
"1. c #0B0948",
|
||||
"2. c #0B0B47",
|
||||
"3. c #0A0C3F",
|
||||
"4. c #F9FBFF",
|
||||
"5. c #F2F5FE",
|
||||
"6. c #FCFFFD",
|
||||
"7. c #020500",
|
||||
"8. c #787B84",
|
||||
"9. c #EDEBFF",
|
||||
"0. c #F6F4FF",
|
||||
"a. c #F0F2FF",
|
||||
"b. c #000100",
|
||||
"c. c #747780",
|
||||
"d. c #F6F7FF",
|
||||
"e. c #020032",
|
||||
"f. c #100E4D",
|
||||
"g. c #070544",
|
||||
"h. c #13124C",
|
||||
"i. c #100E3D",
|
||||
"j. c #040509",
|
||||
"k. c #C0C1BC",
|
||||
"l. c #888B94",
|
||||
"m. c #FBF9FF",
|
||||
"n. c #FBF7FF",
|
||||
"o. c #F9F7FF",
|
||||
"p. c #EEEDFF",
|
||||
"q. c #F9FAFF",
|
||||
"r. c #000007",
|
||||
"s. c #80838C",
|
||||
"t. c #0C0C26",
|
||||
"u. c #01002C",
|
||||
"v. c #0A073E",
|
||||
"w. c #0E0A45",
|
||||
"x. c #120F46",
|
||||
"y. c #070431",
|
||||
"z. c #19183A",
|
||||
"A. c #0F0D25",
|
||||
"B. c #050412",
|
||||
"C. c #0E0D15",
|
||||
"D. c #71747D",
|
||||
"E. c #FBFAFF",
|
||||
"F. c #FAF8FF",
|
||||
"G. c #F5F4FF",
|
||||
"H. c #84878E",
|
||||
"I. c #0D0B30",
|
||||
"J. c #07042F",
|
||||
"K. c #0C0934",
|
||||
"L. c #0F0D34",
|
||||
"M. c #FDFAFF",
|
||||
"N. c #030007",
|
||||
"O. c #818286",
|
||||
"P. c #FCFBFF",
|
||||
"Q. c #F4F4FF",
|
||||
"R. c #F4F2FF",
|
||||
"S. c #FFFEFF",
|
||||
"T. c #020005",
|
||||
"U. c #7B7C7E",
|
||||
"V. c #070711",
|
||||
"W. c #000015",
|
||||
"X. c #000019",
|
||||
"Y. c #08061B",
|
||||
"Z. c #050414",
|
||||
"`. c #00000C",
|
||||
" + c #05040C",
|
||||
".+ c #07060B",
|
||||
"++ c #010000",
|
||||
"@+ c #C2C1BF",
|
||||
"~. c #83868D",
|
||||
"{. c #FBFCFF",
|
||||
"]. c #F5F5FF",
|
||||
"^. c #F7F5FF",
|
||||
"/. c #F5F6FF",
|
||||
"(. c #F4F6FF",
|
||||
"_. c #F9FCFF",
|
||||
":. c #FCFFFF",
|
||||
"<. c #777A83",
|
||||
"[. c #F8F9FF",
|
||||
"}. c #0A0A3E",
|
||||
"|. c #0B0948",
|
||||
"1. c #0B0B47",
|
||||
"2. c #0A0C3F",
|
||||
"3. c #F9FBFF",
|
||||
"4. c #F2F5FE",
|
||||
"5. c #FCFFFD",
|
||||
"6. c #020500",
|
||||
"7. c #787B84",
|
||||
"8. c #EDEBFF",
|
||||
"9. c #F6F4FF",
|
||||
"0. c #F0F2FF",
|
||||
"a. c #000100",
|
||||
"b. c #747780",
|
||||
"c. c #F6F7FF",
|
||||
"d. c #020032",
|
||||
"e. c #100E4D",
|
||||
"f. c #070544",
|
||||
"g. c #13124C",
|
||||
"h. c #100E3D",
|
||||
"i. c #040509",
|
||||
"j. c #888B94",
|
||||
"k. c #FBF9FF",
|
||||
"l. c #FBF7FF",
|
||||
"m. c #F9F7FF",
|
||||
"n. c #EEEDFF",
|
||||
"o. c #F9FAFF",
|
||||
"p. c #000007",
|
||||
"q. c #80838C",
|
||||
"r. c #0C0C26",
|
||||
"s. c #01002C",
|
||||
"t. c #0A073E",
|
||||
"u. c #0E0A45",
|
||||
"v. c #120F46",
|
||||
"w. c #070431",
|
||||
"x. c #19183A",
|
||||
"y. c #0F0D25",
|
||||
"z. c #050412",
|
||||
"A. c #0E0D15",
|
||||
"B. c #71747D",
|
||||
"C. c #FBFAFF",
|
||||
"D. c #FAF8FF",
|
||||
"E. c #F5F4FF",
|
||||
"F. c #84878E",
|
||||
"G. c #0D0B30",
|
||||
"H. c #07042F",
|
||||
"I. c #0C0934",
|
||||
"J. c #0F0D34",
|
||||
"K. c #FDFAFF",
|
||||
"L. c #030007",
|
||||
"M. c #818286",
|
||||
"N. c #FCFBFF",
|
||||
"O. c #F4F4FF",
|
||||
"P. c #F4F2FF",
|
||||
"Q. c #FFFEFF",
|
||||
"R. c #020005",
|
||||
"S. c #7B7C7E",
|
||||
"T. c #070711",
|
||||
"U. c #000015",
|
||||
"V. c #000019",
|
||||
"W. c #08061B",
|
||||
"X. c #050414",
|
||||
"Y. c #00000C",
|
||||
"Z. c #05040C",
|
||||
"`. c #07060B",
|
||||
" + c #010000",
|
||||
" . + @ # $ % & * = - ; > , ' ) ! ~ { ] ^ ",
|
||||
" / ( _ : < [ } | 1 2 3 4 5 6 7 5 8 9 0 a ",
|
||||
" b ( c d e f g h i j k l m n o p q r s t ",
|
||||
@ -196,17 +193,17 @@ static char * tmenu_xpm[] = {
|
||||
" G H I J K L M N O P Q R S T U V W X ",
|
||||
" Y Z 2 ` 3 ...+.@.#.$. ",
|
||||
" %.&.*.=.-.;.>.,.'.).!. ",
|
||||
"~. {.].^./.(._.:...<.+.S ",
|
||||
" [.}.|.1.2.3.4...5.6.7. ",
|
||||
" 8.].6 9.0.}.a.].Z .b. ",
|
||||
" c.d.e.f.g.h.i.7 3 <.j. ",
|
||||
"k. l.].m.n.o.p./.6 q.4 r. ",
|
||||
" s.t.u.v.w.x.y.z.A.B.C. ",
|
||||
" D.2 E.F.o.o.1 G.r 4 r. ",
|
||||
" H.3 I.J.K.L.( D M.1 N. ",
|
||||
" O._.P.1 P.Q./.r R.S.T. ",
|
||||
" U.V.W.X.W.Y.Z.`. +.+++ ",
|
||||
" ~.{.].^./.(._...:.+.S ",
|
||||
" <.[.}.|.1.2.3...4.5.6. ",
|
||||
" 7.{.6 8.9.[.0.{.Z .a. ",
|
||||
" b.c.d.e.f.g.h.7 3 :.i. ",
|
||||
" j.{.k.l.m.n.^.6 o.4 p. ",
|
||||
" q.r.s.t.u.v.w.x.y.z.A. ",
|
||||
" B.2 C.D.m.m.1 E.r 4 p. ",
|
||||
" F.3 G.H.I.J.( D K.1 L. ",
|
||||
" M.(.N.1 N.O.^.r P.Q.R. ",
|
||||
" S.T.U.V.U.W.X.Y.Z.`. + ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
"@+ "};
|
||||
" "};
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* XPM */
|
||||
static char * tnotebook_xpm[] = {
|
||||
"19 14 26 1",
|
||||
"19 14 25 1",
|
||||
" c None",
|
||||
". c #FFFFFF",
|
||||
"+ c #080808",
|
||||
@ -26,7 +26,6 @@ static char * tnotebook_xpm[] = {
|
||||
"( c #020202",
|
||||
"_ c #050505",
|
||||
": c #010101",
|
||||
"< c #C3C3C3",
|
||||
" .....+@@@@@@@@@@ ",
|
||||
" .####+####@####@ ",
|
||||
" .####+####@####@ ",
|
||||
@ -40,4 +39,4 @@ static char * tnotebook_xpm[] = {
|
||||
"*################=@",
|
||||
".################=@",
|
||||
";>,')!~{{{{{{{{]^/@",
|
||||
"@(@_@:@@@@@@@@@@(@<"};
|
||||
"@(@_@:@@@@@@@@@@(@ "};
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* XPM */
|
||||
static char * tpagecontrol_xpm[] = {
|
||||
"19 14 29 1",
|
||||
"19 14 28 1",
|
||||
" c None",
|
||||
". c #FFFFFF",
|
||||
"+ c #080808",
|
||||
@ -29,7 +29,6 @@ static char * tpagecontrol_xpm[] = {
|
||||
"< c #020202",
|
||||
"[ c #050505",
|
||||
"} c #010101",
|
||||
"| c #C3C3C3",
|
||||
" ....+@@@@@@@@ ",
|
||||
" .###+###@###@ ",
|
||||
" .###+###@###@ ",
|
||||
@ -43,4 +42,4 @@ static char * tpagecontrol_xpm[] = {
|
||||
";################-@",
|
||||
".################-@",
|
||||
"')!~{]^////////(_:@",
|
||||
"@<@[@}@@@@@@@@@@<@|"};
|
||||
"@<@[@}@@@@@@@@@@<@ "};
|
||||
|
@ -87,7 +87,7 @@ LazarusResources.Add('tbevel','XPM',[
|
||||
+'@@"};'#10
|
||||
]);
|
||||
LazarusResources.Add('tbitbtn','XPM',[
|
||||
'/* XPM */'#10'static char * tbitbtn_xpm[] = {'#10'"19 11 37 1",'#10'" '#9'c '
|
||||
'/* XPM */'#10'static char * tbitbtn_xpm[] = {'#10'"19 11 36 1",'#10'" '#9'c '
|
||||
+'None",'#10'".'#9'c #F8F8F8",'#10'"+'#9'c #FFFFFF",'#10'"@'#9'c #EFEFEF",'#10
|
||||
+'"#'#9'c #F0F0F0",'#10'"$'#9'c #FCFCFC",'#10'"%'#9'c #030303",'#10'"&'#9'c #'
|
||||
+'BEBEBE",'#10'"*'#9'c #BFBFBF",'#10'"='#9'c #BABABA",'#10'"-'#9'c #C1C1C1",'
|
||||
@ -98,11 +98,11 @@ LazarusResources.Add('tbitbtn','XPM',[
|
||||
+'7C",'#10'"<'#9'c #8B8B8B",'#10'"['#9'c #767676",'#10'"}'#9'c #828282",'#10
|
||||
+'"|'#9'c #878787",'#10'"1'#9'c #7A7A7A",'#10'"2'#9'c #7F7F7F",'#10'"3'#9'c #'
|
||||
+'888888",'#10'"4'#9'c #7D7D7D",'#10'"5'#9'c #898989",'#10'"6'#9'c #020202",'
|
||||
+#10'"7'#9'c #050505",'#10'"8'#9'c #C3C3C3",'#10'".+@++#++++++++++$+%",'#10'"'
|
||||
+'+&&&&&&&&&&&*=*-*;>",'#10'",&&&&''''&&))-&)!)*;>",'#10'"+&&&&''*&~&&)&){)*;'
|
||||
+'>",'#10'".&&&''''&&>&&)&))-*;>",'#10'".''&]''&&&%&&)&)&)*;>",'#10'"+'''''''
|
||||
+'''&&&>{&)&)^)*;>",'#10'",&''''/&&&&))(&)!)*;>",'#10'"+&&&&&&&&&&&&&&&&;>",'
|
||||
+#10'"_:<[}|122222222345>",'#10'">6>7>)>>>>>>>>>>6>8"};'#10
|
||||
+#10'"7'#9'c #050505",'#10'".+@++#++++++++++$+%",'#10'"+&&&&&&&&&&&*=*-*;>",'
|
||||
+#10'",&&&&''''&&))-&)!)*;>",'#10'"+&&&&''*&~&&)&){)*;>",'#10'".&&&''''&&>&&)'
|
||||
+'&))-*;>",'#10'".''&]''&&&%&&)&)&)*;>",'#10'"+''''''''&&&>{&)&)^)*;>",'#10'"'
|
||||
+',&''''/&&&&))(&)!)*;>",'#10'"+&&&&&&&&&&&&&&&&;>",'#10'"_:<[}|122222222345>'
|
||||
+'",'#10'">6>7>)>>>>>>>>>>6> "};'#10
|
||||
]);
|
||||
LazarusResources.Add('tbutton','XPM',[
|
||||
'/* XPM */'#10'static char * tbutton_xpm[] = {'#10'"19 11 50 1",'#10'" '#9'c '
|
||||
@ -124,7 +124,7 @@ LazarusResources.Add('tbutton','XPM',[
|
||||
+'&;!~",'#10'"{]>^/;(~&-~&~_:&;!~",'#10'"+*&<=~;<[>}/|=1&;!~",'#10'".;-,&2<&~'
|
||||
+';2~-:<&;!~",'#10'".;-,&2<;%3~]~->&;!~",'#10'"+*&<=~;4~1~<5=<&;!~",'#10'"{]>'
|
||||
+'^/;(6/7|*~1:&;!~",'#10'"+&*=-&;*]8<^90)&;!~",'#10'"abcdefghhhhhhhhijk~",'#10
|
||||
+'"~2~|~(~~~~~~~~~~2~4"};'#10
|
||||
+'"~2~|~(~~~~~~~~~~2~ "};'#10
|
||||
]);
|
||||
LazarusResources.Add('tcalendar','XPM',[
|
||||
'/* XPM */'#10'static char *tcalendar[]={'#10'"20 19 53 1",'#10'"k c #000000"'
|
||||
@ -270,24 +270,24 @@ LazarusResources.Add('tchecklistbox','XPM',[
|
||||
+'1.f+g+h+1.i+j+k+l+e+! m+! ''+n+o+o+n+"};'#10
|
||||
]);
|
||||
LazarusResources.Add('tcolorbutton','XPM',[
|
||||
'/* XPM */'#10'static char * tcolorbutton_xpm[] = {'#10'"19 11 43 1",'#10'" '
|
||||
'/* XPM */'#10'static char * tcolorbutton_xpm[] = {'#10'"19 11 42 1",'#10'" '
|
||||
+#9'c None",'#10'".'#9'c #F8F8F8",'#10'"+'#9'c #FFFFFF",'#10'"@'#9'c #EFEFEF"'
|
||||
+','#10'"#'#9'c #F0F0F0",'#10'"$'#9'c #FCFCFC",'#10'"%'#9'c #030303",'#10'"&'
|
||||
+#9'c #C1C1C1",'#10'"*'#9'c #BCBCBC",'#10'"='#9'c #BDBDBD",'#10'"-'#9'c #C5C5'
|
||||
+'C5",'#10'";'#9'c #BFBFBF",'#10'">'#9'c #BEBEBE",'#10'",'#9'c #BBBBBB",'#10
|
||||
+'"'''#9'c #CCCCCC",'#10'")'#9'c #BABABA",'#10'"!'#9'c #808080",'#10'"~'#9'c '
|
||||
+'#000000",'#10'"{'#9'c #F4F4F4",'#10'"]'#9'c #C8C8C8",'#10'"^'#9'c #C6C6C6",'
|
||||
+#10'"/'#9'c #C4C4C4",'#10'"('#9'c #C0C0C0",'#10'"_'#9'c #FF0000",'#10'":'#9
|
||||
+'c #FFFF00",'#10'"<'#9'c #0000FF",'#10'"['#9'c #B9B9B9",'#10'"}'#9'c #848484'
|
||||
+#10'"/'#9'c #C4C4C4",'#10'"('#9'c #FF0000",'#10'"_'#9'c #FFFF00",'#10'":'#9
|
||||
+'c #0000FF",'#10'"<'#9'c #B9B9B9",'#10'"['#9'c #C0C0C0",'#10'"}'#9'c #848484'
|
||||
+'",'#10'"|'#9'c #FEFEFE",'#10'"1'#9'c #7C7C7C",'#10'"2'#9'c #8B8B8B",'#10'"3'
|
||||
+#9'c #767676",'#10'"4'#9'c #828282",'#10'"5'#9'c #878787",'#10'"6'#9'c #7A7A'
|
||||
+'7A",'#10'"7'#9'c #7F7F7F",'#10'"8'#9'c #888888",'#10'"9'#9'c #7D7D7D",'#10
|
||||
+'"0'#9'c #898989",'#10'"a'#9'c #020202",'#10'"b'#9'c #050505",'#10'"c'#9'c #'
|
||||
+'010101",'#10'"d'#9'c #C3C3C3",'#10'".+@++#++++++++++$+%",'#10'"+&*=-&; ;>,'
|
||||
+''';);&;!~",'#10'"{]>^~~~~~~~~~~/&;!~",'#10'"+* (~__~::~<<~[&;!~",'#10'".;-,'
|
||||
+'~__~::~<<~(&;!~",'#10'".;-,~~~~~~~~~~>&;!~",'#10'"+* (~}}~++~~~~(&;!~",'#10
|
||||
+'"{]>^~}}~++~~~~/&;!~",'#10'"+&*=~~~~~~~~~~)&;!~",'#10'"|12345677777777890~"'
|
||||
+','#10'"~a~b~c~~~~~~~~~~a~d"};'#10
|
||||
+'010101",'#10'".+@++#++++++++++$+%",'#10'"+&*=-&;&;>,'';);&;!~",'#10'"{]>^~~'
|
||||
+'~~~~~~~~/&;!~",'#10'"+*]>~((~__~::~<&;!~",'#10'".;&*~((~__~::~[&;!~",'#10'"'
|
||||
+'.;]>~~~~~~~~~~>&;!~",'#10'"+*&*~}}~++~~~~[&;!~",'#10'"{]>^~}}~++~~~~/&;!~",'
|
||||
+#10'"+&*=~~~~~~~~~~)&;!~",'#10'"|12345677777777890~",'#10'"~a~b~c~~~~~~~~~~a'
|
||||
+'~ "};'#10
|
||||
]);
|
||||
LazarusResources.Add('tcolordialog','XPM',[
|
||||
'/* XPM */'#10'static char * tcolordialog_xpm[] = {'#10'"22 20 12 1",'#10'" '
|
||||
@ -914,8 +914,8 @@ LazarusResources.Add('tdbnavigator','XPM',[
|
||||
+')+=5678*4'')",'#10'" #@119_0a'')#@7bc7da'')",'#10'" #@efg1ha'')#@ijk>la'
|
||||
+''')",'#10'" #@m!n|oa'')#@p~m:da'')",'#10'" #@;qr.sa'')#@tu:v;a'')",'#10
|
||||
+'" +=*4wxy4'')+=z:~=*4'')",'#10'" {]^/ABC/''){]CjA]^/'')",'#10'" +*=-;'
|
||||
+'*@='')+*=-;*@='')",'#10'" DEFG.nHI})DEFG.nHI})",'#10'" )J)K)L)))2)J)K)L'
|
||||
+')))2"};'#10
|
||||
+'*@='')+*=-;*@='')",'#10'" DEFG.nHI})DEFG.nHI})",'#10'" )J)K)L))) )J)K)L'
|
||||
+'))) "};'#10
|
||||
]);
|
||||
LazarusResources.Add('tdbradiogroup','XPM',[
|
||||
'/* XPM */'#10'static char * tdbradiogroup_xpm[] = {'#10'"23 23 9 1",'#10'" '
|
||||
@ -1274,79 +1274,78 @@ LazarusResources.Add('tlistview','XPM',[
|
||||
+'@@@@@@@@@@@@@@@@@"};'#10
|
||||
]);
|
||||
LazarusResources.Add('tmainmenu','XPM',[
|
||||
'/* XPM */'#10'static char * tmenu_xpm[] = {'#10'"22 21 188 2",'#10'" '#9'c '
|
||||
+'None",'#10'". '#9'c #837F96",'#10'"+ '#9'c #817E9D",'#10'"@ '#9'c #77729A",'
|
||||
+#10'"# '#9'c #8C86B4",'#10'"$ '#9'c #817BAB",'#10'"% '#9'c #726F9A",'#10'"& '
|
||||
+#9'c #7E7CA1",'#10'"* '#9'c #8585A1",'#10'"= '#9'c #747589",'#10'"- '#9'c #8'
|
||||
+'1838F",'#10'"; '#9'c #73767B",'#10'"> '#9'c #828387",'#10'", '#9'c #757678"'
|
||||
+','#10'"'' '#9'c #848587",'#10'") '#9'c #858688",'#10'"! '#9'c #7F8180",'#10
|
||||
+'"~ '#9'c #7B7D7A",'#10'"{ '#9'c #7A7B73",'#10'"] '#9'c #898B7D",'#10'"^ '#9
|
||||
+'c #828572",'#10'"/ '#9'c #7B7792",'#10'"( '#9'c #FEFAFF",'#10'"_ '#9'c #0A0'
|
||||
+'432",'#10'": '#9'c #070036",'#10'"< '#9'c #100843",'#10'"[ '#9'c #0D0743",'
|
||||
+#10'"} '#9'c #0D0842",'#10'"| '#9'c #F8F5FF",'#10'"1 '#9'c #FCFAFF",'#10'"2 '
|
||||
+#9'c #FCFCFF",'#10'"3 '#9'c #FCFDFF",'#10'"4 '#9'c #FEFDFF",'#10'"5 '#9'c #F'
|
||||
+'EFEFF",'#10'"6 '#9'c #F9F9FF",'#10'"7 '#9'c #F8F8FF",'#10'"8 '#9'c #FEFFFF"'
|
||||
+','#10'"9 '#9'c #F8F8F8",'#10'"0 '#9'c #FFFFFA",'#10'"a '#9'c #76786B",'#10
|
||||
+'"b '#9'c #8B879E",'#10'"c '#9'c #130E37",'#10'"d '#9'c #FEF7FF",'#10'"e '#9
|
||||
+'c #FDF5FF",'#10'"f '#9'c #F9F1FF",'#10'"g '#9'c #0F0750",'#10'"h '#9'c #FCF'
|
||||
+'6FF",'#10'"i '#9'c #080437",'#10'"j '#9'c #09072E",'#10'"k '#9'c #0E0D2D",'
|
||||
+#10'"l '#9'c #EFEFFF",'#10'"m '#9'c #FAFAFF",'#10'"n '#9'c #14112E",'#10'"o '
|
||||
+#9'c #090625",'#10'"p '#9'c #100D2A",'#10'"q '#9'c #FAF7FF",'#10'"r '#9'c #F'
|
||||
+'EFCFF",'#10'"s '#9'c #797985",'#10'"t '#9'c #000005",'#10'"u '#9'c #7E7C8A"'
|
||||
+','#10'"v '#9'c #060223",'#10'"w '#9'c #18133B",'#10'"x '#9'c #040030",'#10
|
||||
+'"y '#9'c #140E4C",'#10'"z '#9'c #03003B",'#10'"A '#9'c #F7F3FF",'#10'"B '#9
|
||||
+'c #FAFBFF",'#10'"C '#9'c #F5F2FF",'#10'"D '#9'c #FEFBFF",'#10'"E '#9'c #F9F'
|
||||
+'6FF",'#10'"F '#9'c #858496",'#10'"G '#9'c #828284",'#10'"H '#9'c #7F7F89",'
|
||||
+#10'"I '#9'c #7C7B8B",'#10'"J '#9'c #7D7B91",'#10'"K '#9'c #8986A1",'#10'"L '
|
||||
+#9'c #72728C",'#10'"M '#9'c #8C8DA2",'#10'"N '#9'c #7D7F8B",'#10'"O '#9'c #7'
|
||||
+'D8184",'#10'"P '#9'c #878C85",'#10'"Q '#9'c #767C72",'#10'"R '#9'c #7E847A"'
|
||||
+','#10'"S '#9'c #000200",'#10'"T '#9'c #08090D",'#10'"U '#9'c #000009",'#10
|
||||
+'"V '#9'c #00000D",'#10'"W '#9'c #00000E",'#10'"X '#9'c #00000B",'#10'"Y '#9
|
||||
+'c #85868A",'#10'"Z '#9'c #FCFEFF",'#10'"` '#9'c #F7F7FF",'#10'" .'#9'c #F9F'
|
||||
+'DFF",'#10'"..'#9'c #F9FEFF",'#10'"+.'#9'c #FCFFFA",'#10'"@.'#9'c #F9FFEE",'
|
||||
+#10'"#.'#9'c #FBFFEC",'#10'"$.'#9'c #000800",'#10'"%.'#9'c #797C81",'#10'"&.'
|
||||
+#9'c #F3F5FF",'#10'"*.'#9'c #11103A",'#10'"=.'#9'c #0A0A3C",'#10'"-.'#9'c #0'
|
||||
+'A0B37",'#10'";.'#9'c #0D1031",'#10'">.'#9'c #070C22",'#10'",.'#9'c #FAFEFF"'
|
||||
+','#10'"''.'#9'c #FAFFF9",'#10'").'#9'c #FCFFF4",'#10'"!.'#9'c #000300",'#10
|
||||
+'"~.'#9'c #BEC0B5",'#10'"{.'#9'c #83868D",'#10'"].'#9'c #FBFCFF",'#10'"^.'#9
|
||||
+'c #F5F5FF",'#10'"/.'#9'c #F7F5FF",'#10'"(.'#9'c #F5F6FF",'#10'"_.'#9'c #F4F'
|
||||
+'6FF",'#10'":.'#9'c #F9FCFF",'#10'"<.'#9'c #FCFFFF",'#10'"[.'#9'c #777A83",'
|
||||
+#10'"}.'#9'c #F8F9FF",'#10'"|.'#9'c #0A0A3E",'#10'"1.'#9'c #0B0948",'#10'"2.'
|
||||
+#9'c #0B0B47",'#10'"3.'#9'c #0A0C3F",'#10'"4.'#9'c #F9FBFF",'#10'"5.'#9'c #F'
|
||||
+'2F5FE",'#10'"6.'#9'c #FCFFFD",'#10'"7.'#9'c #020500",'#10'"8.'#9'c #787B84"'
|
||||
+','#10'"9.'#9'c #EDEBFF",'#10'"0.'#9'c #F6F4FF",'#10'"a.'#9'c #F0F2FF",'#10
|
||||
+'"b.'#9'c #000100",'#10'"c.'#9'c #747780",'#10'"d.'#9'c #F6F7FF",'#10'"e.'#9
|
||||
+'c #020032",'#10'"f.'#9'c #100E4D",'#10'"g.'#9'c #070544",'#10'"h.'#9'c #131'
|
||||
+'24C",'#10'"i.'#9'c #100E3D",'#10'"j.'#9'c #040509",'#10'"k.'#9'c #C0C1BC",'
|
||||
+#10'"l.'#9'c #888B94",'#10'"m.'#9'c #FBF9FF",'#10'"n.'#9'c #FBF7FF",'#10'"o.'
|
||||
+#9'c #F9F7FF",'#10'"p.'#9'c #EEEDFF",'#10'"q.'#9'c #F9FAFF",'#10'"r.'#9'c #0'
|
||||
+'00007",'#10'"s.'#9'c #80838C",'#10'"t.'#9'c #0C0C26",'#10'"u.'#9'c #01002C"'
|
||||
+','#10'"v.'#9'c #0A073E",'#10'"w.'#9'c #0E0A45",'#10'"x.'#9'c #120F46",'#10
|
||||
+'"y.'#9'c #070431",'#10'"z.'#9'c #19183A",'#10'"A.'#9'c #0F0D25",'#10'"B.'#9
|
||||
+'c #050412",'#10'"C.'#9'c #0E0D15",'#10'"D.'#9'c #71747D",'#10'"E.'#9'c #FBF'
|
||||
+'AFF",'#10'"F.'#9'c #FAF8FF",'#10'"G.'#9'c #F5F4FF",'#10'"H.'#9'c #84878E",'
|
||||
+#10'"I.'#9'c #0D0B30",'#10'"J.'#9'c #07042F",'#10'"K.'#9'c #0C0934",'#10'"L.'
|
||||
+#9'c #0F0D34",'#10'"M.'#9'c #FDFAFF",'#10'"N.'#9'c #030007",'#10'"O.'#9'c #8'
|
||||
+'18286",'#10'"P.'#9'c #FCFBFF",'#10'"Q.'#9'c #F4F4FF",'#10'"R.'#9'c #F4F2FF"'
|
||||
+','#10'"S.'#9'c #FFFEFF",'#10'"T.'#9'c #020005",'#10'"U.'#9'c #7B7C7E",'#10
|
||||
+'"V.'#9'c #070711",'#10'"W.'#9'c #000015",'#10'"X.'#9'c #000019",'#10'"Y.'#9
|
||||
+'c #08061B",'#10'"Z.'#9'c #050414",'#10'"`.'#9'c #00000C",'#10'" +'#9'c #050'
|
||||
+'40C",'#10'".+'#9'c #07060B",'#10'"++'#9'c #010000",'#10'"@+'#9'c #C2C1BF",'
|
||||
+#10'" . + @ # $ % & * = - ; > , '' ) ! ~ { ] ^ ",'#10'" / ( _ : < [ } '
|
||||
+'| 1 2 3 4 5 6 7 5 8 9 0 a ",'#10'" b ( c d e f g h i j k l m n o p q r s'
|
||||
+' t ",'#10'" u r v w x y z A 1 m B 3 3 C D E D r F ",'#10'" G H I J '
|
||||
+'K L M N O P Q R S T U V W X ",'#10'" Y Z 2 ` 3 ...+.@.#.$. '
|
||||
+' ",'#10'" %.&.*.=.-.;.>.,.''.).!. ",'#10'"~. '
|
||||
+' {.].^./.(._.:...<.+.S ",'#10'" [.}.|.1.2.3.4...5.6.7.'
|
||||
,' ",'#10'" 8.].6 9.0.}.a.].Z .b. ",'#10
|
||||
+'" c.d.e.f.g.h.i.7 3 <.j. ",'#10'"k. l.].m.n.o.p./.6 '
|
||||
+'q.4 r. ",'#10'" s.t.u.v.w.x.y.z.A.B.C. "'
|
||||
+','#10'" D.2 E.F.o.o.1 G.r 4 r. ",'#10'" H.3 I.J.K.'
|
||||
+'L.( D M.1 N. ",'#10'" O._.P.1 P.Q./.r R.S.T. '
|
||||
+' ",'#10'" U.V.W.X.W.Y.Z.`. +.+++ ",'#10'" '
|
||||
+' ",'#10'" '
|
||||
+' ",'#10'" ",'#10'"@+ '
|
||||
+' "};'#10
|
||||
'/* XPM */'#10'static char * tmainmenu_xpm[] = {'#10'"22 21 185 2",'#10'" '#9
|
||||
+'c None",'#10'". '#9'c #837F96",'#10'"+ '#9'c #817E9D",'#10'"@ '#9'c #77729A'
|
||||
+'",'#10'"# '#9'c #8C86B4",'#10'"$ '#9'c #817BAB",'#10'"% '#9'c #726F9A",'#10
|
||||
+'"& '#9'c #7E7CA1",'#10'"* '#9'c #8585A1",'#10'"= '#9'c #747589",'#10'"- '#9
|
||||
+'c #81838F",'#10'"; '#9'c #73767B",'#10'"> '#9'c #828387",'#10'", '#9'c #757'
|
||||
+'678",'#10'"'' '#9'c #848587",'#10'") '#9'c #858688",'#10'"! '#9'c #7F8180",'
|
||||
+#10'"~ '#9'c #7B7D7A",'#10'"{ '#9'c #7A7B73",'#10'"] '#9'c #898B7D",'#10'"^ '
|
||||
+#9'c #828572",'#10'"/ '#9'c #7B7792",'#10'"( '#9'c #FEFAFF",'#10'"_ '#9'c #0'
|
||||
+'A0432",'#10'": '#9'c #070036",'#10'"< '#9'c #100843",'#10'"[ '#9'c #0D0743"'
|
||||
+','#10'"} '#9'c #0D0842",'#10'"| '#9'c #F8F5FF",'#10'"1 '#9'c #FCFAFF",'#10
|
||||
+'"2 '#9'c #FCFCFF",'#10'"3 '#9'c #FCFDFF",'#10'"4 '#9'c #FEFDFF",'#10'"5 '#9
|
||||
+'c #FEFEFF",'#10'"6 '#9'c #F9F9FF",'#10'"7 '#9'c #F8F8FF",'#10'"8 '#9'c #FEF'
|
||||
+'FFF",'#10'"9 '#9'c #F8F8F8",'#10'"0 '#9'c #FFFFFA",'#10'"a '#9'c #76786B",'
|
||||
+#10'"b '#9'c #8B879E",'#10'"c '#9'c #130E37",'#10'"d '#9'c #FEF7FF",'#10'"e '
|
||||
+#9'c #FDF5FF",'#10'"f '#9'c #F9F1FF",'#10'"g '#9'c #0F0750",'#10'"h '#9'c #F'
|
||||
+'CF6FF",'#10'"i '#9'c #080437",'#10'"j '#9'c #09072E",'#10'"k '#9'c #0E0D2D"'
|
||||
+','#10'"l '#9'c #EFEFFF",'#10'"m '#9'c #FAFAFF",'#10'"n '#9'c #14112E",'#10
|
||||
+'"o '#9'c #090625",'#10'"p '#9'c #100D2A",'#10'"q '#9'c #FAF7FF",'#10'"r '#9
|
||||
+'c #FEFCFF",'#10'"s '#9'c #797985",'#10'"t '#9'c #000005",'#10'"u '#9'c #7E7'
|
||||
+'C8A",'#10'"v '#9'c #060223",'#10'"w '#9'c #18133B",'#10'"x '#9'c #040030",'
|
||||
+#10'"y '#9'c #140E4C",'#10'"z '#9'c #03003B",'#10'"A '#9'c #F7F3FF",'#10'"B '
|
||||
+#9'c #FAFBFF",'#10'"C '#9'c #F5F2FF",'#10'"D '#9'c #FEFBFF",'#10'"E '#9'c #F'
|
||||
+'9F6FF",'#10'"F '#9'c #858496",'#10'"G '#9'c #828284",'#10'"H '#9'c #7F7F89"'
|
||||
+','#10'"I '#9'c #7C7B8B",'#10'"J '#9'c #7D7B91",'#10'"K '#9'c #8986A1",'#10
|
||||
+'"L '#9'c #72728C",'#10'"M '#9'c #8C8DA2",'#10'"N '#9'c #7D7F8B",'#10'"O '#9
|
||||
+'c #7D8184",'#10'"P '#9'c #878C85",'#10'"Q '#9'c #767C72",'#10'"R '#9'c #7E8'
|
||||
+'47A",'#10'"S '#9'c #000200",'#10'"T '#9'c #08090D",'#10'"U '#9'c #000009",'
|
||||
+#10'"V '#9'c #00000D",'#10'"W '#9'c #00000E",'#10'"X '#9'c #00000B",'#10'"Y '
|
||||
+#9'c #85868A",'#10'"Z '#9'c #FCFEFF",'#10'"` '#9'c #F7F7FF",'#10'" .'#9'c #F'
|
||||
+'9FDFF",'#10'"..'#9'c #F9FEFF",'#10'"+.'#9'c #FCFFFA",'#10'"@.'#9'c #F9FFEE"'
|
||||
+','#10'"#.'#9'c #FBFFEC",'#10'"$.'#9'c #000800",'#10'"%.'#9'c #797C81",'#10
|
||||
+'"&.'#9'c #F3F5FF",'#10'"*.'#9'c #11103A",'#10'"=.'#9'c #0A0A3C",'#10'"-.'#9
|
||||
+'c #0A0B37",'#10'";.'#9'c #0D1031",'#10'">.'#9'c #070C22",'#10'",.'#9'c #FAF'
|
||||
+'EFF",'#10'"''.'#9'c #FAFFF9",'#10'").'#9'c #FCFFF4",'#10'"!.'#9'c #000300",'
|
||||
+#10'"~.'#9'c #83868D",'#10'"{.'#9'c #FBFCFF",'#10'"].'#9'c #F5F5FF",'#10'"^.'
|
||||
+#9'c #F7F5FF",'#10'"/.'#9'c #F5F6FF",'#10'"(.'#9'c #F4F6FF",'#10'"_.'#9'c #F'
|
||||
+'9FCFF",'#10'":.'#9'c #FCFFFF",'#10'"<.'#9'c #777A83",'#10'"[.'#9'c #F8F9FF"'
|
||||
+','#10'"}.'#9'c #0A0A3E",'#10'"|.'#9'c #0B0948",'#10'"1.'#9'c #0B0B47",'#10
|
||||
+'"2.'#9'c #0A0C3F",'#10'"3.'#9'c #F9FBFF",'#10'"4.'#9'c #F2F5FE",'#10'"5.'#9
|
||||
+'c #FCFFFD",'#10'"6.'#9'c #020500",'#10'"7.'#9'c #787B84",'#10'"8.'#9'c #EDE'
|
||||
+'BFF",'#10'"9.'#9'c #F6F4FF",'#10'"0.'#9'c #F0F2FF",'#10'"a.'#9'c #000100",'
|
||||
+#10'"b.'#9'c #747780",'#10'"c.'#9'c #F6F7FF",'#10'"d.'#9'c #020032",'#10'"e.'
|
||||
+#9'c #100E4D",'#10'"f.'#9'c #070544",'#10'"g.'#9'c #13124C",'#10'"h.'#9'c #1'
|
||||
+'00E3D",'#10'"i.'#9'c #040509",'#10'"j.'#9'c #888B94",'#10'"k.'#9'c #FBF9FF"'
|
||||
+','#10'"l.'#9'c #FBF7FF",'#10'"m.'#9'c #F9F7FF",'#10'"n.'#9'c #EEEDFF",'#10
|
||||
+'"o.'#9'c #F9FAFF",'#10'"p.'#9'c #000007",'#10'"q.'#9'c #80838C",'#10'"r.'#9
|
||||
+'c #0C0C26",'#10'"s.'#9'c #01002C",'#10'"t.'#9'c #0A073E",'#10'"u.'#9'c #0E0'
|
||||
+'A45",'#10'"v.'#9'c #120F46",'#10'"w.'#9'c #070431",'#10'"x.'#9'c #19183A",'
|
||||
+#10'"y.'#9'c #0F0D25",'#10'"z.'#9'c #050412",'#10'"A.'#9'c #0E0D15",'#10'"B.'
|
||||
+#9'c #71747D",'#10'"C.'#9'c #FBFAFF",'#10'"D.'#9'c #FAF8FF",'#10'"E.'#9'c #F'
|
||||
+'5F4FF",'#10'"F.'#9'c #84878E",'#10'"G.'#9'c #0D0B30",'#10'"H.'#9'c #07042F"'
|
||||
+','#10'"I.'#9'c #0C0934",'#10'"J.'#9'c #0F0D34",'#10'"K.'#9'c #FDFAFF",'#10
|
||||
+'"L.'#9'c #030007",'#10'"M.'#9'c #818286",'#10'"N.'#9'c #FCFBFF",'#10'"O.'#9
|
||||
+'c #F4F4FF",'#10'"P.'#9'c #F4F2FF",'#10'"Q.'#9'c #FFFEFF",'#10'"R.'#9'c #020'
|
||||
+'005",'#10'"S.'#9'c #7B7C7E",'#10'"T.'#9'c #070711",'#10'"U.'#9'c #000015",'
|
||||
+#10'"V.'#9'c #000019",'#10'"W.'#9'c #08061B",'#10'"X.'#9'c #050414",'#10'"Y.'
|
||||
+#9'c #00000C",'#10'"Z.'#9'c #05040C",'#10'"`.'#9'c #07060B",'#10'" +'#9'c #0'
|
||||
+'10000",'#10'" . + @ # $ % & * = - ; > , '' ) ! ~ { ] ^ ",'#10'" / ( _'
|
||||
+' : < [ } | 1 2 3 4 5 6 7 5 8 9 0 a ",'#10'" b ( c d e f g h i j k l m n '
|
||||
+'o p q r s t ",'#10'" u r v w x y z A 1 m B 3 3 C D E D r F ",'#10'" '
|
||||
+' G H I J K L M N O P Q R S T U V W X ",'#10'" Y Z 2 ` 3 ...+.@.#.'
|
||||
+'$. ",'#10'" %.&.*.=.-.;.>.,.''.).!. ",'
|
||||
+#10'" ~.{.].^./.(._...:.+.S ",'#10'" <.[.}.|.1.2.3'
|
||||
+'...4.5.6. ",'#10'" 7.{.6 8.9.[.0.{.Z .a. '
|
||||
,' ",'#10'" b.c.d.e.f.g.h.7 3 :.i. ",'#10'" j.{.k.l'
|
||||
+'.m.n.^.6 o.4 p. ",'#10'" q.r.s.t.u.v.w.x.y.z.A. '
|
||||
+' ",'#10'" B.2 C.D.m.m.1 E.r 4 p. ",'#10'" F'
|
||||
+'.3 G.H.I.J.( D K.1 L. ",'#10'" M.(.N.1 N.O.^.r P.Q.R. '
|
||||
+' ",'#10'" S.T.U.V.U.W.X.Y.Z.`. + ",'#10'" '
|
||||
+' ",'#10'" '
|
||||
+' ",'#10'" ",'
|
||||
+#10'" "};'#10
|
||||
]);
|
||||
LazarusResources.Add('tmaskedit','XPM',[
|
||||
'/* XPM */'#10'static char * tmaskedit_xpm[] = {'#10'"23 16 139 2",'#10'" '#9
|
||||
@ -1547,7 +1546,7 @@ LazarusResources.Add('tmouse','XPM',[
|
||||
+'"=0 ab c ",'#10'"d e}9f ",'#10'" ghij ",'#10'" kl "};'#10
|
||||
]);
|
||||
LazarusResources.Add('tnotebook','XPM',[
|
||||
'/* XPM */'#10'static char * tnotebook_xpm[] = {'#10'"19 14 26 1",'#10'" '#9
|
||||
'/* XPM */'#10'static char * tnotebook_xpm[] = {'#10'"19 14 25 1",'#10'" '#9
|
||||
+'c None",'#10'".'#9'c #FFFFFF",'#10'"+'#9'c #080808",'#10'"@'#9'c #000000",'
|
||||
+#10'"#'#9'c #C1C1C1",'#10'"$'#9'c #F8F8F8",'#10'"%'#9'c #F0F0F0",'#10'"&'#9
|
||||
+'c #030303",'#10'"*'#9'c #F4F4F4",'#10'"='#9'c #808080",'#10'"-'#9'c #C0C0C0'
|
||||
@ -1555,12 +1554,12 @@ LazarusResources.Add('tnotebook','XPM',[
|
||||
+''''#9'c #767676",'#10'")'#9'c #828282",'#10'"!'#9'c #878787",'#10'"~'#9'c #'
|
||||
+'7A7A7A",'#10'"{'#9'c #7F7F7F",'#10'"]'#9'c #888888",'#10'"^'#9'c #7D7D7D",'
|
||||
+#10'"/'#9'c #898989",'#10'"('#9'c #020202",'#10'"_'#9'c #050505",'#10'":'#9
|
||||
+'c #010101",'#10'"<'#9'c #C3C3C3",'#10'" .....+@@@@@@@@@@ ",'#10'" .####+##'
|
||||
+'##@####@ ",'#10'" .####+####@####@ ",'#10'" .####+####@####@ ",'#10'"$.#'
|
||||
+'###%...........&",'#10'"*################=@",'#10'".################=@",'#10
|
||||
+'"$################=@",'#10'"$#####-##########=@",'#10'".################=@"'
|
||||
+','#10'"*################=@",'#10'".################=@",'#10'";>,'')!~{{{{{{'
|
||||
+'{{]^/@",'#10'"@(@_@:@@@@@@@@@@(@<"};'#10
|
||||
+'c #010101",'#10'" .....+@@@@@@@@@@ ",'#10'" .####+####@####@ ",'#10'" .##'
|
||||
+'##+####@####@ ",'#10'" .####+####@####@ ",'#10'"$.####%...........&",'#10
|
||||
+'"*################=@",'#10'".################=@",'#10'"$################=@"'
|
||||
+','#10'"$#####-##########=@",'#10'".################=@",'#10'"*#############'
|
||||
+'###=@",'#10'".################=@",'#10'";>,'')!~{{{{{{{{]^/@",'#10'"@(@_@:@'
|
||||
+'@@@@@@@@@(@ "};'#10
|
||||
]);
|
||||
LazarusResources.Add('topendialog','XPM',[
|
||||
'/* XPM */'#10'static char * topendialog_xpm[] = {'#10'"22 20 8 1",'#10'" '#9
|
||||
@ -1591,7 +1590,7 @@ LazarusResources.Add('topenpicturedialog','XPM',[
|
||||
+'$@",'#10'".%+$+$+$+$+$+$+$+$+$+@",'#10'".@@@@@@@@@@@@@@@@@@@@@"};'#10
|
||||
]);
|
||||
LazarusResources.Add('tpagecontrol','XPM',[
|
||||
'/* XPM */'#10'static char * tpagecontrol_xpm[] = {'#10'"19 14 29 1",'#10'" '
|
||||
'/* XPM */'#10'static char * tpagecontrol_xpm[] = {'#10'"19 14 28 1",'#10'" '
|
||||
+#9'c None",'#10'".'#9'c #FFFFFF",'#10'"+'#9'c #080808",'#10'"@'#9'c #000000"'
|
||||
+','#10'"#'#9'c #C1C1C1",'#10'"$'#9'c #F8F8F8",'#10'"%'#9'c #F0F0F0",'#10'"&'
|
||||
+#9'c #FCFCFC",'#10'"*'#9'c #030303",'#10'"='#9'c #C5C5C5",'#10'"-'#9'c #8080'
|
||||
@ -1600,12 +1599,12 @@ LazarusResources.Add('tpagecontrol','XPM',[
|
||||
+'#767676",'#10'"{'#9'c #828282",'#10'"]'#9'c #878787",'#10'"^'#9'c #7A7A7A",'
|
||||
+#10'"/'#9'c #7F7F7F",'#10'"('#9'c #888888",'#10'"_'#9'c #7D7D7D",'#10'":'#9
|
||||
+'c #898989",'#10'"<'#9'c #020202",'#10'"['#9'c #050505",'#10'"}'#9'c #010101'
|
||||
+'",'#10'"|'#9'c #C3C3C3",'#10'" ....+@@@@@@@@ ",'#10'" .###+###@###@ '
|
||||
+' ",'#10'" .###+###@###@ ",'#10'"$.###%..........&.*",'#10'".###=#######'
|
||||
+'#####-@",'#10'";#############>##-@",'#10'".################-@",'#10'"$#####'
|
||||
+'###########-@",'#10'"$#####,##########-@",'#10'".################-@",'#10'"'
|
||||
+';################-@",'#10'".################-@",'#10'"'')!~{]^////////(_:@"'
|
||||
+','#10'"@<@[@}@@@@@@@@@@<@|"};'#10
|
||||
+'",'#10'" ....+@@@@@@@@ ",'#10'" .###+###@###@ ",'#10'" .###+###@###'
|
||||
+'@ ",'#10'"$.###%..........&.*",'#10'".###=############-@",'#10'";######'
|
||||
+'#######>##-@",'#10'".################-@",'#10'"$################-@",'#10'"$'
|
||||
+'#####,##########-@",'#10'".################-@",'#10'";################-@",'
|
||||
+#10'".################-@",'#10'"'')!~{]^////////(_:@",'#10'"@<@[@}@@@@@@@@@@'
|
||||
+'<@ "};'#10
|
||||
]);
|
||||
LazarusResources.Add('tpaintbox','XPM',[
|
||||
'/* XPM */'#10'static char * tpaintbox_xpm[] = {'#10'"21 21 8 1",'#10'" '#9'c'
|
||||
|
Loading…
Reference in New Issue
Block a user