Initial import
This commit is contained in:
commit
3e7fcf00fb
768
ABOUT-NLS
Normal file
768
ABOUT-NLS
Normal file
@ -0,0 +1,768 @@
|
||||
Notes on the Free Translation Project
|
||||
*************************************
|
||||
|
||||
Free software is going international! The Free Translation Project is
|
||||
a way to get maintainers of free software, translators, and users all
|
||||
together, so that will gradually become able to speak many languages.
|
||||
A few packages already provide translations for their messages.
|
||||
|
||||
If you found this `ABOUT-NLS' file inside a distribution, you may
|
||||
assume that the distributed package does use GNU `gettext' internally,
|
||||
itself available at your nearest GNU archive site. But you do _not_
|
||||
need to install GNU `gettext' prior to configuring, installing or using
|
||||
this package with messages translated.
|
||||
|
||||
Installers will find here some useful hints. These notes also
|
||||
explain how users should proceed for getting the programs to use the
|
||||
available translations. They tell how people wanting to contribute and
|
||||
work at translations should contact the appropriate team.
|
||||
|
||||
When reporting bugs in the `intl/' directory or bugs which may be
|
||||
related to internationalization, you should tell about the version of
|
||||
`gettext' which is used. The information can be found in the
|
||||
`intl/VERSION' file, in internationalized packages.
|
||||
|
||||
Quick configuration advice
|
||||
==========================
|
||||
|
||||
If you want to exploit the full power of internationalization, you
|
||||
should configure it using
|
||||
|
||||
./configure --with-included-gettext
|
||||
|
||||
to force usage of internationalizing routines provided within this
|
||||
package, despite the existence of internationalizing capabilities in the
|
||||
operating system where this package is being installed. So far, only
|
||||
the `gettext' implementation in the GNU C library version 2 provides as
|
||||
many features (such as locale alias, message inheritance, automatic
|
||||
charset conversion or plural form handling) as the implementation here.
|
||||
It is also not possible to offer this additional functionality on top
|
||||
of a `catgets' implementation. Future versions of GNU `gettext' will
|
||||
very likely convey even more functionality. So it might be a good idea
|
||||
to change to GNU `gettext' as soon as possible.
|
||||
|
||||
So you need _not_ provide this option if you are using GNU libc 2 or
|
||||
you have installed a recent copy of the GNU gettext package with the
|
||||
included `libintl'.
|
||||
|
||||
INSTALL Matters
|
||||
===============
|
||||
|
||||
Some packages are "localizable" when properly installed; the programs
|
||||
they contain can be made to speak your own native language. Most such
|
||||
packages use GNU `gettext'. Other packages have their own ways to
|
||||
internationalization, predating GNU `gettext'.
|
||||
|
||||
By default, this package will be installed to allow translation of
|
||||
messages. It will automatically detect whether the system already
|
||||
provides the GNU `gettext' functions. If not, the GNU `gettext' own
|
||||
library will be used. This library is wholly contained within this
|
||||
package, usually in the `intl/' subdirectory, so prior installation of
|
||||
the GNU `gettext' package is _not_ required. Installers may use
|
||||
special options at configuration time for changing the default
|
||||
behaviour. The commands:
|
||||
|
||||
./configure --with-included-gettext
|
||||
./configure --disable-nls
|
||||
|
||||
will respectively bypass any pre-existing `gettext' to use the
|
||||
internationalizing routines provided within this package, or else,
|
||||
_totally_ disable translation of messages.
|
||||
|
||||
When you already have GNU `gettext' installed on your system and run
|
||||
configure without an option for your new package, `configure' will
|
||||
probably detect the previously built and installed `libintl.a' file and
|
||||
will decide to use this. This might be not what is desirable. You
|
||||
should use the more recent version of the GNU `gettext' library. I.e.
|
||||
if the file `intl/VERSION' shows that the library which comes with this
|
||||
package is more recent, you should use
|
||||
|
||||
./configure --with-included-gettext
|
||||
|
||||
to prevent auto-detection.
|
||||
|
||||
The configuration process will not test for the `catgets' function
|
||||
and therefore it will not be used. The reason is that even an
|
||||
emulation of `gettext' on top of `catgets' could not provide all the
|
||||
extensions of the GNU `gettext' library.
|
||||
|
||||
Internationalized packages have usually many `po/LL.po' files, where
|
||||
LL gives an ISO 639 two-letter code identifying the language. Unless
|
||||
translations have been forbidden at `configure' time by using the
|
||||
`--disable-nls' switch, all available translations are installed
|
||||
together with the package. However, the environment variable `LINGUAS'
|
||||
may be set, prior to configuration, to limit the installed set.
|
||||
`LINGUAS' should then contain a space separated list of two-letter
|
||||
codes, stating which languages are allowed.
|
||||
|
||||
Using This Package
|
||||
==================
|
||||
|
||||
As a user, if your language has been installed for this package, you
|
||||
only have to set the `LANG' environment variable to the appropriate
|
||||
`LL_CC' combination. Here `LL' is an ISO 639 two-letter language code,
|
||||
and `CC' is an ISO 3166 two-letter country code. For example, let's
|
||||
suppose that you speak German and live in Germany. At the shell
|
||||
prompt, merely execute `setenv LANG de_DE' (in `csh'),
|
||||
`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
|
||||
This can be done from your `.login' or `.profile' file, once and for
|
||||
all.
|
||||
|
||||
You might think that the country code specification is redundant.
|
||||
But in fact, some languages have dialects in different countries. For
|
||||
example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
|
||||
country code serves to distinguish the dialects.
|
||||
|
||||
The locale naming convention of `LL_CC', with `LL' denoting the
|
||||
language and `CC' denoting the country, is the one use on systems based
|
||||
on GNU libc. On other systems, some variations of this scheme are
|
||||
used, such as `LL' or `LL_CC.ENCODING'. You can get the list of
|
||||
locales supported by your system for your country by running the command
|
||||
`locale -a | grep '^LL''.
|
||||
|
||||
Not all programs have translations for all languages. By default, an
|
||||
English message is shown in place of a nonexistent translation. If you
|
||||
understand other languages, you can set up a priority list of languages.
|
||||
This is done through a different environment variable, called
|
||||
`LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
|
||||
for the purpose of message handling, but you still need to have `LANG'
|
||||
set to the primary language; this is required by other parts of the
|
||||
system libraries. For example, some Swedish users who would rather
|
||||
read translations in German than English for when Swedish is not
|
||||
available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
|
||||
|
||||
Special advice for Norwegian users: The language code for Norwegian
|
||||
bokma*l changed from `no' to `nb' recently (in 2003). During the
|
||||
transition period, while some message catalogs for this language are
|
||||
installed under `nb' and some older ones under `no', it's recommended
|
||||
for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
|
||||
older translations are used.
|
||||
|
||||
In the `LANGUAGE' environment variable, but not in the `LANG'
|
||||
environment variable, `LL_CC' combinations can be abbreviated as `LL'
|
||||
to denote the language's main dialect. For example, `de' is equivalent
|
||||
to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
|
||||
(Portuguese as spoken in Portugal) in this context.
|
||||
|
||||
Translating Teams
|
||||
=================
|
||||
|
||||
For the Free Translation Project to be a success, we need interested
|
||||
people who like their own language and write it well, and who are also
|
||||
able to synergize with other translators speaking the same language.
|
||||
Each translation team has its own mailing list. The up-to-date list of
|
||||
teams can be found at the Free Translation Project's homepage,
|
||||
`http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
|
||||
area.
|
||||
|
||||
If you'd like to volunteer to _work_ at translating messages, you
|
||||
should become a member of the translating team for your own language.
|
||||
The subscribing address is _not_ the same as the list itself, it has
|
||||
`-request' appended. For example, speakers of Swedish can send a
|
||||
message to `sv-request@li.org', having this message body:
|
||||
|
||||
subscribe
|
||||
|
||||
Keep in mind that team members are expected to participate
|
||||
_actively_ in translations, or at solving translational difficulties,
|
||||
rather than merely lurking around. If your team does not exist yet and
|
||||
you want to start one, or if you are unsure about what to do or how to
|
||||
get started, please write to `translation@iro.umontreal.ca' to reach the
|
||||
coordinator for all translator teams.
|
||||
|
||||
The English team is special. It works at improving and uniformizing
|
||||
the terminology in use. Proven linguistic skill are praised more than
|
||||
programming skill, here.
|
||||
|
||||
Available Packages
|
||||
==================
|
||||
|
||||
Languages are not equally supported in all packages. The following
|
||||
matrix shows the current state of internationalization, as of January
|
||||
2004. The matrix shows, in regard of each package, for which languages
|
||||
PO files have been submitted to translation coordination, with a
|
||||
translation percentage of at least 50%.
|
||||
|
||||
Ready PO files af am ar az be bg bs ca cs da de el en en_GB eo es
|
||||
+----------------------------------------------------+
|
||||
a2ps | [] [] [] [] |
|
||||
aegis | () |
|
||||
ant-phone | () |
|
||||
anubis | |
|
||||
ap-utils | |
|
||||
aspell | [] |
|
||||
bash | [] [] [] [] |
|
||||
batchelor | |
|
||||
bfd | [] [] |
|
||||
binutils | [] [] |
|
||||
bison | [] [] [] |
|
||||
bluez-pin | [] [] [] |
|
||||
clisp | |
|
||||
clisp | [] [] [] |
|
||||
console-tools | [] [] |
|
||||
coreutils | [] [] [] [] |
|
||||
cpio | [] [] [] |
|
||||
darkstat | [] () [] |
|
||||
diffutils | [] [] [] [] [] [] [] |
|
||||
e2fsprogs | [] [] [] |
|
||||
enscript | [] [] [] [] |
|
||||
error | [] [] [] [] [] |
|
||||
fetchmail | [] () [] [] [] [] |
|
||||
fileutils | [] [] [] |
|
||||
findutils | [] [] [] [] [] [] [] |
|
||||
flex | [] [] [] [] |
|
||||
fslint | |
|
||||
gas | [] |
|
||||
gawk | [] [] [] [] |
|
||||
gbiff | [] |
|
||||
gcal | [] |
|
||||
gcc | [] [] |
|
||||
gettext | [] [] [] [] [] |
|
||||
gettext-examples | [] [] [] [] |
|
||||
gettext-runtime | [] [] [] [] [] |
|
||||
gettext-tools | [] [] [] |
|
||||
gimp-print | [] [] [] [] [] |
|
||||
gliv | |
|
||||
glunarclock | [] [] |
|
||||
gnubiff | [] |
|
||||
gnucash | [] () [] [] |
|
||||
gnucash-glossary | [] () [] |
|
||||
gnupg | [] () [] [] [] [] |
|
||||
gpe-aerial | [] |
|
||||
gpe-beam | [] [] |
|
||||
gpe-calendar | [] [] |
|
||||
gpe-clock | [] [] |
|
||||
gpe-conf | [] [] |
|
||||
gpe-contacts | [] [] |
|
||||
gpe-edit | [] |
|
||||
gpe-go | [] |
|
||||
gpe-login | [] [] |
|
||||
gpe-ownerinfo | [] [] |
|
||||
gpe-sketchbook | [] [] |
|
||||
gpe-su | [] [] |
|
||||
gpe-taskmanager | [] [] |
|
||||
gpe-timesheet | [] |
|
||||
gpe-today | [] [] |
|
||||
gpe-todo | [] [] |
|
||||
gphoto2 | [] [] [] [] |
|
||||
gprof | [] [] [] |
|
||||
gpsdrive | () () () |
|
||||
gramadoir | [] |
|
||||
grep | [] [] [] [] [] [] |
|
||||
gretl | [] |
|
||||
gtick | [] () |
|
||||
hello | [] [] [] [] [] [] |
|
||||
id-utils | [] [] |
|
||||
indent | [] [] [] [] |
|
||||
iso_3166 | [] [] [] [] [] [] [] [] [] [] |
|
||||
iso_3166_1 | [] [] [] [] [] [] |
|
||||
iso_3166_2 | |
|
||||
iso_3166_3 | [] |
|
||||
iso_4217 | [] [] [] [] |
|
||||
iso_639 | |
|
||||
jpilot | [] [] [] |
|
||||
jtag | |
|
||||
jwhois | [] |
|
||||
kbd | [] [] [] [] [] |
|
||||
latrine | () |
|
||||
ld | [] [] |
|
||||
libc | [] [] [] [] [] [] |
|
||||
libgpewidget | [] [] |
|
||||
libiconv | [] [] [] [] [] |
|
||||
lifelines | [] () |
|
||||
lilypond | [] |
|
||||
lingoteach | |
|
||||
lingoteach_lessons | () () |
|
||||
lynx | [] [] [] [] |
|
||||
m4 | [] [] [] [] |
|
||||
mailutils | [] [] |
|
||||
make | [] [] [] |
|
||||
man-db | [] () [] [] () |
|
||||
minicom | [] [] [] |
|
||||
mysecretdiary | [] [] [] |
|
||||
nano | [] () [] [] [] |
|
||||
nano_1_0 | [] () [] [] [] |
|
||||
opcodes | [] |
|
||||
parted | [] [] [] [] [] |
|
||||
ptx | [] [] [] [] [] |
|
||||
python | |
|
||||
radius | [] |
|
||||
recode | [] [] [] [] [] [] [] |
|
||||
rpm | [] [] |
|
||||
screem | |
|
||||
scrollkeeper | [] [] [] [] [] [] |
|
||||
sed | [] [] [] [] [] [] |
|
||||
sh-utils | [] [] [] |
|
||||
shared-mime-info | |
|
||||
sharutils | [] [] [] [] [] [] |
|
||||
silky | () |
|
||||
skencil | [] () [] |
|
||||
sketch | [] () [] |
|
||||
soundtracker | [] [] [] |
|
||||
sp | [] |
|
||||
tar | [] [] [] [] |
|
||||
texinfo | [] [] [] |
|
||||
textutils | [] [] [] [] |
|
||||
tin | () () |
|
||||
tp-robot | |
|
||||
tuxpaint | [] [] [] [] [] [] [] |
|
||||
unicode-han-tra... | |
|
||||
unicode-transla... | |
|
||||
util-linux | [] [] [] [] [] |
|
||||
vorbis-tools | [] [] [] [] |
|
||||
wastesedge | () |
|
||||
wdiff | [] [] [] [] |
|
||||
wget | [] [] [] [] [] [] |
|
||||
xchat | [] [] [] [] |
|
||||
xfree86_xkb_xml | [] [] |
|
||||
xpad | [] |
|
||||
+----------------------------------------------------+
|
||||
af am ar az be bg bs ca cs da de el en en_GB eo es
|
||||
4 0 0 1 9 4 1 40 41 60 78 17 1 5 13 68
|
||||
|
||||
et eu fa fi fr ga gl he hr hu id is it ja ko lg
|
||||
+-------------------------------------------------+
|
||||
a2ps | [] [] [] () () |
|
||||
aegis | |
|
||||
ant-phone | [] |
|
||||
anubis | [] |
|
||||
ap-utils | [] |
|
||||
aspell | [] [] |
|
||||
bash | [] [] |
|
||||
batchelor | [] [] |
|
||||
bfd | [] |
|
||||
binutils | [] [] |
|
||||
bison | [] [] [] [] |
|
||||
bluez-pin | [] [] [] [] [] |
|
||||
clisp | |
|
||||
clisp | [] |
|
||||
console-tools | |
|
||||
coreutils | [] [] [] [] [] [] |
|
||||
cpio | [] [] [] [] |
|
||||
darkstat | () [] [] [] |
|
||||
diffutils | [] [] [] [] [] [] [] |
|
||||
e2fsprogs | |
|
||||
enscript | [] [] |
|
||||
error | [] [] [] [] |
|
||||
fetchmail | [] |
|
||||
fileutils | [] [] [] [] [] [] |
|
||||
findutils | [] [] [] [] [] [] [] [] [] [] [] |
|
||||
flex | [] [] [] |
|
||||
fslint | [] |
|
||||
gas | [] |
|
||||
gawk | [] [] [] |
|
||||
gbiff | [] |
|
||||
gcal | [] |
|
||||
gcc | [] |
|
||||
gettext | [] [] [] |
|
||||
gettext-examples | [] [] |
|
||||
gettext-runtime | [] [] [] [] [] |
|
||||
gettext-tools | [] [] [] |
|
||||
gimp-print | [] [] |
|
||||
gliv | () |
|
||||
glunarclock | [] [] [] [] |
|
||||
gnubiff | [] |
|
||||
gnucash | () [] |
|
||||
gnucash-glossary | [] |
|
||||
gnupg | [] [] [] [] [] [] [] |
|
||||
gpe-aerial | [] |
|
||||
gpe-beam | [] |
|
||||
gpe-calendar | [] [] [] |
|
||||
gpe-clock | [] |
|
||||
gpe-conf | [] |
|
||||
gpe-contacts | [] [] |
|
||||
gpe-edit | [] [] |
|
||||
gpe-go | [] |
|
||||
gpe-login | [] [] |
|
||||
gpe-ownerinfo | [] [] [] |
|
||||
gpe-sketchbook | [] |
|
||||
gpe-su | [] |
|
||||
gpe-taskmanager | [] |
|
||||
gpe-timesheet | [] [] [] |
|
||||
gpe-today | [] [] |
|
||||
gpe-todo | [] [] |
|
||||
gphoto2 | [] [] [] |
|
||||
gprof | [] [] |
|
||||
gpsdrive | () () () |
|
||||
gramadoir | [] [] |
|
||||
grep | [] [] [] [] [] [] [] [] [] [] [] |
|
||||
gretl | [] [] |
|
||||
gtick | [] [] [] |
|
||||
hello | [] [] [] [] [] [] [] [] [] [] [] [] [] |
|
||||
id-utils | [] [] [] [] |
|
||||
indent | [] [] [] [] [] [] [] [] [] |
|
||||
iso_3166 | [] [] [] [] [] [] [] |
|
||||
iso_3166_1 | [] [] [] [] [] |
|
||||
iso_3166_2 | |
|
||||
iso_3166_3 | |
|
||||
iso_4217 | [] [] [] [] [] [] |
|
||||
iso_639 | |
|
||||
jpilot | [] () |
|
||||
jtag | [] |
|
||||
jwhois | [] [] [] [] |
|
||||
kbd | [] |
|
||||
latrine | [] |
|
||||
ld | [] |
|
||||
libc | [] [] [] [] [] [] |
|
||||
libgpewidget | [] [] [] [] |
|
||||
libiconv | [] [] [] [] [] [] [] [] [] |
|
||||
lifelines | () |
|
||||
lilypond | [] |
|
||||
lingoteach | [] [] |
|
||||
lingoteach_lessons | |
|
||||
lynx | [] [] [] [] |
|
||||
m4 | [] [] [] [] |
|
||||
mailutils | |
|
||||
make | [] [] [] [] [] [] |
|
||||
man-db | () () |
|
||||
minicom | [] [] [] [] |
|
||||
mysecretdiary | [] [] |
|
||||
nano | [] [] [] [] |
|
||||
nano_1_0 | [] [] [] [] |
|
||||
opcodes | [] |
|
||||
parted | [] [] [] |
|
||||
ptx | [] [] [] [] [] [] [] |
|
||||
python | |
|
||||
radius | [] |
|
||||
recode | [] [] [] [] [] [] |
|
||||
rpm | [] [] |
|
||||
screem | |
|
||||
scrollkeeper | [] |
|
||||
sed | [] [] [] [] [] [] [] [] [] |
|
||||
sh-utils | [] [] [] [] [] [] [] |
|
||||
shared-mime-info | [] [] [] |
|
||||
sharutils | [] [] [] [] [] |
|
||||
silky | () [] () () |
|
||||
skencil | [] |
|
||||
sketch | [] |
|
||||
soundtracker | [] [] |
|
||||
sp | [] () |
|
||||
tar | [] [] [] [] [] [] [] [] [] |
|
||||
texinfo | [] [] [] [] |
|
||||
textutils | [] [] [] [] [] [] |
|
||||
tin | [] () |
|
||||
tp-robot | [] |
|
||||
tuxpaint | [] [] [] [] [] [] [] [] [] |
|
||||
unicode-han-tra... | |
|
||||
unicode-transla... | [] [] |
|
||||
util-linux | [] [] [] [] () [] |
|
||||
vorbis-tools | [] |
|
||||
wastesedge | () |
|
||||
wdiff | [] [] [] [] [] [] |
|
||||
wget | [] [] [] [] [] [] [] |
|
||||
xchat | [] [] [] |
|
||||
xfree86_xkb_xml | [] [] |
|
||||
xpad | [] [] |
|
||||
+-------------------------------------------------+
|
||||
et eu fa fi fr ga gl he hr hu id is it ja ko lg
|
||||
22 2 1 26 106 28 24 8 10 41 33 1 26 33 12 0
|
||||
|
||||
lt lv mk mn ms mt nb nl nn no nso pl pt pt_BR ro ru
|
||||
+-----------------------------------------------------+
|
||||
a2ps | [] [] () () [] [] [] |
|
||||
aegis | () () () |
|
||||
ant-phone | [] [] |
|
||||
anubis | [] [] [] [] [] [] |
|
||||
ap-utils | [] () [] |
|
||||
aspell | [] |
|
||||
bash | [] [] [] |
|
||||
batchelor | [] |
|
||||
bfd | [] |
|
||||
binutils | [] |
|
||||
bison | [] [] [] [] [] |
|
||||
bluez-pin | [] [] [] |
|
||||
clisp | |
|
||||
clisp | [] |
|
||||
console-tools | [] |
|
||||
coreutils | [] [] |
|
||||
cpio | [] [] [] [] [] |
|
||||
darkstat | [] [] [] [] |
|
||||
diffutils | [] [] [] [] [] [] |
|
||||
e2fsprogs | [] |
|
||||
enscript | [] [] [] [] |
|
||||
error | [] [] [] |
|
||||
fetchmail | [] [] () [] |
|
||||
fileutils | [] [] [] |
|
||||
findutils | [] [] [] [] [] |
|
||||
flex | [] [] [] [] |
|
||||
fslint | [] [] |
|
||||
gas | |
|
||||
gawk | [] [] [] |
|
||||
gbiff | [] [] |
|
||||
gcal | |
|
||||
gcc | |
|
||||
gettext | [] [] [] |
|
||||
gettext-examples | [] [] [] |
|
||||
gettext-runtime | [] [] [] [] |
|
||||
gettext-tools | [] [] |
|
||||
gimp-print | [] |
|
||||
gliv | [] [] [] |
|
||||
glunarclock | [] [] [] [] |
|
||||
gnubiff | [] |
|
||||
gnucash | [] [] () [] |
|
||||
gnucash-glossary | [] [] |
|
||||
gnupg | [] |
|
||||
gpe-aerial | [] [] [] [] |
|
||||
gpe-beam | [] [] [] [] |
|
||||
gpe-calendar | [] [] [] [] |
|
||||
gpe-clock | [] [] [] [] |
|
||||
gpe-conf | [] [] [] [] |
|
||||
gpe-contacts | [] [] [] [] |
|
||||
gpe-edit | [] [] [] [] |
|
||||
gpe-go | [] [] [] |
|
||||
gpe-login | [] [] [] [] |
|
||||
gpe-ownerinfo | [] [] [] [] |
|
||||
gpe-sketchbook | [] [] [] [] |
|
||||
gpe-su | [] [] [] [] |
|
||||
gpe-taskmanager | [] [] [] [] |
|
||||
gpe-timesheet | [] [] [] [] |
|
||||
gpe-today | [] [] [] [] |
|
||||
gpe-todo | [] [] [] [] |
|
||||
gphoto2 | [] |
|
||||
gprof | [] [] |
|
||||
gpsdrive | () () [] |
|
||||
gramadoir | () [] |
|
||||
grep | [] [] [] [] [] |
|
||||
gretl | |
|
||||
gtick | [] [] [] |
|
||||
hello | [] [] [] [] [] [] [] [] [] [] |
|
||||
id-utils | [] [] [] [] |
|
||||
indent | [] [] [] [] |
|
||||
iso_3166 | [] [] [] |
|
||||
iso_3166_1 | [] [] |
|
||||
iso_3166_2 | |
|
||||
iso_3166_3 | [] |
|
||||
iso_4217 | [] [] [] [] [] [] [] [] |
|
||||
iso_639 | [] |
|
||||
jpilot | () () |
|
||||
jtag | |
|
||||
jwhois | [] [] [] [] () |
|
||||
kbd | [] [] [] |
|
||||
latrine | [] |
|
||||
ld | |
|
||||
libc | [] [] [] [] |
|
||||
libgpewidget | [] [] [] |
|
||||
libiconv | [] [] [] [] [] |
|
||||
lifelines | |
|
||||
lilypond | |
|
||||
lingoteach | |
|
||||
lingoteach_lessons | |
|
||||
lynx | [] [] [] |
|
||||
m4 | [] [] [] [] [] |
|
||||
mailutils | [] [] [] |
|
||||
make | [] [] [] [] |
|
||||
man-db | [] |
|
||||
minicom | [] [] [] [] |
|
||||
mysecretdiary | [] [] [] |
|
||||
nano | [] [] [] [] [] |
|
||||
nano_1_0 | [] [] [] [] [] [] |
|
||||
opcodes | [] [] |
|
||||
parted | [] [] [] [] |
|
||||
ptx | [] [] [] [] [] [] [] [] |
|
||||
python | |
|
||||
radius | [] [] |
|
||||
recode | [] [] [] [] |
|
||||
rpm | [] [] [] |
|
||||
screem | |
|
||||
scrollkeeper | [] [] [] [] [] |
|
||||
sed | [] [] [] |
|
||||
sh-utils | [] [] |
|
||||
shared-mime-info | [] [] |
|
||||
sharutils | [] [] |
|
||||
silky | () |
|
||||
skencil | [] [] |
|
||||
sketch | [] [] |
|
||||
soundtracker | |
|
||||
sp | |
|
||||
tar | [] [] [] [] [] [] |
|
||||
texinfo | [] [] [] [] |
|
||||
textutils | [] [] |
|
||||
tin | |
|
||||
tp-robot | [] |
|
||||
tuxpaint | [] [] [] [] [] [] [] [] |
|
||||
unicode-han-tra... | |
|
||||
unicode-transla... | |
|
||||
util-linux | [] [] [] |
|
||||
vorbis-tools | [] [] [] |
|
||||
wastesedge | |
|
||||
wdiff | [] [] [] [] [] |
|
||||
wget | [] [] [] |
|
||||
xchat | [] [] [] |
|
||||
xfree86_xkb_xml | [] [] |
|
||||
xpad | [] [] |
|
||||
+-----------------------------------------------------+
|
||||
lt lv mk mn ms mt nb nl nn no nso pl pt pt_BR ro ru
|
||||
1 2 0 3 12 0 10 69 6 7 1 40 26 36 76 63
|
||||
|
||||
sk sl sr sv ta th tr uk ven vi wa xh zh_CN zh_TW zu
|
||||
+-----------------------------------------------------+
|
||||
a2ps | [] [] [] [] | 16
|
||||
aegis | | 0
|
||||
ant-phone | | 3
|
||||
anubis | [] [] | 9
|
||||
ap-utils | () | 3
|
||||
aspell | | 4
|
||||
bash | | 9
|
||||
batchelor | | 3
|
||||
bfd | [] [] | 6
|
||||
binutils | [] [] [] | 8
|
||||
bison | [] [] | 14
|
||||
bluez-pin | [] [] [] | 14
|
||||
clisp | | 0
|
||||
clisp | | 5
|
||||
console-tools | | 3
|
||||
coreutils | [] [] [] [] | 16
|
||||
cpio | [] [] | 14
|
||||
darkstat | [] [] [] () () | 12
|
||||
diffutils | [] [] [] | 23
|
||||
e2fsprogs | [] [] | 6
|
||||
enscript | [] [] | 12
|
||||
error | [] [] [] | 15
|
||||
fetchmail | [] [] | 11
|
||||
fileutils | [] [] [] [] [] | 17
|
||||
findutils | [] [] [] [] [] [] | 29
|
||||
flex | [] [] | 13
|
||||
fslint | | 3
|
||||
gas | [] | 3
|
||||
gawk | [] [] | 12
|
||||
gbiff | | 4
|
||||
gcal | [] [] | 4
|
||||
gcc | [] | 4
|
||||
gettext | [] [] [] [] [] | 16
|
||||
gettext-examples | [] [] [] [] [] | 14
|
||||
gettext-runtime | [] [] [] [] [] [] [] [] | 22
|
||||
gettext-tools | [] [] [] [] [] [] | 14
|
||||
gimp-print | [] [] | 10
|
||||
gliv | | 3
|
||||
glunarclock | [] [] [] | 13
|
||||
gnubiff | | 3
|
||||
gnucash | [] [] | 9
|
||||
gnucash-glossary | [] [] [] | 8
|
||||
gnupg | [] [] [] [] | 17
|
||||
gpe-aerial | [] | 7
|
||||
gpe-beam | [] | 8
|
||||
gpe-calendar | [] [] [] [] | 13
|
||||
gpe-clock | [] [] [] | 10
|
||||
gpe-conf | [] [] | 9
|
||||
gpe-contacts | [] [] [] | 11
|
||||
gpe-edit | [] [] [] [] [] | 12
|
||||
gpe-go | | 5
|
||||
gpe-login | [] [] [] [] [] | 13
|
||||
gpe-ownerinfo | [] [] [] [] | 13
|
||||
gpe-sketchbook | [] [] | 9
|
||||
gpe-su | [] [] [] | 10
|
||||
gpe-taskmanager | [] [] [] | 10
|
||||
gpe-timesheet | [] [] [] [] | 12
|
||||
gpe-today | [] [] [] [] [] | 13
|
||||
gpe-todo | [] [] [] [] | 12
|
||||
gphoto2 | [] [] [] | 11
|
||||
gprof | [] [] | 9
|
||||
gpsdrive | [] [] | 3
|
||||
gramadoir | [] | 5
|
||||
grep | [] [] [] [] | 26
|
||||
gretl | | 3
|
||||
gtick | | 7
|
||||
hello | [] [] [] [] [] | 34
|
||||
id-utils | [] [] | 12
|
||||
indent | [] [] [] [] | 21
|
||||
iso_3166 | [] [] [] [] [] [] [] | 27
|
||||
iso_3166_1 | [] [] [] | 16
|
||||
iso_3166_2 | | 0
|
||||
iso_3166_3 | | 2
|
||||
iso_4217 | [] [] [] [] [] [] | 24
|
||||
iso_639 | | 1
|
||||
jpilot | [] [] [] [] [] | 9
|
||||
jtag | [] | 2
|
||||
jwhois | () [] [] | 11
|
||||
kbd | [] [] | 11
|
||||
latrine | | 2
|
||||
ld | [] [] | 5
|
||||
libc | [] [] [] [] | 20
|
||||
libgpewidget | [] [] [] [] | 13
|
||||
libiconv | [] [] [] [] [] [] [] [] | 27
|
||||
lifelines | [] | 2
|
||||
lilypond | [] | 3
|
||||
lingoteach | | 2
|
||||
lingoteach_lessons | () | 0
|
||||
lynx | [] [] [] | 14
|
||||
m4 | [] [] | 15
|
||||
mailutils | | 5
|
||||
make | [] [] [] | 16
|
||||
man-db | [] | 5
|
||||
minicom | | 11
|
||||
mysecretdiary | [] [] | 10
|
||||
nano | [] [] [] [] | 17
|
||||
nano_1_0 | [] [] [] | 17
|
||||
opcodes | [] [] | 6
|
||||
parted | [] [] [] | 15
|
||||
ptx | [] [] | 22
|
||||
python | | 0
|
||||
radius | | 4
|
||||
recode | [] [] [] | 20
|
||||
rpm | [] [] | 9
|
||||
screem | [] [] | 2
|
||||
scrollkeeper | [] [] [] | 15
|
||||
sed | [] [] [] [] [] [] | 24
|
||||
sh-utils | [] [] | 14
|
||||
shared-mime-info | [] [] | 7
|
||||
sharutils | [] [] [] [] | 17
|
||||
silky | () | 3
|
||||
skencil | [] | 6
|
||||
sketch | [] | 6
|
||||
soundtracker | [] [] | 7
|
||||
sp | [] | 3
|
||||
tar | [] [] [] [] [] | 24
|
||||
texinfo | [] [] [] | 14
|
||||
textutils | [] [] [] [] | 16
|
||||
tin | | 1
|
||||
tp-robot | | 2
|
||||
tuxpaint | [] [] [] [] [] | 29
|
||||
unicode-han-tra... | | 0
|
||||
unicode-transla... | | 2
|
||||
util-linux | [] [] | 15
|
||||
vorbis-tools | | 8
|
||||
wastesedge | | 0
|
||||
wdiff | [] [] [] | 18
|
||||
wget | [] [] [] [] [] [] [] [] | 24
|
||||
xchat | [] [] [] [] [] | 15
|
||||
xfree86_xkb_xml | [] [] [] [] [] | 11
|
||||
xpad | | 5
|
||||
+-----------------------------------------------------+
|
||||
63 teams sk sl sr sv ta th tr uk ven vi wa xh zh_CN zh_TW zu
|
||||
131 domains 47 19 28 83 0 0 59 13 1 1 11 0 22 22 0 1373
|
||||
|
||||
Some counters in the preceding matrix are higher than the number of
|
||||
visible blocks let us expect. This is because a few extra PO files are
|
||||
used for implementing regional variants of languages, or language
|
||||
dialects.
|
||||
|
||||
For a PO file in the matrix above to be effective, the package to
|
||||
which it applies should also have been internationalized and
|
||||
distributed as such by its maintainer. There might be an observable
|
||||
lag between the mere existence a PO file and its wide availability in a
|
||||
distribution.
|
||||
|
||||
If January 2004 seems to be old, you may fetch a more recent copy of
|
||||
this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date
|
||||
matrix with full percentage details can be found at
|
||||
`http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
|
||||
|
||||
Using `gettext' in new packages
|
||||
===============================
|
||||
|
||||
If you are writing a freely available program and want to
|
||||
internationalize it you are welcome to use GNU `gettext' in your
|
||||
package. Of course you have to respect the GNU Library General Public
|
||||
License which covers the use of the GNU `gettext' library. This means
|
||||
in particular that even non-free programs can use `libintl' as a shared
|
||||
library, whereas only free software can use `libintl' as a static
|
||||
library or use modified versions of `libintl'.
|
||||
|
||||
Once the sources are changed appropriately and the setup can handle
|
||||
the use of `gettext' the only thing missing are the translations. The
|
||||
Free Translation Project is also available for packages which are not
|
||||
developed inside the GNU project. Therefore the information given above
|
||||
applies also for every other Free Software Project. Contact
|
||||
`translation@iro.umontreal.ca' to make the `.pot' files available to
|
||||
the translation teams.
|
||||
|
||||
16
AUTHORS
Normal file
16
AUTHORS
Normal file
@ -0,0 +1,16 @@
|
||||
drF_ckoff <dfo@antex.ru> - current maintainer, all questions/suggestions
|
||||
should go to him.
|
||||
Eugene Morozov <roshiajin@yahoo.com> - author of gtkballs
|
||||
|
||||
Theme authors:
|
||||
Default - Roxana Chernogolova <roxana@ericos.e-burg.ru>
|
||||
klines - Roman Razilov <Roman.Razilov@gmx.de>
|
||||
5balls-Big - Paul Sherman <psherma1@rochester.rr.com>
|
||||
|
||||
Translations:
|
||||
Polish - Przemys³aw Su³ek <pbs@linux.net.pl>
|
||||
German - Hermann J. Beckers <beckers@st-oneline.de>
|
||||
French - ObiTuarY <obituary@freshmeat.net>
|
||||
|
||||
Manual page:
|
||||
Christoph Thompson <obituary@freshmeat.net>
|
||||
340
COPYING
Normal file
340
COPYING
Normal file
@ -0,0 +1,340 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) 19yy <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) 19yy name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
||||
274
ChangeLog
Normal file
274
ChangeLog
Normal file
@ -0,0 +1,274 @@
|
||||
2001-10-09 Sergey Pinaev <dfo@antex.ru>
|
||||
* ChangeLog:
|
||||
No more messages will go here, till i set up cvs for
|
||||
gtkballs...
|
||||
|
||||
1999-10-08 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* src/license.h, src/license.c, src/gtkballs.c:
|
||||
Make about window modal, this is better than another global variable.
|
||||
|
||||
1999-09-04 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* src/gtkballs.c:
|
||||
Fixed a bug that allowed user to open several ``About'' windows.
|
||||
|
||||
1999-09-04 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* src/gtkballs.c:
|
||||
Fixed a bug that allowed user to open several ``About'' windows.
|
||||
|
||||
1999-09-01 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* ChangeLog: committed changelog.
|
||||
|
||||
* gtkballs.spec: Fixed several bugs in the spec file.
|
||||
|
||||
* ChangeLog: Updated ChangeLog.
|
||||
|
||||
* gtkballs.spec:
|
||||
Changed my Email address because I check yahoo mail seldom.
|
||||
Added installation of gnome icon.
|
||||
|
||||
* GtkBalls.desktop: Added gnome icon.
|
||||
|
||||
* src/interface.c: Reverted changes to init_names_scores_and_dates.
|
||||
|
||||
* gnome-gtkballs.png, gtkballs.tiff: New nice icons from Obituary
|
||||
|
||||
1999-09-01 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* gtkballs.spec: Fixed several bugs in the spec file.
|
||||
|
||||
* ChangeLog: Updated ChangeLog.
|
||||
|
||||
* gtkballs.spec:
|
||||
Changed my Email address because I check yahoo mail seldom.
|
||||
Added installation of gnome icon.
|
||||
|
||||
* GtkBalls.desktop: Added gnome icon.
|
||||
|
||||
* src/interface.c: Reverted changes to init_names_scores_and_dates.
|
||||
|
||||
* gnome-gtkballs.png, gtkballs.tiff: New nice icons from Obituary
|
||||
|
||||
1999-09-01 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* gtkballs.spec:
|
||||
Changed my Email address because I check yahoo mail seldom.
|
||||
Added installation of gnome icon.
|
||||
|
||||
* GtkBalls.desktop: Added gnome icon.
|
||||
|
||||
* src/interface.c: Reverted changes to init_names_scores_and_dates.
|
||||
|
||||
* gnome-gtkballs.png, gtkballs.tiff: New nice icons from Obituary
|
||||
|
||||
1999-08-30 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* ChangeLog: Updated ChangeLog
|
||||
|
||||
* src/gtkballs.c: Added tearoffs to menu.
|
||||
|
||||
* po/ru.po: Translated game rules.
|
||||
|
||||
1999-08-30 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* src/gtkballs.c: Added tearoffs to menu.
|
||||
|
||||
* po/ru.po: Translated game rules.
|
||||
|
||||
1999-08-29 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* po/ru.po: Updated Russian translation
|
||||
|
||||
* gtkballs.spec: Added Russian description of the package.
|
||||
|
||||
* README: Updated link to gtkballs site.
|
||||
|
||||
1999-08-28 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* README.russian: Update link to gtkballs site
|
||||
|
||||
1999-08-26 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* po/fr.po: Updated French translation
|
||||
|
||||
1999-08-15 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* ChangeLog, doc/gtkballs.6x, src/gtkballs.c:
|
||||
Added dialog box with game rules and fixed a typo in the manpage
|
||||
|
||||
1999-08-16 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* src/gtkballs.c (show_rules): Implemented dialog box with game
|
||||
rules.
|
||||
|
||||
1999-07-29 ObiTuarY <obituary@freshmeat.net>
|
||||
|
||||
* */*.c: Made all buttons have the same size for a better look and
|
||||
consistency (added 5 or 6 gtk_widget_set_usize()).
|
||||
|
||||
* */GtkBalls.dekstop: Added GNOME desktop file.
|
||||
|
||||
* */gtkballs.spec: Updated the spec file.
|
||||
|
||||
1999-07-26 Pablo Saratxaga <srtxg@chanae.alphanet.ch>
|
||||
|
||||
* */*.*: Some fixes to make gettext work properly. Added
|
||||
config.h. It needs to be #include'd before all other headers.
|
||||
|
||||
1999-07-25 ObiTuarY <obituary@freshmeat.net>
|
||||
|
||||
* po/fr.po: New french translation. The exact translation should
|
||||
be "Meilleur score" but "High score" is acceptable since it is
|
||||
widely used in France/Belgium and that the widget that holds this
|
||||
string is too small for the exact translation. Translators for
|
||||
fr_CA probably will not want to use this, because Quebec people
|
||||
are right not to use English words everywhere ;-) Something
|
||||
Widget-wise should be done.
|
||||
|
||||
* configure.in: Add fr to the message catalogs to be installed.
|
||||
|
||||
* po/Makefile.am: Add fr to the message catalogs list.
|
||||
|
||||
* src/scoreboard.c: s/PREFIX/LOCALSTATEDIR/g, score becomes
|
||||
gtkballs-scores.
|
||||
|
||||
* gtkballs-data/Makefile.am: install gtkballs-scores in
|
||||
$(localstatedir). $(datadir)/gtkballs doesn't need to be mode 777
|
||||
anymore. but $(localstatedir)/gtkballs-scores needs to be mode
|
||||
666.
|
||||
|
||||
* src/gtkballs.c: s/PREFIX/DATADIR/g.
|
||||
|
||||
* src/license.c: s/PREFIX/DATADIR/g.
|
||||
|
||||
* */*.am: Use localstatedir, datadir whenever necessary.
|
||||
|
||||
* src/Makefile.am: Use nlsdir instead of localedir.
|
||||
|
||||
* Gtkballs.desktop: New file.
|
||||
|
||||
* Regenerated automake, autoconf etc... with the latest version ?
|
||||
(automake 1.4, autoconf 2.13). I think it will need some
|
||||
re-regeneration probably.
|
||||
|
||||
|
||||
1999-07-24 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* src/gtkballs.c (animate_ball): Fixed bug that prevented
|
||||
compilation of GtkBalls with non-gcc compiler (thanks to Jeff
|
||||
Moyer USG <jmoyer@zk3.dec.com>).
|
||||
|
||||
1999-07-22 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* src/scoreboard.c: Redone score handling code, fixed some bugs,
|
||||
added date field to scores.
|
||||
(write_score): block signals to prevent possible file corruption.
|
||||
|
||||
* src/license.c (gnu_license_dialog): Reworked ugly code used for
|
||||
reading license from disk.
|
||||
|
||||
1999-07-21 Eugene Morozov <jmv@lucifer.dorms.spbu.ru>
|
||||
|
||||
* src/gtkballs.c (about): Changed style of the about dialog box
|
||||
to allow translation and simpler modification of the about text.
|
||||
|
||||
1999-06-16 Eugene Morozov <john@lucifer.dorms.spbu ru>
|
||||
|
||||
* Added support for GNU gettext.
|
||||
|
||||
1999-06-01 Eugene Morozov <john@lucifer.dorms.spbu ru>
|
||||
|
||||
* GtkBalls uses GNU autoconf now.
|
||||
|
||||
1999-04-01 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* gtkballs.c (about): Disabled resizing about dialog box.
|
||||
interface.c:
|
||||
interface.h:
|
||||
gtkballs.c (button_press_event): if fifth ball will appear,
|
||||
don't increase user's score--it's not his merit
|
||||
|
||||
1999-03-30 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* preferences.c, prefrences.h: Put under GNU license.
|
||||
|
||||
1999-03-29 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* gtkballs.c:
|
||||
Added nice footprints.
|
||||
Fancier about dialog.
|
||||
|
||||
1999-03-28 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* preferences.c, prefrences.h, gtkballs.c, interface.c:
|
||||
Added prefrences dialog.
|
||||
|
||||
1999-03-25 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* Removed sound temporarily.
|
||||
|
||||
1999-03-07 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* Makefile: Improved installation script.
|
||||
|
||||
1999-03-03 Nikolay A. Chervonetsky <nike@duffy.gbank.nsk.su>
|
||||
|
||||
* interface.c: Fixes for multiuser system. Now game saves score
|
||||
even if there's more than one user playing.
|
||||
|
||||
1999-02-25 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* gtkballs.c: Drawing fixes.
|
||||
|
||||
1999-02-19 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* gtkballs.c, sound_thread.c, interface.c:
|
||||
Added sound support.
|
||||
|
||||
1999-02-10 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* gtkballs.c (about): Changed version number in About dialog.
|
||||
|
||||
* interface.c, interface.h, gtkballs.c: Many improvements, now
|
||||
gtkballs needs less pixmaps and the code is more readable.
|
||||
|
||||
1999-02-06 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* interface.c: fixed old annoying bug.
|
||||
|
||||
1999-02-04 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* Replaced buttons with menu.
|
||||
|
||||
1999-02-01 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* Fixed possible memory leak in license.c
|
||||
|
||||
* Merged repeating code in interface.c in one block.
|
||||
|
||||
1999-01-01 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* Now GNU license reads from disk when user presses "Show license"
|
||||
button.
|
||||
|
||||
1998-11-15 Andrey Zakhvatov <andy@icc.surw.chel.su>
|
||||
|
||||
* Some patches for compiling gtkballs-1.02 'out-of-the-box' on
|
||||
FreeBSD system. They implement some of my suggestions about
|
||||
gtkballs, for example, prefix-aware and file/directories naming
|
||||
conventions.
|
||||
|
||||
1998-10-04 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* Enhanced install script a little bit
|
||||
|
||||
1998-09-06 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* Fixed bug in hiscore handling
|
||||
|
||||
1998-08-26 Eugene V. Morozov <john@lucifer.dorms.spbu.ru>
|
||||
|
||||
* First ready for release version
|
||||
7
INSTALL
Normal file
7
INSTALL
Normal file
@ -0,0 +1,7 @@
|
||||
Installation is pretty simple:
|
||||
|
||||
./configure
|
||||
make
|
||||
make install
|
||||
|
||||
Questions? Suggestions? Mail to dfo@antex.ru
|
||||
20
Makefile.am
Normal file
20
Makefile.am
Normal file
@ -0,0 +1,20 @@
|
||||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
SUBDIRS = m4 po doc src gtkballs-data
|
||||
|
||||
EXTRA_DIST = README.russian \
|
||||
TODO \
|
||||
gnome-gtkballs.png \
|
||||
gtkballs.lsm \
|
||||
gtkballs.spec
|
||||
|
||||
install-data-local:
|
||||
$(mkinstalldirs) $(DESTDIR)$(datadir)/gtkballs
|
||||
$(INSTALL_DATA) COPYING $(DESTDIR)$(datadir)/gtkballs
|
||||
|
||||
install-data-hook:
|
||||
if [ ! -f $(DESTDIR)$(localstatedir)/gtkballs-scores ]; then touch $(DESTDIR)$(localstatedir)/gtkballs-scores; fi
|
||||
if [ "${UID}" = 0 ]; then chgrp games $(DESTDIR)$(localstatedir)/gtkballs-scores; fi
|
||||
chmod 0664 $(DESTDIR)$(localstatedir)/gtkballs-scores
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
567
Makefile.in
Normal file
567
Makefile.in
Normal file
@ -0,0 +1,567 @@
|
||||
# Makefile.in generated by automake 1.7.9 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
|
||||
# Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = .
|
||||
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
host_triplet = @host@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
GLIB_CFLAGS = @GLIB_CFLAGS@
|
||||
GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
|
||||
GLIB_LIBS = @GLIB_LIBS@
|
||||
GLIB_MKENUMS = @GLIB_MKENUMS@
|
||||
GMSGFMT = @GMSGFMT@
|
||||
GOBJECT_QUERY = @GOBJECT_QUERY@
|
||||
GTK_CFLAGS = @GTK_CFLAGS@
|
||||
GTK_LIBS = @GTK_LIBS@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
INTLLIBS = @INTLLIBS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBICONV = @LIBICONV@
|
||||
LIBINTL = @LIBINTL@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LN_S = @LN_S@
|
||||
LTLIBICONV = @LTLIBICONV@
|
||||
LTLIBINTL = @LTLIBINTL@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKINSTALLDIRS = @MKINSTALLDIRS@
|
||||
MSGFMT = @MSGFMT@
|
||||
MSGMERGE = @MSGMERGE@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
POSUB = @POSUB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
USE_NLS = @USE_NLS@
|
||||
VERSION = @VERSION@
|
||||
XGETTEXT = @XGETTEXT@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
datadir = @datadir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
nlsdir = @nlsdir@
|
||||
oldincludedir = @oldincludedir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
|
||||
SUBDIRS = m4 po doc src gtkballs-data
|
||||
|
||||
EXTRA_DIST = README.russian \
|
||||
TODO \
|
||||
gnome-gtkballs.png \
|
||||
gtkballs.lsm \
|
||||
gtkballs.spec
|
||||
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
subdir = .
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = config.h
|
||||
CONFIG_CLEAN_FILES = gtkballs.lsm gtkballs.spec
|
||||
DIST_SOURCES =
|
||||
|
||||
RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
|
||||
ps-recursive install-info-recursive uninstall-info-recursive \
|
||||
all-recursive install-data-recursive install-exec-recursive \
|
||||
installdirs-recursive install-recursive uninstall-recursive \
|
||||
check-recursive installcheck-recursive
|
||||
DIST_COMMON = README $(srcdir)/Makefile.in $(srcdir)/configure \
|
||||
ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL Makefile.am NEWS \
|
||||
TODO aclocal.m4 config.guess config.h.in config.rpath \
|
||||
config.sub configure configure.in depcomp gtkballs.lsm.in \
|
||||
gtkballs.spec.in install-sh ltmain.sh missing mkinstalldirs
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
all: config.h
|
||||
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
||||
|
||||
.SUFFIXES:
|
||||
|
||||
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
||||
configure.lineno
|
||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)
|
||||
|
||||
$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
$(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
|
||||
cd $(srcdir) && $(AUTOCONF)
|
||||
|
||||
$(ACLOCAL_M4): configure.in m4/codeset.m4 m4/gettext.m4 m4/glibc21.m4 m4/iconv.m4 m4/intdiv0.m4 m4/intmax.m4 m4/inttypes-pri.m4 m4/inttypes.m4 m4/inttypes_h.m4 m4/isc-posix.m4 m4/lcmessage.m4 m4/lib-ld.m4 m4/lib-link.m4 m4/lib-prefix.m4 m4/longdouble.m4 m4/longlong.m4 m4/nls.m4 m4/po.m4 m4/printf-posix.m4 m4/progtest.m4 m4/signed.m4 m4/size_max.m4 m4/stdint_h.m4 m4/uintmax_t.m4 m4/ulonglong.m4 m4/wchar_t.m4 m4/wint_t.m4 m4/xsize.m4
|
||||
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
|
||||
config.h: stamp-h1
|
||||
@if test ! -f $@; then \
|
||||
rm -f stamp-h1; \
|
||||
$(MAKE) stamp-h1; \
|
||||
else :; fi
|
||||
|
||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
||||
@rm -f stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
||||
|
||||
$(srcdir)/config.h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && $(AUTOHEADER)
|
||||
touch $(srcdir)/config.h.in
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config.h stamp-h1
|
||||
gtkballs.lsm: $(top_builddir)/config.status gtkballs.lsm.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
gtkballs.spec: $(top_builddir)/config.status gtkballs.spec.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
uninstall-info-am:
|
||||
|
||||
# This directory's subdirectories are mostly independent; you can cd
|
||||
# into them and run `make' without going through this Makefile.
|
||||
# To change the values of `make' variables: instead of editing Makefiles,
|
||||
# (1) if the variable is set in `config.status', edit `config.status'
|
||||
# (which will cause the Makefiles to be regenerated when you run `make');
|
||||
# (2) otherwise, pass the desired values on the `make' command line.
|
||||
$(RECURSIVE_TARGETS):
|
||||
@set fnord $$MAKEFLAGS; amf=$$2; \
|
||||
dot_seen=no; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
dot_seen=yes; \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done; \
|
||||
if test "$$dot_seen" = "no"; then \
|
||||
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
||||
fi; test -z "$$fail"
|
||||
|
||||
mostlyclean-recursive clean-recursive distclean-recursive \
|
||||
maintainer-clean-recursive:
|
||||
@set fnord $$MAKEFLAGS; amf=$$2; \
|
||||
dot_seen=no; \
|
||||
case "$@" in \
|
||||
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
||||
*) list='$(SUBDIRS)' ;; \
|
||||
esac; \
|
||||
rev=''; for subdir in $$list; do \
|
||||
if test "$$subdir" = "."; then :; else \
|
||||
rev="$$subdir $$rev"; \
|
||||
fi; \
|
||||
done; \
|
||||
rev="$$rev ."; \
|
||||
target=`echo $@ | sed s/-recursive//`; \
|
||||
for subdir in $$rev; do \
|
||||
echo "Making $$target in $$subdir"; \
|
||||
if test "$$subdir" = "."; then \
|
||||
local_target="$$target-am"; \
|
||||
else \
|
||||
local_target="$$target"; \
|
||||
fi; \
|
||||
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
||||
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
|
||||
done && test -z "$$fail"
|
||||
tags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
||||
done
|
||||
ctags-recursive:
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
||||
done
|
||||
|
||||
ETAGS = etags
|
||||
ETAGSFLAGS =
|
||||
|
||||
CTAGS = ctags
|
||||
CTAGSFLAGS =
|
||||
|
||||
tags: TAGS
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
mkid -fID $$unique
|
||||
|
||||
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
if (etags --etags-include --version) >/dev/null 2>&1; then \
|
||||
include_option=--etags-include; \
|
||||
else \
|
||||
include_option=--include; \
|
||||
fi; \
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -f $$subdir/TAGS && \
|
||||
tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
|
||||
fi; \
|
||||
done; \
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(ETAGS_ARGS)$$tags$$unique" \
|
||||
|| $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
top_distdir = .
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
|
||||
am__remove_distdir = \
|
||||
{ test ! -d $(distdir) \
|
||||
|| { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
|
||||
&& rm -fr $(distdir); }; }
|
||||
|
||||
GZIP_ENV = --best
|
||||
distuninstallcheck_listfiles = find . -type f -print
|
||||
distcleancheck_listfiles = find . -type f -print
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
mkdir $(distdir)
|
||||
$(mkinstalldirs) $(distdir)/. $(distdir)/doc $(distdir)/po
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkinstalldirs) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
list='$(SUBDIRS)'; for subdir in $$list; do \
|
||||
if test "$$subdir" = .; then :; else \
|
||||
test -d $(distdir)/$$subdir \
|
||||
|| mkdir $(distdir)/$$subdir \
|
||||
|| exit 1; \
|
||||
(cd $$subdir && \
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$(top_distdir)" \
|
||||
distdir=../$(distdir)/$$subdir \
|
||||
distdir) \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r $(distdir)
|
||||
dist-gzip: distdir
|
||||
$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
dist dist-all: distdir
|
||||
$(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
$(am__remove_distdir)
|
||||
GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
|
||||
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
||||
mkdir $(distdir)/_build
|
||||
mkdir $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& cd $(distdir)/_build \
|
||||
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
|
||||
$(DISTCHECK_CONFIGURE_FLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
||||
distuninstallcheck \
|
||||
&& chmod -R a-w "$$dc_install_base" \
|
||||
&& ({ \
|
||||
(cd ../.. && $(mkinstalldirs) "$$dc_destdir") \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
||||
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
||||
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
||||
&& rm -rf "$$dc_destdir" \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) dist-gzip \
|
||||
&& rm -f $(distdir).tar.gz \
|
||||
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck
|
||||
$(am__remove_distdir)
|
||||
@echo "$(distdir).tar.gz is ready for distribution" | \
|
||||
sed 'h;s/./=/g;p;x;p;x'
|
||||
distuninstallcheck:
|
||||
@cd $(distuninstallcheck_dir) \
|
||||
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|
||||
|| { echo "ERROR: files left after uninstall:" ; \
|
||||
if test -n "$(DESTDIR)"; then \
|
||||
echo " (check DESTDIR support)"; \
|
||||
fi ; \
|
||||
$(distuninstallcheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
distcleancheck: distclean
|
||||
@if test '$(srcdir)' = . ; then \
|
||||
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
||||
exit 1 ; \
|
||||
fi
|
||||
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
||||
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
||||
$(distcleancheck_listfiles) ; \
|
||||
exit 1; } >&2
|
||||
check-am: all-am
|
||||
check: check-recursive
|
||||
all-am: Makefile config.h
|
||||
installdirs: installdirs-recursive
|
||||
installdirs-am:
|
||||
|
||||
install: install-recursive
|
||||
install-exec: install-exec-recursive
|
||||
install-data: install-data-recursive
|
||||
uninstall: uninstall-recursive
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-recursive
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-recursive
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic distclean-hdr distclean-tags
|
||||
|
||||
dvi: dvi-recursive
|
||||
|
||||
dvi-am:
|
||||
|
||||
info: info-recursive
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-data-local
|
||||
@$(NORMAL_INSTALL)
|
||||
$(MAKE) $(AM_MAKEFLAGS) install-data-hook
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-recursive
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-recursive
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-recursive
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-recursive
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-recursive
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am
|
||||
|
||||
uninstall-info: uninstall-info-recursive
|
||||
|
||||
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \
|
||||
clean-generic clean-recursive ctags ctags-recursive dist \
|
||||
dist-all dist-gzip distcheck distclean distclean-generic \
|
||||
distclean-hdr distclean-recursive distclean-tags distcleancheck \
|
||||
distdir distuninstallcheck dvi dvi-am dvi-recursive info \
|
||||
info-am info-recursive install install-am install-data \
|
||||
install-data-am install-data-local install-data-recursive \
|
||||
install-exec install-exec-am install-exec-recursive \
|
||||
install-info install-info-am install-info-recursive install-man \
|
||||
install-recursive install-strip installcheck installcheck-am \
|
||||
installdirs installdirs-am installdirs-recursive \
|
||||
maintainer-clean maintainer-clean-generic \
|
||||
maintainer-clean-recursive mostlyclean mostlyclean-generic \
|
||||
mostlyclean-recursive pdf pdf-am pdf-recursive ps ps-am \
|
||||
ps-recursive tags tags-recursive uninstall uninstall-am \
|
||||
uninstall-info-am uninstall-info-recursive uninstall-recursive
|
||||
|
||||
|
||||
install-data-local:
|
||||
$(mkinstalldirs) $(DESTDIR)$(datadir)/gtkballs
|
||||
$(INSTALL_DATA) COPYING $(DESTDIR)$(datadir)/gtkballs
|
||||
|
||||
install-data-hook:
|
||||
if [ ! -f $(DESTDIR)$(localstatedir)/gtkballs-scores ]; then touch $(DESTDIR)$(localstatedir)/gtkballs-scores; fi
|
||||
if [ "${UID}" = 0 ]; then chgrp games $(DESTDIR)$(localstatedir)/gtkballs-scores; fi
|
||||
chmod 0664 $(DESTDIR)$(localstatedir)/gtkballs-scores
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
98
NEWS
Normal file
98
NEWS
Normal file
@ -0,0 +1,98 @@
|
||||
New in GtkBalls 3.1.5
|
||||
- Make pointer highlighting parameters configurable
|
||||
- New theme from 5balls - 5balls-Big
|
||||
|
||||
New in GtkBalls 3.1.4
|
||||
- Polished and fixed gfx behavior (f.e. cell movement now works while ball
|
||||
is moving/destroying)
|
||||
- Migration to GtkUIManager
|
||||
- Scores now saved in utf-8 encoding (old scores will NOT be lost =)
|
||||
- Workaround stupid gtk+ bug in window resizing code
|
||||
|
||||
New in GtkBalls 3.1.3
|
||||
- Fixed critical bugs in pathfinding functions
|
||||
- New theme - "mascots"
|
||||
- Updates to auto*/gettext
|
||||
|
||||
New in GtkBalls 3.1.2
|
||||
- Fixed big bug that lead to sigsegv
|
||||
- Added saving/loading of keyboard accelerators
|
||||
|
||||
New in GtkBalls 3.1.1
|
||||
- Added ability to delete saved games from save/load game dialog
|
||||
- UI polishing
|
||||
- translations updates
|
||||
- small bug fixes
|
||||
- compilation fixes
|
||||
- gtkballs.spec fixes
|
||||
|
||||
New in GtkBalls 3.1.0
|
||||
- Now images in themes can be in any format that gdk-pixbuf understand
|
||||
- Game can be played with keyboard only (use arrows and space/enter)
|
||||
- Hilight cell "under the pointer" (for keyboard play)
|
||||
- Updated gtkballs(6x) man page
|
||||
- Death of score writer process now handled correctly (mostly)
|
||||
- compilation with gcc 3.x fixes
|
||||
- code reorganization (should be much readable now)
|
||||
- migration to autoconf 2.54/automake 1.6.3/gettext 0.11.5
|
||||
|
||||
New in GtkBalls 3.0.1
|
||||
- Optional "Time Limit" per move. (If you think, that this function works
|
||||
unexpected - tell me, why it should work otherwise...)
|
||||
- Removed world writable score file.
|
||||
- auto* fixes (PLD), cosmetic fixes, documentation fixes (Debian).
|
||||
|
||||
New in GtkBalls 3.0.0
|
||||
- Port to gtk2, bugfixes, code cleanups, ui polishing, etc...
|
||||
- Rules now stored in preferences file
|
||||
- Updated Polish translation
|
||||
|
||||
New in GtkBalls 2.2.0
|
||||
- Game rules now customizable. (i.e. you can set board size different
|
||||
than 9x9)
|
||||
- "Input name" dialog now works as expected
|
||||
- Save game file format changed to plain text.
|
||||
- Score file format changed. Though old format still supported.
|
||||
- Updated Polish translation
|
||||
|
||||
New in GtkBalls 2.1.1
|
||||
- Save/Load game
|
||||
- Option to turn off "disappearing" animation
|
||||
- Dont try to load 'Default' theme at startup twice if not found
|
||||
|
||||
New in GtkBalls 2.1
|
||||
- "Advanced" themes.
|
||||
|
||||
New in GtkBalls 2.0.1
|
||||
- Fixed the "Undo" bug: after a move resulting in a score growth, the "Undo"
|
||||
did not decrease the score.
|
||||
- New translations: Polish and German
|
||||
- Updated French translation. (But i dont know French, so review it
|
||||
if you know =)
|
||||
- Dialogs can be closed by hitting "ESC" key
|
||||
|
||||
New in GtkBalls 2.0
|
||||
- Undo (backport from 2.1 branch)
|
||||
(i got no bug reports for 2.0pre1 release, so i add "undo" option
|
||||
and release it as 2.0)
|
||||
|
||||
New in GtkBalls 2.0pre1
|
||||
- New maintainer (drF_ckoff)
|
||||
- i18n fixes
|
||||
- Removed almost all *set_usize()'s. Now all sizes
|
||||
is up to gtk+. Must look better on all combinations
|
||||
of themes/font sizes...
|
||||
- Beautyfied alot all dialogs
|
||||
- Some sort of keyboard control in dialogs (not yet
|
||||
finished)
|
||||
- "Theme" support. (see THEME)
|
||||
- New default theme + 2 extra themes
|
||||
- Removed dependence on libxml, now saves settings
|
||||
in plain text ~/.gtkballsrc
|
||||
- Not "user visible" changes: all sources now has
|
||||
"drF_ckoff'ish" indentation =)
|
||||
|
||||
New in GtkBalls 1.05pre1
|
||||
- Support for GNU autocong and GNU gettext
|
||||
- Minor changes to game rules
|
||||
- Improvements of user interface
|
||||
36
README.md
Normal file
36
README.md
Normal file
@ -0,0 +1,36 @@
|
||||
This is the README for gtkballs.
|
||||
|
||||
|
||||
## Requirements
|
||||
|
||||
- a working X11 setup
|
||||
- gtk+ version 2.x
|
||||
|
||||
## Compiling
|
||||
|
||||
```
|
||||
$ ./configure
|
||||
$ make
|
||||
```
|
||||
|
||||
## Installing
|
||||
|
||||
```
|
||||
$ make install
|
||||
```
|
||||
|
||||
## Bugs
|
||||
|
||||
If you find a bug, tell me what you did (or fix it and send a
|
||||
patch).
|
||||
|
||||
## Development
|
||||
|
||||
You can participate in development of GtkBalls by sending patches or pull requests.
|
||||
|
||||
## Contacts
|
||||
drF_ckoff <dfo@antex.ru>
|
||||
|
||||
Eugene Morozov <gtkballs@emorozov.net>
|
||||
|
||||
GtkBalls homepage: http://gtkballs.antex.ru
|
||||
27
README.russian
Normal file
27
README.russian
Normal file
@ -0,0 +1,27 @@
|
||||
1. Требования к системе
|
||||
|
||||
- работающая система X Window System
|
||||
- библиотека gtk+ версии 2.x
|
||||
|
||||
2. Компиляция
|
||||
|
||||
$ ./configure
|
||||
$ make
|
||||
|
||||
3. Установка
|
||||
|
||||
$ make install
|
||||
|
||||
5. Ошибки
|
||||
|
||||
Если вы найдете ошибку, напишите мне при каких условиях она возникла
|
||||
(или исправьте ее и пришлите мне заплатку)
|
||||
|
||||
6. Разработка
|
||||
|
||||
Вы можете принять участие в разработке, посылая мне заплатки.
|
||||
|
||||
--
|
||||
drF_ckoff <dfo@antex.ru>
|
||||
Евгений Морозов <roshiajin@yahoo.com>
|
||||
Домашняя страница GtkBalls: http://gtkballs.antex.ru
|
||||
34
TODO
Normal file
34
TODO
Normal file
@ -0,0 +1,34 @@
|
||||
p - partialy done, c - done, but not checked =), d - done, but leaved
|
||||
here for some reason
|
||||
|
||||
very high priority:
|
||||
[ ] all read()s/write()s doesnt check return value =/
|
||||
but i'm too lazy to fix it =)
|
||||
|
||||
primary:
|
||||
[ ] looks like we have memory leaks =/
|
||||
[d] After turning on "show next balls" next balls isnt shown till
|
||||
redraw occurs. gtk+ bug? probably. (added workaround)
|
||||
|
||||
secondary:
|
||||
[ ] option to remove not only "lines", but just some "connected"
|
||||
"balls". i.e:
|
||||
|
||||
ggg
|
||||
g
|
||||
gg
|
||||
|
||||
and, maybe, squares/triangles/etc.
|
||||
[ ] make "internal" theme
|
||||
[ ] recursive calls of new_game()/new_turn(). should i change it?
|
||||
[ ] fix "casuses" in preferences ("next" already checked in reinit_board())
|
||||
|
||||
never?:
|
||||
[d] remove *sleep*'s (now, when i think of it, i think it is unneeded)
|
||||
(replaced with gettimeofday() + gtk_iteration_do())
|
||||
[ ] "unlimited" undo (tell me the reason to do that =/)
|
||||
[ ] sound (_what_ sound must be in such game? blam blam
|
||||
when ball jumps? it will annoy player, imho.
|
||||
music? why dont turn on some cd? so, if
|
||||
someone can tell me what fsckin sounds should
|
||||
be here i will think about adding it...)
|
||||
3901
aclocal.m4
vendored
Normal file
3901
aclocal.m4
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1388
config.guess
vendored
Executable file
1388
config.guess
vendored
Executable file
File diff suppressed because it is too large
Load Diff
72
config.h.in
Normal file
72
config.h.in
Normal file
@ -0,0 +1,72 @@
|
||||
/* config.h.in. Generated from configure.in by autoheader. */
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
|
||||
/* Define if the GNU dcgettext() function is already present or preinstalled.
|
||||
*/
|
||||
#undef HAVE_DCGETTEXT
|
||||
|
||||
/* Define if the GNU gettext() function is already present or preinstalled. */
|
||||
#undef HAVE_GETTEXT
|
||||
|
||||
/* Define if you have the iconv() function. */
|
||||
#undef HAVE_ICONV
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the <signal.h> header file. */
|
||||
#undef HAVE_SIGNAL_H
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define to 1 if you have the <sys/param.h> header file. */
|
||||
#undef HAVE_SYS_PARAM_H
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
/* Name of package */
|
||||
#undef PACKAGE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#undef PACKAGE_NAME
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#undef PACKAGE_STRING
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
513
config.rpath
Executable file
513
config.rpath
Executable file
@ -0,0 +1,513 @@
|
||||
#! /bin/sh
|
||||
# Output a system dependent set of variables, describing how to set the
|
||||
# run time search path of shared libraries in an executable.
|
||||
#
|
||||
# Copyright 1996-2002 Free Software Foundation, Inc.
|
||||
# Taken from GNU libtool, 2001
|
||||
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
#
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
#
|
||||
# The first argument passed to this file is the canonical host specification,
|
||||
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
|
||||
# or
|
||||
# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
|
||||
# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld
|
||||
# should be set by the caller.
|
||||
#
|
||||
# The set of defined variables is at the end of this script.
|
||||
|
||||
# All known linkers require a `.a' archive for static linking (except M$VC,
|
||||
# which needs '.lib').
|
||||
libext=a
|
||||
shlibext=
|
||||
|
||||
host="$1"
|
||||
host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
||||
host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
||||
host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
||||
|
||||
wl=
|
||||
if test "$GCC" = yes; then
|
||||
wl='-Wl,'
|
||||
else
|
||||
case "$host_os" in
|
||||
aix3* | aix4* | aix5*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
hpux9* | hpux10* | hpux11*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
irix5* | irix6*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
linux*)
|
||||
echo '__INTEL_COMPILER' > conftest.$ac_ext
|
||||
if $CC -E conftest.$ac_ext >/dev/null | grep __INTEL_COMPILER >/dev/null
|
||||
then
|
||||
:
|
||||
else
|
||||
# Intel icc
|
||||
wl='-Qoption,ld,'
|
||||
fi
|
||||
;;
|
||||
osf3* | osf4* | osf5*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
solaris*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
sunos4*)
|
||||
wl='-Qoption ld '
|
||||
;;
|
||||
sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
|
||||
if test "x$host_vendor" = xsni; then
|
||||
wl='-LD'
|
||||
else
|
||||
wl='-Wl,'
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
hardcode_libdir_flag_spec=
|
||||
hardcode_libdir_separator=
|
||||
hardcode_direct=no
|
||||
hardcode_minus_L=no
|
||||
|
||||
case "$host_os" in
|
||||
cygwin* | mingw* | pw32*)
|
||||
# FIXME: the MSVC++ port hasn't been tested in a loooong time
|
||||
# When not using gcc, we currently assume that we are using
|
||||
# Microsoft Visual C++.
|
||||
if test "$GCC" != yes; then
|
||||
with_gnu_ld=no
|
||||
fi
|
||||
;;
|
||||
openbsd*)
|
||||
with_gnu_ld=no
|
||||
;;
|
||||
esac
|
||||
|
||||
ld_shlibs=yes
|
||||
if test "$with_gnu_ld" = yes; then
|
||||
case "$host_os" in
|
||||
aix3* | aix4* | aix5*)
|
||||
# On AIX, the GNU linker is very broken
|
||||
ld_shlibs=no
|
||||
;;
|
||||
amigaos*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_minus_L=yes
|
||||
# Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
|
||||
# that the semantics of dynamic libraries on AmigaOS, at least up
|
||||
# to version 4, is to share data among multiple programs linked
|
||||
# with the same dynamic library. Since this doesn't match the
|
||||
# behavior of shared libraries on other platforms, we can use
|
||||
# them.
|
||||
ld_shlibs=no
|
||||
;;
|
||||
beos*)
|
||||
if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
|
||||
:
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
cygwin* | mingw* | pw32*)
|
||||
# hardcode_libdir_flag_spec is actually meaningless, as there is
|
||||
# no search path for DLLs.
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
;;
|
||||
solaris* | sysv5*)
|
||||
if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
|
||||
ld_shlibs=no
|
||||
elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
|
||||
:
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
sunos4*)
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
*)
|
||||
if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
|
||||
:
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
if test "$ld_shlibs" = yes; then
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
fi
|
||||
else
|
||||
case "$host_os" in
|
||||
aix3*)
|
||||
# Note: this linker hardcodes the directories in LIBPATH if there
|
||||
# are no directories specified by -L.
|
||||
hardcode_minus_L=yes
|
||||
if test "$GCC" = yes; then
|
||||
# Neither direct hardcoding nor static linking is supported with a
|
||||
# broken collect2.
|
||||
hardcode_direct=unsupported
|
||||
fi
|
||||
;;
|
||||
aix4* | aix5*)
|
||||
if test "$host_cpu" = ia64; then
|
||||
# On IA64, the linker does run time linking by default, so we don't
|
||||
# have to do anything special.
|
||||
aix_use_runtimelinking=no
|
||||
else
|
||||
aix_use_runtimelinking=no
|
||||
# Test if we are trying to use run time linking or normal
|
||||
# AIX style linking. If -brtl is somewhere in LDFLAGS, we
|
||||
# need to do runtime linking.
|
||||
case $host_os in aix4.[23]|aix4.[23].*|aix5*)
|
||||
for ld_flag in $LDFLAGS; do
|
||||
if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
|
||||
aix_use_runtimelinking=yes
|
||||
break
|
||||
fi
|
||||
done
|
||||
esac
|
||||
fi
|
||||
hardcode_direct=yes
|
||||
hardcode_libdir_separator=':'
|
||||
if test "$GCC" = yes; then
|
||||
case $host_os in aix4.[012]|aix4.[012].*)
|
||||
collect2name=`${CC} -print-prog-name=collect2`
|
||||
if test -f "$collect2name" && \
|
||||
strings "$collect2name" | grep resolve_lib_name >/dev/null
|
||||
then
|
||||
# We have reworked collect2
|
||||
hardcode_direct=yes
|
||||
else
|
||||
# We have old collect2
|
||||
hardcode_direct=unsupported
|
||||
hardcode_minus_L=yes
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_libdir_separator=
|
||||
fi
|
||||
esac
|
||||
fi
|
||||
if test "$aix_use_runtimelinking" = yes; then
|
||||
hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib'
|
||||
else
|
||||
if test "$host_cpu" = ia64; then
|
||||
hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
|
||||
else
|
||||
hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib'
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
amigaos*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_minus_L=yes
|
||||
# see comment about different semantics on the GNU ld section
|
||||
ld_shlibs=no
|
||||
;;
|
||||
cygwin* | mingw* | pw32*)
|
||||
# When not using gcc, we currently assume that we are using
|
||||
# Microsoft Visual C++.
|
||||
# hardcode_libdir_flag_spec is actually meaningless, as there is
|
||||
# no search path for DLLs.
|
||||
hardcode_libdir_flag_spec=' '
|
||||
libext=lib
|
||||
;;
|
||||
darwin* | rhapsody*)
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
freebsd1*)
|
||||
ld_shlibs=no
|
||||
;;
|
||||
freebsd2.2*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
freebsd2*)
|
||||
hardcode_direct=yes
|
||||
hardcode_minus_L=yes
|
||||
;;
|
||||
freebsd*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
hpux9* | hpux10* | hpux11*)
|
||||
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
hardcode_direct=yes
|
||||
hardcode_minus_L=yes # Not in the search PATH, but as the default
|
||||
# location of the library.
|
||||
;;
|
||||
irix5* | irix6*)
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
;;
|
||||
netbsd*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
newsos6)
|
||||
hardcode_direct=yes
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
;;
|
||||
openbsd*)
|
||||
hardcode_direct=yes
|
||||
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
|
||||
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||
else
|
||||
case "$host_os" in
|
||||
openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
;;
|
||||
*)
|
||||
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
;;
|
||||
os2*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_minus_L=yes
|
||||
;;
|
||||
osf3*)
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
;;
|
||||
osf4* | osf5*)
|
||||
if test "$GCC" = yes; then
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
else
|
||||
# Both cc and cxx compiler support -rpath directly
|
||||
hardcode_libdir_flag_spec='-rpath $libdir'
|
||||
fi
|
||||
hardcode_libdir_separator=:
|
||||
;;
|
||||
sco3.2v5*)
|
||||
;;
|
||||
solaris*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
;;
|
||||
sunos4*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_direct=yes
|
||||
hardcode_minus_L=yes
|
||||
;;
|
||||
sysv4)
|
||||
if test "x$host_vendor" = xsno; then
|
||||
hardcode_direct=yes # is this really true???
|
||||
else
|
||||
hardcode_direct=no # Motorola manual says yes, but my tests say they lie
|
||||
fi
|
||||
;;
|
||||
sysv4.3*)
|
||||
;;
|
||||
sysv5*)
|
||||
hardcode_libdir_flag_spec=
|
||||
;;
|
||||
uts4*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
;;
|
||||
dgux*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
;;
|
||||
sysv4*MP*)
|
||||
if test -d /usr/nec; then
|
||||
ld_shlibs=yes
|
||||
fi
|
||||
;;
|
||||
sysv4.2uw2*)
|
||||
hardcode_direct=yes
|
||||
hardcode_minus_L=no
|
||||
;;
|
||||
sysv5uw7* | unixware7*)
|
||||
;;
|
||||
*)
|
||||
ld_shlibs=no
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Check dynamic linker characteristics
|
||||
libname_spec='lib$name'
|
||||
sys_lib_dlsearch_path_spec="/lib /usr/lib"
|
||||
sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
|
||||
case "$host_os" in
|
||||
aix3*)
|
||||
shlibext=so
|
||||
;;
|
||||
aix4* | aix5*)
|
||||
shlibext=so
|
||||
;;
|
||||
amigaos*)
|
||||
shlibext=ixlibrary
|
||||
;;
|
||||
beos*)
|
||||
shlibext=so
|
||||
;;
|
||||
bsdi4*)
|
||||
shlibext=so
|
||||
sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
|
||||
sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
|
||||
;;
|
||||
cygwin* | mingw* | pw32*)
|
||||
case $GCC,$host_os in
|
||||
yes,cygwin*)
|
||||
shlibext=dll.a
|
||||
;;
|
||||
yes,mingw*)
|
||||
shlibext=dll
|
||||
sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g"`
|
||||
;;
|
||||
yes,pw32*)
|
||||
shlibext=dll
|
||||
;;
|
||||
*)
|
||||
shlibext=dll
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
darwin* | rhapsody*)
|
||||
shlibext=dylib
|
||||
;;
|
||||
freebsd1*)
|
||||
;;
|
||||
freebsd*)
|
||||
shlibext=so
|
||||
;;
|
||||
gnu*)
|
||||
shlibext=so
|
||||
;;
|
||||
hpux9* | hpux10* | hpux11*)
|
||||
shlibext=sl
|
||||
;;
|
||||
irix5* | irix6*)
|
||||
shlibext=so
|
||||
case "$host_os" in
|
||||
irix5*)
|
||||
libsuff= shlibsuff=
|
||||
;;
|
||||
*)
|
||||
case $LD in
|
||||
*-32|*"-32 ") libsuff= shlibsuff= ;;
|
||||
*-n32|*"-n32 ") libsuff=32 shlibsuff=N32 ;;
|
||||
*-64|*"-64 ") libsuff=64 shlibsuff=64 ;;
|
||||
*) libsuff= shlibsuff= ;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
|
||||
sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
|
||||
;;
|
||||
linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
|
||||
;;
|
||||
linux-gnu*)
|
||||
shlibext=so
|
||||
;;
|
||||
netbsd*)
|
||||
shlibext=so
|
||||
;;
|
||||
newsos6)
|
||||
shlibext=so
|
||||
;;
|
||||
openbsd*)
|
||||
shlibext=so
|
||||
;;
|
||||
os2*)
|
||||
libname_spec='$name'
|
||||
shlibext=dll
|
||||
;;
|
||||
osf3* | osf4* | osf5*)
|
||||
shlibext=so
|
||||
sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
|
||||
sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
|
||||
;;
|
||||
sco3.2v5*)
|
||||
shlibext=so
|
||||
;;
|
||||
solaris*)
|
||||
shlibext=so
|
||||
;;
|
||||
sunos4*)
|
||||
shlibext=so
|
||||
;;
|
||||
sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
|
||||
shlibext=so
|
||||
case "$host_vendor" in
|
||||
motorola)
|
||||
sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
uts4*)
|
||||
shlibext=so
|
||||
;;
|
||||
dgux*)
|
||||
shlibext=so
|
||||
;;
|
||||
sysv4*MP*)
|
||||
if test -d /usr/nec; then
|
||||
shlibext=so
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
|
||||
escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||
escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||
escaped_sys_lib_search_path_spec=`echo "X$sys_lib_search_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||
escaped_sys_lib_dlsearch_path_spec=`echo "X$sys_lib_dlsearch_path_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||
|
||||
sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
|
||||
|
||||
# How to pass a linker flag through the compiler.
|
||||
wl="$escaped_wl"
|
||||
|
||||
# Static library suffix (normally "a").
|
||||
libext="$libext"
|
||||
|
||||
# Shared library suffix (normally "so").
|
||||
shlibext="$shlibext"
|
||||
|
||||
# Flag to hardcode \$libdir into a binary during linking.
|
||||
# This must work even if \$libdir does not exist.
|
||||
hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
|
||||
|
||||
# Whether we need a single -rpath flag with a separated argument.
|
||||
hardcode_libdir_separator="$hardcode_libdir_separator"
|
||||
|
||||
# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
|
||||
# resulting binary.
|
||||
hardcode_direct="$hardcode_direct"
|
||||
|
||||
# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
|
||||
# resulting binary.
|
||||
hardcode_minus_L="$hardcode_minus_L"
|
||||
|
||||
# Compile-time system search path for libraries
|
||||
sys_lib_search_path_spec="$escaped_sys_lib_search_path_spec"
|
||||
|
||||
# Run-time system search path for libraries
|
||||
sys_lib_dlsearch_path_spec="$escaped_sys_lib_dlsearch_path_spec"
|
||||
|
||||
EOF
|
||||
1489
config.sub
vendored
Executable file
1489
config.sub
vendored
Executable file
File diff suppressed because it is too large
Load Diff
35
configure.in
Normal file
35
configure.in
Normal file
@ -0,0 +1,35 @@
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
dnl $Id: configure.in,v 1.2 1999/11/20 22:30:16 jmv Exp $
|
||||
AC_INIT(src/gtkballs.c)
|
||||
AM_INIT_AUTOMAKE(gtkballs, 3.1.5)
|
||||
AC_SUBST(VERSION)
|
||||
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
dnl Checks for programs.
|
||||
AC_PROG_CC
|
||||
AC_PROG_INSTALL
|
||||
AC_PROG_LN_S
|
||||
|
||||
AM_GNU_GETTEXT([external])
|
||||
|
||||
nlsdir='${prefix}/share/locale'
|
||||
AC_SUBST(nlsdir)
|
||||
|
||||
AM_PATH_GLIB_2_0(2.0.0)
|
||||
AM_PATH_GTK_2_0(2.0.0)
|
||||
|
||||
dnl Checks for header files.
|
||||
AC_STDC_HEADERS
|
||||
AC_HAVE_HEADERS(sys/param.h)
|
||||
AC_HAVE_HEADERS(signal.h)
|
||||
|
||||
AC_OUTPUT([gtkballs.lsm
|
||||
Makefile
|
||||
src/Makefile
|
||||
doc/Makefile
|
||||
doc/gtkballs.6x
|
||||
po/Makefile.in
|
||||
m4/Makefile
|
||||
gtkballs.spec
|
||||
gtkballs-data/Makefile])
|
||||
479
depcomp
Executable file
479
depcomp
Executable file
@ -0,0 +1,479 @@
|
||||
#! /bin/sh
|
||||
|
||||
# depcomp - compile a program generating dependencies as side-effects
|
||||
# Copyright 1999, 2000, 2003 Free Software Foundation, Inc.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
# 02111-1307, USA.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
||||
|
||||
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
||||
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
# `libtool' can also be set to `yes' or `no'.
|
||||
|
||||
if test -z "$depfile"; then
|
||||
base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'`
|
||||
dir=`echo "$object" | sed 's,/.*$,/,'`
|
||||
if test "$dir" = "$object"; then
|
||||
dir=
|
||||
fi
|
||||
# FIXME: should be _deps on DOS.
|
||||
depfile="$dir.deps/$base"
|
||||
fi
|
||||
|
||||
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
||||
|
||||
rm -f "$tmpdepfile"
|
||||
|
||||
# Some modes work just like other modes, but use different flags. We
|
||||
# parameterize here, but still list the modes in the big case below,
|
||||
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
||||
# here, because this file can only contain one case statement.
|
||||
if test "$depmode" = hp; then
|
||||
# HP compiler uses -M and no extra arg.
|
||||
gccflag=-M
|
||||
depmode=gcc
|
||||
fi
|
||||
|
||||
if test "$depmode" = dashXmstdout; then
|
||||
# This is just like dashmstdout with a different argument.
|
||||
dashmflag=-xM
|
||||
depmode=dashmstdout
|
||||
fi
|
||||
|
||||
case "$depmode" in
|
||||
gcc3)
|
||||
## gcc 3 implements dependency tracking that does exactly what
|
||||
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
||||
## it if -MD -MP comes after the -MF stuff. Hmm.
|
||||
"$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
mv "$tmpdepfile" "$depfile"
|
||||
;;
|
||||
|
||||
gcc)
|
||||
## There are various ways to get dependency output from gcc. Here's
|
||||
## why we pick this rather obscure method:
|
||||
## - Don't want to use -MD because we'd like the dependencies to end
|
||||
## up in a subdir. Having to rename by hand is ugly.
|
||||
## (We might end up doing this anyway to support other compilers.)
|
||||
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
||||
## -MM, not -M (despite what the docs say).
|
||||
## - Using -M directly means running the compiler twice (even worse
|
||||
## than renaming).
|
||||
if test -z "$gccflag"; then
|
||||
gccflag=-MD,
|
||||
fi
|
||||
"$@" -Wp,"$gccflag$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
|
||||
## The second -e expression handles DOS-style file names with drive letters.
|
||||
sed -e 's/^[^:]*: / /' \
|
||||
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
||||
## This next piece of magic avoids the `deleted header file' problem.
|
||||
## The problem is that when a header file which appears in a .P file
|
||||
## is deleted, the dependency causes make to die (because there is
|
||||
## typically no way to rebuild the header). We avoid this by adding
|
||||
## dummy dependencies for each header file. Too bad gcc doesn't do
|
||||
## this for us directly.
|
||||
tr ' ' '
|
||||
' < "$tmpdepfile" |
|
||||
## Some versions of gcc put a space before the `:'. On the theory
|
||||
## that the space means something, we add a space to the output as
|
||||
## well.
|
||||
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
## correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
hp)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
sgi)
|
||||
if test "$libtool" = yes; then
|
||||
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
||||
else
|
||||
"$@" -MDupdate "$tmpdepfile"
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
|
||||
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
||||
echo "$object : \\" > "$depfile"
|
||||
|
||||
# Clip off the initial element (the dependent). Don't try to be
|
||||
# clever and replace this with sed code, as IRIX sed won't handle
|
||||
# lines with more than a fixed number of characters (4096 in
|
||||
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
||||
# the IRIX cc adds comments like `#:fec' to the end of the
|
||||
# dependency line.
|
||||
tr ' ' '
|
||||
' < "$tmpdepfile" \
|
||||
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
|
||||
tr '
|
||||
' ' ' >> $depfile
|
||||
echo >> $depfile
|
||||
|
||||
# The second pass generates a dummy entry for each header file.
|
||||
tr ' ' '
|
||||
' < "$tmpdepfile" \
|
||||
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
||||
>> $depfile
|
||||
else
|
||||
# The sourcefile does not contain any dependencies, so just
|
||||
# store a dummy comment line, to avoid errors with the Makefile
|
||||
# "include basename.Plo" scheme.
|
||||
echo "#dummy" > "$depfile"
|
||||
fi
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
aix)
|
||||
# The C for AIX Compiler uses -M and outputs the dependencies
|
||||
# in a .u file. In older versions, this file always lives in the
|
||||
# current directory. Also, the AIX compiler puts `$object:' at the
|
||||
# start of each line; $object doesn't have directory information.
|
||||
# Version 6 uses the directory in both cases.
|
||||
stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
|
||||
tmpdepfile="$stripped.u"
|
||||
if test "$libtool" = yes; then
|
||||
"$@" -Wc,-M
|
||||
else
|
||||
"$@" -M
|
||||
fi
|
||||
stat=$?
|
||||
|
||||
if test -f "$tmpdepfile"; then :
|
||||
else
|
||||
stripped=`echo "$stripped" | sed 's,^.*/,,'`
|
||||
tmpdepfile="$stripped.u"
|
||||
fi
|
||||
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
if test -f "$tmpdepfile"; then
|
||||
outname="$stripped.o"
|
||||
# Each line is of the form `foo.o: dependent.h'.
|
||||
# Do two passes, one to just change these to
|
||||
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||
sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
|
||||
sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
|
||||
else
|
||||
# The sourcefile does not contain any dependencies, so just
|
||||
# store a dummy comment line, to avoid errors with the Makefile
|
||||
# "include basename.Plo" scheme.
|
||||
echo "#dummy" > "$depfile"
|
||||
fi
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
icc)
|
||||
# Intel's C compiler understands `-MD -MF file'. However on
|
||||
# icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c
|
||||
# ICC 7.0 will fill foo.d with something like
|
||||
# foo.o: sub/foo.c
|
||||
# foo.o: sub/foo.h
|
||||
# which is wrong. We want:
|
||||
# sub/foo.o: sub/foo.c
|
||||
# sub/foo.o: sub/foo.h
|
||||
# sub/foo.c:
|
||||
# sub/foo.h:
|
||||
# ICC 7.1 will output
|
||||
# foo.o: sub/foo.c sub/foo.h
|
||||
# and will wrap long lines using \ :
|
||||
# foo.o: sub/foo.c ... \
|
||||
# sub/foo.h ... \
|
||||
# ...
|
||||
|
||||
"$@" -MD -MF "$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
# Each line is of the form `foo.o: dependent.h',
|
||||
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
|
||||
# Do two passes, one to just change these to
|
||||
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
|
||||
# Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
# correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" |
|
||||
sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
tru64)
|
||||
# The Tru64 compiler uses -MD to generate dependencies as a side
|
||||
# effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'.
|
||||
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
||||
# dependencies in `foo.d' instead, so we check for that too.
|
||||
# Subdirectories are respected.
|
||||
dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
|
||||
test "x$dir" = "x$object" && dir=
|
||||
base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
|
||||
|
||||
if test "$libtool" = yes; then
|
||||
tmpdepfile1="$dir.libs/$base.lo.d"
|
||||
tmpdepfile2="$dir.libs/$base.d"
|
||||
"$@" -Wc,-MD
|
||||
else
|
||||
tmpdepfile1="$dir$base.o.d"
|
||||
tmpdepfile2="$dir$base.d"
|
||||
"$@" -MD
|
||||
fi
|
||||
|
||||
stat=$?
|
||||
if test $stat -eq 0; then :
|
||||
else
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
if test -f "$tmpdepfile1"; then
|
||||
tmpdepfile="$tmpdepfile1"
|
||||
else
|
||||
tmpdepfile="$tmpdepfile2"
|
||||
fi
|
||||
if test -f "$tmpdepfile"; then
|
||||
sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
|
||||
# That's a tab and a space in the [].
|
||||
sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
|
||||
else
|
||||
echo "#dummy" > "$depfile"
|
||||
fi
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
#nosideeffect)
|
||||
# This comment above is used by automake to tell side-effect
|
||||
# dependency tracking mechanisms from slower ones.
|
||||
|
||||
dashmstdout)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout, regardless of -o.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test $1 != '--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
# Remove `-o $object'.
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
test -z "$dashmflag" && dashmflag=-M
|
||||
# Require at least two characters before searching for `:'
|
||||
# in the target name. This is to cope with DOS-style filenames:
|
||||
# a dependency such as `c:/foo/bar' could be seen as target `c' otherwise.
|
||||
"$@" $dashmflag |
|
||||
sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
cat < "$tmpdepfile" > "$depfile"
|
||||
tr ' ' '
|
||||
' < "$tmpdepfile" | \
|
||||
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
## correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
dashXmstdout)
|
||||
# This case only exists to satisfy depend.m4. It is never actually
|
||||
# run, as this mode is specially recognized in the preamble.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
makedepend)
|
||||
"$@" || exit $?
|
||||
# Remove any Libtool call
|
||||
if test "$libtool" = yes; then
|
||||
while test $1 != '--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
# X makedepend
|
||||
shift
|
||||
cleared=no
|
||||
for arg in "$@"; do
|
||||
case $cleared in
|
||||
no)
|
||||
set ""; shift
|
||||
cleared=yes ;;
|
||||
esac
|
||||
case "$arg" in
|
||||
-D*|-I*)
|
||||
set fnord "$@" "$arg"; shift ;;
|
||||
# Strip any option that makedepend may not understand. Remove
|
||||
# the object too, otherwise makedepend will parse it as a source file.
|
||||
-*|$object)
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"; shift ;;
|
||||
esac
|
||||
done
|
||||
obj_suffix="`echo $object | sed 's/^.*\././'`"
|
||||
touch "$tmpdepfile"
|
||||
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
||||
rm -f "$depfile"
|
||||
cat < "$tmpdepfile" > "$depfile"
|
||||
sed '1,2d' "$tmpdepfile" | tr ' ' '
|
||||
' | \
|
||||
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
## correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
||||
;;
|
||||
|
||||
cpp)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test $1 != '--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
# Remove `-o $object'.
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
"$@" -E |
|
||||
sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' |
|
||||
sed '$ s: \\$::' > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
cat < "$tmpdepfile" >> "$depfile"
|
||||
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvisualcpp)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout, regardless of -o,
|
||||
# because we must use -o when running libtool.
|
||||
"$@" || exit $?
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case "$arg" in
|
||||
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
||||
set fnord "$@"
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
done
|
||||
"$@" -E |
|
||||
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
. "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile"
|
||||
echo " " >> "$depfile"
|
||||
. "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
none)
|
||||
exec "$@"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Unknown depmode $depmode" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
3
doc/Makefile.am
Normal file
3
doc/Makefile.am
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
EXTRA_DIST = gtkballs.6x
|
||||
man_MANS = gtkballs.6x
|
||||
333
doc/Makefile.in
Normal file
333
doc/Makefile.in
Normal file
@ -0,0 +1,333 @@
|
||||
# Makefile.in generated by automake 1.7.9 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
|
||||
# Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ..
|
||||
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
host_triplet = @host@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
GLIB_CFLAGS = @GLIB_CFLAGS@
|
||||
GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
|
||||
GLIB_LIBS = @GLIB_LIBS@
|
||||
GLIB_MKENUMS = @GLIB_MKENUMS@
|
||||
GMSGFMT = @GMSGFMT@
|
||||
GOBJECT_QUERY = @GOBJECT_QUERY@
|
||||
GTK_CFLAGS = @GTK_CFLAGS@
|
||||
GTK_LIBS = @GTK_LIBS@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
INTLLIBS = @INTLLIBS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBICONV = @LIBICONV@
|
||||
LIBINTL = @LIBINTL@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LN_S = @LN_S@
|
||||
LTLIBICONV = @LTLIBICONV@
|
||||
LTLIBINTL = @LTLIBINTL@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKINSTALLDIRS = @MKINSTALLDIRS@
|
||||
MSGFMT = @MSGFMT@
|
||||
MSGMERGE = @MSGMERGE@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
POSUB = @POSUB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
USE_NLS = @USE_NLS@
|
||||
VERSION = @VERSION@
|
||||
XGETTEXT = @XGETTEXT@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
datadir = @datadir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
nlsdir = @nlsdir@
|
||||
oldincludedir = @oldincludedir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
|
||||
EXTRA_DIST = gtkballs.6x
|
||||
man_MANS = gtkballs.6x
|
||||
subdir = doc
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES = gtkballs.6x
|
||||
DIST_SOURCES =
|
||||
|
||||
NROFF = nroff
|
||||
MANS = $(man_MANS)
|
||||
DIST_COMMON = $(srcdir)/Makefile.in Makefile.am gtkballs.6x.in
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu doc/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
|
||||
gtkballs.6x: $(top_builddir)/config.status gtkballs.6x.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
|
||||
uninstall-info-am:
|
||||
|
||||
man6dir = $(mandir)/man6
|
||||
install-man6: $(man6_MANS) $(man_MANS)
|
||||
@$(NORMAL_INSTALL)
|
||||
$(mkinstalldirs) $(DESTDIR)$(man6dir)
|
||||
@list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \
|
||||
l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
|
||||
for i in $$l2; do \
|
||||
case "$$i" in \
|
||||
*.6*) list="$$list $$i" ;; \
|
||||
esac; \
|
||||
done; \
|
||||
for i in $$list; do \
|
||||
if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
|
||||
else file=$$i; fi; \
|
||||
ext=`echo $$i | sed -e 's/^.*\\.//'`; \
|
||||
case "$$ext" in \
|
||||
6*) ;; \
|
||||
*) ext='6' ;; \
|
||||
esac; \
|
||||
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
|
||||
inst=`echo $$inst | sed -e 's/^.*\///'`; \
|
||||
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
|
||||
echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man6dir)/$$inst"; \
|
||||
$(INSTALL_DATA) $$file $(DESTDIR)$(man6dir)/$$inst; \
|
||||
done
|
||||
uninstall-man6:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \
|
||||
l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
|
||||
for i in $$l2; do \
|
||||
case "$$i" in \
|
||||
*.6*) list="$$list $$i" ;; \
|
||||
esac; \
|
||||
done; \
|
||||
for i in $$list; do \
|
||||
ext=`echo $$i | sed -e 's/^.*\\.//'`; \
|
||||
case "$$ext" in \
|
||||
6*) ;; \
|
||||
*) ext='6' ;; \
|
||||
esac; \
|
||||
inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
|
||||
inst=`echo $$inst | sed -e 's/^.*\///'`; \
|
||||
inst=`echo $$inst | sed '$(transform)'`.$$ext; \
|
||||
echo " rm -f $(DESTDIR)$(man6dir)/$$inst"; \
|
||||
rm -f $(DESTDIR)$(man6dir)/$$inst; \
|
||||
done
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
top_distdir = ..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkinstalldirs) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile $(MANS)
|
||||
|
||||
installdirs:
|
||||
$(mkinstalldirs) $(DESTDIR)$(man6dir)
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-man
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man: install-man6
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am uninstall-man
|
||||
|
||||
uninstall-man: uninstall-man6
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic distclean \
|
||||
distclean-generic distdir dvi dvi-am info info-am install \
|
||||
install-am install-data install-data-am install-exec \
|
||||
install-exec-am install-info install-info-am install-man \
|
||||
install-man6 install-strip installcheck installcheck-am \
|
||||
installdirs maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \
|
||||
uninstall-am uninstall-info-am uninstall-man uninstall-man6
|
||||
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
144
doc/gtkballs.6x
Normal file
144
doc/gtkballs.6x
Normal file
@ -0,0 +1,144 @@
|
||||
.TH GTKBALLS 6x "A simple logic game" "Version 3.1.5"
|
||||
.SH NAME
|
||||
gtkballs \- A simple logic game
|
||||
.SH SYNOPSIS
|
||||
.B gtkballs
|
||||
[options]
|
||||
.SH DESCRIPTION
|
||||
This manual page documents
|
||||
.BR GtkBalls.
|
||||
.BR GtkBalls
|
||||
is a simple logic game. The goal of this game is to make the highest score
|
||||
by matching a number of balls of the same color in a horizontal, vertical or
|
||||
diagonal line. For further information on how to play this game refer to the
|
||||
rules section in this manual page.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
.I "\--display [hostname:dpy]"
|
||||
Specify what display GtkBalls should use. See
|
||||
.BR X
|
||||
(1x) for more information on the syntax of hostname and display.
|
||||
.SH RULES
|
||||
The standard play area of GtkBalls is a 9x9 grid (it can be changed through
|
||||
"Rules" option in ingame menu). When GtkBalls is first started a number of
|
||||
balls are placed in a random manner on the grid. Balls are in different colors
|
||||
(and/or shape). You may move balls on the grid by selecting them and selecting
|
||||
an empty square on the grid as destination for the ball you selected. Balls
|
||||
will only move if they are not blocked by other balls. Each time you move a
|
||||
ball, unless you score some points, new balls appear in a random manner on the
|
||||
grid. If the grid is full then the game is lost. However this is bound to
|
||||
happen, your goal is to make the highest score. In order to do this you must
|
||||
make lines in a vertical, horizontal or diagonal way with balls of the same
|
||||
color. By default a line must have at least five balls of the same color (it
|
||||
can also be changed through "Rules" option in ingame menu). Making a line of
|
||||
minimum amount of the balls, specifed in rules, will earn you twice the points
|
||||
for your score. If you make lines over minimum amount of the balls it will earn
|
||||
you even more points. In order to help you decide which ball you are going to
|
||||
move, there is an indicator on top of the grid that shows what colors the next
|
||||
balls that will appear on the grid will be.
|
||||
.SH USING THE INTERFACE
|
||||
GtkBalls is a graphical program using the Gtk+ windowing toolkit. This section
|
||||
describes it's user interface.
|
||||
.SS THE GAME MENU
|
||||
.TP
|
||||
.I New
|
||||
Selecting this menu entry will abandon the current game and start a new one or
|
||||
start another game if you just finished one. You may use the keyboard shortcut
|
||||
.BR CTRL-N
|
||||
to do this also.
|
||||
.TP
|
||||
.I Rules
|
||||
Selecting this menu entry will open "Rules" dialog box, where you can set board
|
||||
width and height, number of different objects to appear on the board, number
|
||||
of objects that will appear on the board after each turn and number of
|
||||
objects that must form the line to eliminate it. You may use the keyboard
|
||||
shortcut
|
||||
.BR CTRL-R
|
||||
to do this also.
|
||||
.TP
|
||||
.I Save
|
||||
Selecting this menu entry will open "Save game" dialog box, where you can save
|
||||
current game to play it later. You may use the keyboard shortcut
|
||||
.BR CTRL-S
|
||||
to do this also.
|
||||
.TP
|
||||
.I Load
|
||||
Selecting this menu entry will open "Load game" dialog box, where you can load
|
||||
previously saved game. You may use the keyboard shortcut
|
||||
.BR CTRL-L
|
||||
to do this also.
|
||||
.TP
|
||||
.I Hall Of Fame
|
||||
Selecting this menu entry will open a dialog box showing the high scores. Only
|
||||
the ten best scores are shown. This dialog also displays the name of the person
|
||||
who achieved a high score and it's date. You may use the keyboard shortcut
|
||||
.BR CTRL-H
|
||||
to do this also.
|
||||
.TP
|
||||
.I Quit
|
||||
Selecting this menu entry will quit GtkBalls. You may use the keyboard shortcut
|
||||
.BR CTRL-Q
|
||||
to do the same thing.
|
||||
.SS THE EDIT MENU
|
||||
.TP
|
||||
.I Undo
|
||||
Selecting this menu entry will undo your last move. You may use the keyboard
|
||||
shortcut
|
||||
.BR CTRL-U
|
||||
to do this also.
|
||||
.SS THE SETTINGS MENU
|
||||
.TP
|
||||
.I Preferences
|
||||
Selecting this menu entry will open the "Preferences" dialog box. You may use
|
||||
the keyboard shortcut
|
||||
.BR CTRL-P
|
||||
to open it also.
|
||||
This dialog box allows you to set some options. Click on a check box to
|
||||
activate or deactivate them. Click on the theme name to select it.
|
||||
Then click on the
|
||||
.B Apply
|
||||
button to save your settings or click on
|
||||
.B Ok
|
||||
button to save your settings and close this dialog box.
|
||||
You can disable the showing of footprints,
|
||||
path of the ball, color of the next balls indicator, animation of disappearing
|
||||
of the ball and set time limit per move from this dialog box.
|
||||
.SS THE HELP MENU
|
||||
.TP
|
||||
.I Rules
|
||||
Selecting this menu entry will display a dialog box describing rules of the
|
||||
game. You may use the keyboard shortcut
|
||||
.BR F1
|
||||
to open it also.
|
||||
.TP
|
||||
.I About
|
||||
Selecting this menu entry will display a dialog with the logo and the
|
||||
copyright information of GtkBalls. You may use the keyboard shortcut
|
||||
.BR CTRL-A
|
||||
to open it also. For more details on the license, click
|
||||
on the
|
||||
.BR "Show license"
|
||||
button. This will open another dialog box where you can read the GNU General
|
||||
Public License.
|
||||
.SH SEE ALSO
|
||||
The
|
||||
.BR GtkBalls
|
||||
web site at:
|
||||
.BR http://gtkballs.antex.ru
|
||||
.SH AUTHORS
|
||||
.BR GtkBalls
|
||||
was created by Eugene Morozov <jmv@online.ru>.
|
||||
This manual page was created by Christoph Thompson <obituary@freshmeat.net>.
|
||||
Current maintainer of
|
||||
.BR GtkBalls
|
||||
and this manual page is drF_ckoff
|
||||
<dfo@antex.ru>.
|
||||
.SH COPYRIGHT
|
||||
.BR GtkBalls
|
||||
is copyright 1998, 1999 Eugene V. Morozov under the terms of the GNU
|
||||
General Public License.
|
||||
.BR GtkBalls
|
||||
is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU General Public License as published by the Free Software
|
||||
Foundation; either version 2 of the license, or (at your option) any
|
||||
later version.
|
||||
144
doc/gtkballs.6x.in
Normal file
144
doc/gtkballs.6x.in
Normal file
@ -0,0 +1,144 @@
|
||||
.TH GTKBALLS 6x "A simple logic game" "Version @VERSION@"
|
||||
.SH NAME
|
||||
gtkballs \- A simple logic game
|
||||
.SH SYNOPSIS
|
||||
.B gtkballs
|
||||
[options]
|
||||
.SH DESCRIPTION
|
||||
This manual page documents
|
||||
.BR GtkBalls.
|
||||
.BR GtkBalls
|
||||
is a simple logic game. The goal of this game is to make the highest score
|
||||
by matching a number of balls of the same color in a horizontal, vertical or
|
||||
diagonal line. For further information on how to play this game refer to the
|
||||
rules section in this manual page.
|
||||
.SH OPTIONS
|
||||
.TP
|
||||
.I "\--display [hostname:dpy]"
|
||||
Specify what display GtkBalls should use. See
|
||||
.BR X
|
||||
(1x) for more information on the syntax of hostname and display.
|
||||
.SH RULES
|
||||
The standard play area of GtkBalls is a 9x9 grid (it can be changed through
|
||||
"Rules" option in ingame menu). When GtkBalls is first started a number of
|
||||
balls are placed in a random manner on the grid. Balls are in different colors
|
||||
(and/or shape). You may move balls on the grid by selecting them and selecting
|
||||
an empty square on the grid as destination for the ball you selected. Balls
|
||||
will only move if they are not blocked by other balls. Each time you move a
|
||||
ball, unless you score some points, new balls appear in a random manner on the
|
||||
grid. If the grid is full then the game is lost. However this is bound to
|
||||
happen, your goal is to make the highest score. In order to do this you must
|
||||
make lines in a vertical, horizontal or diagonal way with balls of the same
|
||||
color. By default a line must have at least five balls of the same color (it
|
||||
can also be changed through "Rules" option in ingame menu). Making a line of
|
||||
minimum amount of the balls, specifed in rules, will earn you twice the points
|
||||
for your score. If you make lines over minimum amount of the balls it will earn
|
||||
you even more points. In order to help you decide which ball you are going to
|
||||
move, there is an indicator on top of the grid that shows what colors the next
|
||||
balls that will appear on the grid will be.
|
||||
.SH USING THE INTERFACE
|
||||
GtkBalls is a graphical program using the Gtk+ windowing toolkit. This section
|
||||
describes it's user interface.
|
||||
.SS THE GAME MENU
|
||||
.TP
|
||||
.I New
|
||||
Selecting this menu entry will abandon the current game and start a new one or
|
||||
start another game if you just finished one. You may use the keyboard shortcut
|
||||
.BR CTRL-N
|
||||
to do this also.
|
||||
.TP
|
||||
.I Rules
|
||||
Selecting this menu entry will open "Rules" dialog box, where you can set board
|
||||
width and height, number of different objects to appear on the board, number
|
||||
of objects that will appear on the board after each turn and number of
|
||||
objects that must form the line to eliminate it. You may use the keyboard
|
||||
shortcut
|
||||
.BR CTRL-R
|
||||
to do this also.
|
||||
.TP
|
||||
.I Save
|
||||
Selecting this menu entry will open "Save game" dialog box, where you can save
|
||||
current game to play it later. You may use the keyboard shortcut
|
||||
.BR CTRL-S
|
||||
to do this also.
|
||||
.TP
|
||||
.I Load
|
||||
Selecting this menu entry will open "Load game" dialog box, where you can load
|
||||
previously saved game. You may use the keyboard shortcut
|
||||
.BR CTRL-L
|
||||
to do this also.
|
||||
.TP
|
||||
.I Hall Of Fame
|
||||
Selecting this menu entry will open a dialog box showing the high scores. Only
|
||||
the ten best scores are shown. This dialog also displays the name of the person
|
||||
who achieved a high score and it's date. You may use the keyboard shortcut
|
||||
.BR CTRL-H
|
||||
to do this also.
|
||||
.TP
|
||||
.I Quit
|
||||
Selecting this menu entry will quit GtkBalls. You may use the keyboard shortcut
|
||||
.BR CTRL-Q
|
||||
to do the same thing.
|
||||
.SS THE EDIT MENU
|
||||
.TP
|
||||
.I Undo
|
||||
Selecting this menu entry will undo your last move. You may use the keyboard
|
||||
shortcut
|
||||
.BR CTRL-U
|
||||
to do this also.
|
||||
.SS THE SETTINGS MENU
|
||||
.TP
|
||||
.I Preferences
|
||||
Selecting this menu entry will open the "Preferences" dialog box. You may use
|
||||
the keyboard shortcut
|
||||
.BR CTRL-P
|
||||
to open it also.
|
||||
This dialog box allows you to set some options. Click on a check box to
|
||||
activate or deactivate them. Click on the theme name to select it.
|
||||
Then click on the
|
||||
.B Apply
|
||||
button to save your settings or click on
|
||||
.B Ok
|
||||
button to save your settings and close this dialog box.
|
||||
You can disable the showing of footprints,
|
||||
path of the ball, color of the next balls indicator, animation of disappearing
|
||||
of the ball and set time limit per move from this dialog box.
|
||||
.SS THE HELP MENU
|
||||
.TP
|
||||
.I Rules
|
||||
Selecting this menu entry will display a dialog box describing rules of the
|
||||
game. You may use the keyboard shortcut
|
||||
.BR F1
|
||||
to open it also.
|
||||
.TP
|
||||
.I About
|
||||
Selecting this menu entry will display a dialog with the logo and the
|
||||
copyright information of GtkBalls. You may use the keyboard shortcut
|
||||
.BR CTRL-A
|
||||
to open it also. For more details on the license, click
|
||||
on the
|
||||
.BR "Show license"
|
||||
button. This will open another dialog box where you can read the GNU General
|
||||
Public License.
|
||||
.SH SEE ALSO
|
||||
The
|
||||
.BR GtkBalls
|
||||
web site at:
|
||||
.BR http://gtkballs.antex.ru
|
||||
.SH AUTHORS
|
||||
.BR GtkBalls
|
||||
was created by Eugene Morozov <jmv@online.ru>.
|
||||
This manual page was created by Christoph Thompson <obituary@freshmeat.net>.
|
||||
Current maintainer of
|
||||
.BR GtkBalls
|
||||
and this manual page is drF_ckoff
|
||||
<dfo@antex.ru>.
|
||||
.SH COPYRIGHT
|
||||
.BR GtkBalls
|
||||
is copyright 1998, 1999 Eugene V. Morozov under the terms of the GNU
|
||||
General Public License.
|
||||
.BR GtkBalls
|
||||
is free software; you can redistribute it and/or modify it under the terms
|
||||
of the GNU General Public License as published by the Free Software
|
||||
Foundation; either version 2 of the license, or (at your option) any
|
||||
later version.
|
||||
BIN
gnome-gtkballs.png
Normal file
BIN
gnome-gtkballs.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
16
gtkballs-data/Makefile.am
Normal file
16
gtkballs-data/Makefile.am
Normal file
@ -0,0 +1,16 @@
|
||||
EXTRA_DIST=gtkballs-logo.png gtkballs_16x16.png themes
|
||||
|
||||
install-data-local:
|
||||
$(mkinstalldirs) $(DESTDIR)$(datadir)/gtkballs
|
||||
$(INSTALL_DATA) *.png $(DESTDIR)$(datadir)/gtkballs
|
||||
$(mkinstalldirs) $(DESTDIR)$(datadir)/gtkballs/themes
|
||||
for d in themes/*; do \
|
||||
$(mkinstalldirs) $(DESTDIR)$(datadir)/gtkballs/$$d; \
|
||||
for i in $$d/*; do \
|
||||
$(INSTALL_DATA) $$i $(DESTDIR)$(datadir)/gtkballs/$$d; \
|
||||
done; \
|
||||
done
|
||||
$(mkinstalldirs) $(DESTDIR)$(localstatedir)
|
||||
|
||||
uninstall-local:
|
||||
rm -rf $(DESTDIR)$(datadir)/gtkballs
|
||||
291
gtkballs-data/Makefile.in
Normal file
291
gtkballs-data/Makefile.in
Normal file
@ -0,0 +1,291 @@
|
||||
# Makefile.in generated by automake 1.7.9 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
|
||||
# Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
||||
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
# PARTICULAR PURPOSE.
|
||||
|
||||
@SET_MAKE@
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
pkgdatadir = $(datadir)/@PACKAGE@
|
||||
pkglibdir = $(libdir)/@PACKAGE@
|
||||
pkgincludedir = $(includedir)/@PACKAGE@
|
||||
top_builddir = ..
|
||||
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
INSTALL = @INSTALL@
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
install_sh_SCRIPT = $(install_sh) -c
|
||||
INSTALL_HEADER = $(INSTALL_DATA)
|
||||
transform = $(program_transform_name)
|
||||
NORMAL_INSTALL = :
|
||||
PRE_INSTALL = :
|
||||
POST_INSTALL = :
|
||||
NORMAL_UNINSTALL = :
|
||||
PRE_UNINSTALL = :
|
||||
POST_UNINSTALL = :
|
||||
host_triplet = @host@
|
||||
ACLOCAL = @ACLOCAL@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMTAR = @AMTAR@
|
||||
AUTOCONF = @AUTOCONF@
|
||||
AUTOHEADER = @AUTOHEADER@
|
||||
AUTOMAKE = @AUTOMAKE@
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CCDEPMODE = @CCDEPMODE@
|
||||
CFLAGS = @CFLAGS@
|
||||
CPP = @CPP@
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = @DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
ECHO_C = @ECHO_C@
|
||||
ECHO_N = @ECHO_N@
|
||||
ECHO_T = @ECHO_T@
|
||||
EGREP = @EGREP@
|
||||
EXEEXT = @EXEEXT@
|
||||
GLIB_CFLAGS = @GLIB_CFLAGS@
|
||||
GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
|
||||
GLIB_LIBS = @GLIB_LIBS@
|
||||
GLIB_MKENUMS = @GLIB_MKENUMS@
|
||||
GMSGFMT = @GMSGFMT@
|
||||
GOBJECT_QUERY = @GOBJECT_QUERY@
|
||||
GTK_CFLAGS = @GTK_CFLAGS@
|
||||
GTK_LIBS = @GTK_LIBS@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
||||
INTLLIBS = @INTLLIBS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBICONV = @LIBICONV@
|
||||
LIBINTL = @LIBINTL@
|
||||
LIBOBJS = @LIBOBJS@
|
||||
LIBS = @LIBS@
|
||||
LN_S = @LN_S@
|
||||
LTLIBICONV = @LTLIBICONV@
|
||||
LTLIBINTL = @LTLIBINTL@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
MAKEINFO = @MAKEINFO@
|
||||
MKINSTALLDIRS = @MKINSTALLDIRS@
|
||||
MSGFMT = @MSGFMT@
|
||||
MSGMERGE = @MSGMERGE@
|
||||
OBJEXT = @OBJEXT@
|
||||
PACKAGE = @PACKAGE@
|
||||
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
||||
PACKAGE_NAME = @PACKAGE_NAME@
|
||||
PACKAGE_STRING = @PACKAGE_STRING@
|
||||
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
PKG_CONFIG = @PKG_CONFIG@
|
||||
POSUB = @POSUB@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
STRIP = @STRIP@
|
||||
USE_NLS = @USE_NLS@
|
||||
VERSION = @VERSION@
|
||||
XGETTEXT = @XGETTEXT@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__include = @am__include@
|
||||
am__leading_dot = @am__leading_dot@
|
||||
am__quote = @am__quote@
|
||||
bindir = @bindir@
|
||||
build = @build@
|
||||
build_alias = @build_alias@
|
||||
build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
datadir = @datadir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
nlsdir = @nlsdir@
|
||||
oldincludedir = @oldincludedir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
target_alias = @target_alias@
|
||||
EXTRA_DIST = gtkballs-logo.png gtkballs_16x16.png themes
|
||||
subdir = gtkballs-data
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
||||
CONFIG_HEADER = $(top_builddir)/config.h
|
||||
CONFIG_CLEAN_FILES =
|
||||
DIST_SOURCES =
|
||||
DIST_COMMON = $(srcdir)/Makefile.in Makefile.am
|
||||
all: all-am
|
||||
|
||||
.SUFFIXES:
|
||||
$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu gtkballs-data/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)
|
||||
uninstall-info-am:
|
||||
tags: TAGS
|
||||
TAGS:
|
||||
|
||||
ctags: CTAGS
|
||||
CTAGS:
|
||||
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
|
||||
top_distdir = ..
|
||||
distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
case $$file in \
|
||||
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
||||
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
|
||||
esac; \
|
||||
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
||||
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
|
||||
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
|
||||
dir="/$$dir"; \
|
||||
$(mkinstalldirs) "$(distdir)$$dir"; \
|
||||
else \
|
||||
dir=''; \
|
||||
fi; \
|
||||
if test -d $$d/$$file; then \
|
||||
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
||||
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
|
||||
fi; \
|
||||
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
|
||||
else \
|
||||
test -f $(distdir)/$$file \
|
||||
|| cp -p $$d/$$file $(distdir)/$$file \
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
check-am: all-am
|
||||
check: check-am
|
||||
all-am: Makefile
|
||||
|
||||
installdirs:
|
||||
install: install-am
|
||||
install-exec: install-exec-am
|
||||
install-data: install-data-am
|
||||
uninstall: uninstall-am
|
||||
|
||||
install-am: all-am
|
||||
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
|
||||
distclean-generic:
|
||||
-rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
clean: clean-am
|
||||
|
||||
clean-am: clean-generic mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f Makefile
|
||||
distclean-am: clean-am distclean-generic
|
||||
|
||||
dvi: dvi-am
|
||||
|
||||
dvi-am:
|
||||
|
||||
info: info-am
|
||||
|
||||
info-am:
|
||||
|
||||
install-data-am: install-data-local
|
||||
|
||||
install-exec-am:
|
||||
|
||||
install-info: install-info-am
|
||||
|
||||
install-man:
|
||||
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
||||
mostlyclean-am: mostlyclean-generic
|
||||
|
||||
pdf: pdf-am
|
||||
|
||||
pdf-am:
|
||||
|
||||
ps: ps-am
|
||||
|
||||
ps-am:
|
||||
|
||||
uninstall-am: uninstall-info-am uninstall-local
|
||||
|
||||
.PHONY: all all-am check check-am clean clean-generic distclean \
|
||||
distclean-generic distdir dvi dvi-am info info-am install \
|
||||
install-am install-data install-data-am install-data-local \
|
||||
install-exec install-exec-am install-info install-info-am \
|
||||
install-man install-strip installcheck installcheck-am \
|
||||
installdirs maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \
|
||||
uninstall-am uninstall-info-am uninstall-local
|
||||
|
||||
|
||||
install-data-local:
|
||||
$(mkinstalldirs) $(DESTDIR)$(datadir)/gtkballs
|
||||
$(INSTALL_DATA) *.png $(DESTDIR)$(datadir)/gtkballs
|
||||
$(mkinstalldirs) $(DESTDIR)$(datadir)/gtkballs/themes
|
||||
for d in themes/*; do \
|
||||
$(mkinstalldirs) $(DESTDIR)$(datadir)/gtkballs/$$d; \
|
||||
for i in $$d/*; do \
|
||||
$(INSTALL_DATA) $$i $(DESTDIR)$(datadir)/gtkballs/$$d; \
|
||||
done; \
|
||||
done
|
||||
$(mkinstalldirs) $(DESTDIR)$(localstatedir)
|
||||
|
||||
uninstall-local:
|
||||
rm -rf $(DESTDIR)$(datadir)/gtkballs
|
||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||
.NOEXPORT:
|
||||
BIN
gtkballs-data/gtkballs-logo.png
Normal file
BIN
gtkballs-data/gtkballs-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.2 KiB |
BIN
gtkballs-data/gtkballs_16x16.png
Normal file
BIN
gtkballs-data/gtkballs_16x16.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 155 B |
536
gtkballs-data/themes/5balls-Big/blue.xpm
Normal file
536
gtkballs-data/themes/5balls-Big/blue.xpm
Normal file
@ -0,0 +1,536 @@
|
||||
/* XPM */
|
||||
static char * blue_xpm[] = {
|
||||
"54 54 479 2",
|
||||
" c None",
|
||||
". c #B4B5C8",
|
||||
"+ c #9B9DC5",
|
||||
"@ c #888BC2",
|
||||
"# c #7A7FC0",
|
||||
"$ c #6E74BE",
|
||||
"% c #676DBD",
|
||||
"& c #6269BC",
|
||||
"* c #646ABC",
|
||||
"= c #6A70BC",
|
||||
"- c #7479BC",
|
||||
"; c #8285BE",
|
||||
"> c #9598C1",
|
||||
", c #B0B1C4",
|
||||
"' c #8F91C3",
|
||||
") c #7076C0",
|
||||
"! c #686FC0",
|
||||
"~ c #6A70C0",
|
||||
"{ c #696FBF",
|
||||
"] c #666DBE",
|
||||
"^ c #666CBE",
|
||||
"/ c #6369BD",
|
||||
"( c #6266BC",
|
||||
"_ c #5E64BA",
|
||||
": c #5C63B8",
|
||||
"< c #646AB8",
|
||||
"[ c #8587BB",
|
||||
"} c #ADAEC3",
|
||||
"| c #ADAEC7",
|
||||
"1 c #8187C1",
|
||||
"2 c #6B71C1",
|
||||
"3 c #6C72C2",
|
||||
"4 c #6F75C3",
|
||||
"5 c #7076C4",
|
||||
"6 c #6F73C3",
|
||||
"7 c #676BBF",
|
||||
"8 c #656BBD",
|
||||
"9 c #6167BB",
|
||||
"0 c #5F65B9",
|
||||
"a c #5B61B7",
|
||||
"b c #575EB5",
|
||||
"c c #7176B5",
|
||||
"d c #A2A3BC",
|
||||
"e c #BDBDC9",
|
||||
"f c #888CC2",
|
||||
"g c #7278C4",
|
||||
"h c #747AC6",
|
||||
"i c #777DC7",
|
||||
"j c #767CC8",
|
||||
"k c #757BC7",
|
||||
"l c #7379C5",
|
||||
"m c #696DC1",
|
||||
"n c #656BBF",
|
||||
"o c #6367BD",
|
||||
"p c #6066BA",
|
||||
"q c #535AB3",
|
||||
"r c #7478B2",
|
||||
"s c #B1B1BD",
|
||||
"t c #A3A5C5",
|
||||
"u c #6C72C0",
|
||||
"v c #797EC9",
|
||||
"w c #7B80C9",
|
||||
"x c #7A80CA",
|
||||
"y c #7C82CA",
|
||||
"z c #7B81CB",
|
||||
"A c #7177C5",
|
||||
"B c #676EBF",
|
||||
"C c #6067BA",
|
||||
"D c #585FB6",
|
||||
"E c #5259B0",
|
||||
"F c #8E91B2",
|
||||
"G c #9194C3",
|
||||
"H c #7D83CB",
|
||||
"I c #7E84CC",
|
||||
"J c #8084CE",
|
||||
"K c #8287CE",
|
||||
"L c #8185CF",
|
||||
"M c #8186CD",
|
||||
"N c #797FC9",
|
||||
"O c #4D54B1",
|
||||
"P c #787CAC",
|
||||
"Q c #BBBBBB",
|
||||
"R c #6E74C2",
|
||||
"S c #8489D0",
|
||||
"T c #878AD1",
|
||||
"U c #878CD1",
|
||||
"V c #888ED2",
|
||||
"W c #878ED1",
|
||||
"X c #868BD0",
|
||||
"Y c #7175C5",
|
||||
"Z c #5F66BB",
|
||||
"` c #5A61B8",
|
||||
" . c #555CB5",
|
||||
".. c #5057B2",
|
||||
"+. c #4C53B0",
|
||||
"@. c #6B6EA9",
|
||||
"#. c #B6B6B6",
|
||||
"$. c #878BC1",
|
||||
"%. c #7A7ECA",
|
||||
"&. c #848AD0",
|
||||
"*. c #898ED3",
|
||||
"=. c #8C91D4",
|
||||
"-. c #8D92D5",
|
||||
";. c #8E93D6",
|
||||
">. c #8389CF",
|
||||
",. c #7E83CC",
|
||||
"'. c #4E55B0",
|
||||
"). c #4950AD",
|
||||
"!. c #6A6DA6",
|
||||
"~. c #B2B2B2",
|
||||
"{. c #9093C2",
|
||||
"]. c #7D84CB",
|
||||
"^. c #858AD1",
|
||||
"/. c #8A8FD2",
|
||||
"(. c #9095D6",
|
||||
"_. c #9196D7",
|
||||
":. c #9297D8",
|
||||
"<. c #9499D8",
|
||||
"[. c #9398D9",
|
||||
"}. c #9198D7",
|
||||
"|. c #8F94D5",
|
||||
"1. c #6168BB",
|
||||
"2. c #5259B2",
|
||||
"3. c #464DAC",
|
||||
"4. c #6F72A3",
|
||||
"5. c #A0A4C4",
|
||||
"6. c #7A7FC8",
|
||||
"7. c #8D94D5",
|
||||
"8. c #9295D8",
|
||||
"9. c #969DDA",
|
||||
"0. c #999EDB",
|
||||
"a. c #9A9FDC",
|
||||
"b. c #969BDA",
|
||||
"c. c #959AD9",
|
||||
"d. c #8B90D3",
|
||||
"e. c #787EC8",
|
||||
"f. c #5960B7",
|
||||
"g. c #535CB3",
|
||||
"h. c #4F56B1",
|
||||
"i. c #4951AF",
|
||||
"j. c #434BAB",
|
||||
"k. c #7C7E9E",
|
||||
"l. c #BCBDC8",
|
||||
"m. c #656BBB",
|
||||
"n. c #676DBF",
|
||||
"o. c #6D73C1",
|
||||
"p. c #8086CE",
|
||||
"q. c #9DA1DD",
|
||||
"r. c #9FA2DF",
|
||||
"s. c #A0A5E0",
|
||||
"t. c #9FA3DF",
|
||||
"u. c #9CA1DE",
|
||||
"v. c #868DD0",
|
||||
"w. c #7C83CA",
|
||||
"x. c #727AC4",
|
||||
"y. c #6067BC",
|
||||
"z. c #4A51AE",
|
||||
"A. c #454CAB",
|
||||
"B. c #4249A8",
|
||||
"C. c #8E909A",
|
||||
"D. c #8286C0",
|
||||
"E. c #9BA0DD",
|
||||
"F. c #A1A6E1",
|
||||
"G. c #A4A7E2",
|
||||
"H. c #A5A8E3",
|
||||
"I. c #A7ABE3",
|
||||
"J. c #A6ACE2",
|
||||
"K. c #A4A8E2",
|
||||
"L. c #989DDA",
|
||||
"M. c #898DD3",
|
||||
"N. c #7F84CD",
|
||||
"O. c #7379C7",
|
||||
"P. c #474EAD",
|
||||
"Q. c #4148A9",
|
||||
"R. c #5D629D",
|
||||
"S. c #9E9E9E",
|
||||
"T. c #ABADC5",
|
||||
"U. c #888DD2",
|
||||
"V. c #A6A9E4",
|
||||
"W. c #A9AEE5",
|
||||
"X. c #ACB0E6",
|
||||
"Y. c #ABB0E7",
|
||||
"Z. c #A7ADE3",
|
||||
"`. c #888CD2",
|
||||
" + c #545BB4",
|
||||
".+ c #484FAE",
|
||||
"++ c #434AA9",
|
||||
"@+ c #3D45A7",
|
||||
"#+ c #797B91",
|
||||
"$+ c #A8A8A8",
|
||||
"%+ c #797EBD",
|
||||
"&+ c #6D73C3",
|
||||
"*+ c #7278C6",
|
||||
"=+ c #858ACF",
|
||||
"-+ c #9093D6",
|
||||
";+ c #A3A9E1",
|
||||
">+ c #A8ACE4",
|
||||
",+ c #ADB1E7",
|
||||
"'+ c #B0B5E8",
|
||||
")+ c #B2B6EA",
|
||||
"!+ c #B1B5E9",
|
||||
"~+ c #AFB3E9",
|
||||
"{+ c #A7AAE5",
|
||||
"]+ c #A3A7E1",
|
||||
"^+ c #8F96D5",
|
||||
"/+ c #6268BC",
|
||||
"(+ c #565DB4",
|
||||
"_+ c #5158B1",
|
||||
":+ c #444BAA",
|
||||
"<+ c #3D44A7",
|
||||
"[+ c #555A9B",
|
||||
"}+ c #929292",
|
||||
"|+ c #B5B5B5",
|
||||
"1+ c #B0B2C6",
|
||||
"2+ c #5E64B8",
|
||||
"3+ c #7F87CD",
|
||||
"4+ c #A2A6E0",
|
||||
"5+ c #B4B8EC",
|
||||
"6+ c #B7BBED",
|
||||
"7+ c #B7BCED",
|
||||
"8+ c #B5B9EB",
|
||||
"9+ c #B1B6E9",
|
||||
"0+ c #979CDB",
|
||||
"a+ c #8B92D3",
|
||||
"b+ c #7F85CD",
|
||||
"c+ c #5D64B9",
|
||||
"d+ c #4B52AF",
|
||||
"e+ c #3F47A9",
|
||||
"f+ c #3840A4",
|
||||
"g+ c #777989",
|
||||
"h+ c #A2A2A2",
|
||||
"i+ c #888CBE",
|
||||
"j+ c #7074C4",
|
||||
"k+ c #A4A9E2",
|
||||
"l+ c #B8BCEE",
|
||||
"m+ c #BCBFF0",
|
||||
"n+ c #BFC3F1",
|
||||
"o+ c #BCC0F0",
|
||||
"p+ c #B9BDEF",
|
||||
"q+ c #9EA3DE",
|
||||
"r+ c #989BDC",
|
||||
"s+ c #595FB5",
|
||||
"t+ c #454DAD",
|
||||
"u+ c #3941A5",
|
||||
"v+ c #5D6193",
|
||||
"w+ c #8F8F8F",
|
||||
"x+ c #B4B4B4",
|
||||
"y+ c #A5AAE3",
|
||||
"z+ c #B0B4EA",
|
||||
"A+ c #C1C5F3",
|
||||
"B+ c #C4C7F4",
|
||||
"C+ c #C1C6F3",
|
||||
"D+ c #BDC1F1",
|
||||
"E+ c #4047A8",
|
||||
"F+ c #3F469F",
|
||||
"G+ c #7F7F7F",
|
||||
"H+ c #A5A5A5",
|
||||
"I+ c #AFB1C5",
|
||||
"J+ c #8388CF",
|
||||
"K+ c #B3B6EB",
|
||||
"L+ c #BDC0F1",
|
||||
"M+ c #C5C7F5",
|
||||
"N+ c #CACDF8",
|
||||
"O+ c #898ED1",
|
||||
"P+ c #3A42A6",
|
||||
"Q+ c #343CA2",
|
||||
"R+ c #707282",
|
||||
"S+ c #969696",
|
||||
"T+ c #B9B9B9",
|
||||
"U+ c #9396BF",
|
||||
"V+ c #A0A3E0",
|
||||
"W+ c #9FA5DF",
|
||||
"X+ c #636689",
|
||||
"Y+ c #888888",
|
||||
"Z+ c #B0B0B0",
|
||||
"`+ c #7D81BB",
|
||||
" @ c #9EA4DE",
|
||||
".@ c #B0B4E8",
|
||||
"+@ c #BABEEE",
|
||||
"@@ c #BBBFF1",
|
||||
"#@ c #B8BDEE",
|
||||
"$@ c #AFB2E9",
|
||||
"%@ c #AAAEE6",
|
||||
"&@ c #9DA2DF",
|
||||
"*@ c #989DDC",
|
||||
"=@ c #8187CD",
|
||||
"-@ c #5158B3",
|
||||
";@ c #3F46A7",
|
||||
">@ c #3A41A4",
|
||||
",@ c #545792",
|
||||
"'@ c #7E7E7E",
|
||||
")@ c #A6A6A6",
|
||||
"!@ c #696FB7",
|
||||
"~@ c #9DA3DD",
|
||||
"{@ c #A6ABE4",
|
||||
"]@ c #B0B3EA",
|
||||
"^@ c #A8ABE4",
|
||||
"/@ c #333BA1",
|
||||
"(@ c #454B97",
|
||||
"_@ c #777777",
|
||||
":@ c #9B9B9B",
|
||||
"<@ c #BDBDBD",
|
||||
"[@ c #5B63B3",
|
||||
"}@ c #B2B7EA",
|
||||
"|@ c #6E72C2",
|
||||
"1@ c #444CAC",
|
||||
"2@ c #323AA0",
|
||||
"3@ c #383F9A",
|
||||
"4@ c #737373",
|
||||
"5@ c #B8B8B8",
|
||||
"6@ c #515AB1",
|
||||
"7@ c #9095D8",
|
||||
"8@ c #9CA0DC",
|
||||
"9@ c #4850AE",
|
||||
"0@ c #4249AA",
|
||||
"a@ c #373FA3",
|
||||
"b@ c #3139A1",
|
||||
"c@ c #2E369C",
|
||||
"d@ c #6F6F6F",
|
||||
"e@ c #8C8C8C",
|
||||
"f@ c #525BB2",
|
||||
"g@ c #979ADB",
|
||||
"h@ c #7F83CD",
|
||||
"i@ c #3B42A5",
|
||||
"j@ c #353DA3",
|
||||
"k@ c #3038A0",
|
||||
"l@ c #2B339B",
|
||||
"m@ c #6C6C6C",
|
||||
"n@ c #878787",
|
||||
"o@ c #5057B0",
|
||||
"p@ c #686EBE",
|
||||
"q@ c #787CC8",
|
||||
"r@ c #9FA4DF",
|
||||
"s@ c #8A8DD4",
|
||||
"t@ c #787DC8",
|
||||
"u@ c #2E369E",
|
||||
"v@ c #6B6B6B",
|
||||
"w@ c #848484",
|
||||
"x@ c #565CB0",
|
||||
"y@ c #5A60B6",
|
||||
"z@ c #373FA5",
|
||||
"A@ c #2C349E",
|
||||
"B@ c #343B98",
|
||||
"C@ c #6A6A6A",
|
||||
"D@ c #838383",
|
||||
"E@ c #6167B1",
|
||||
"F@ c #767CC6",
|
||||
"G@ c #787ECA",
|
||||
"H@ c #5B62B9",
|
||||
"I@ c #3B43A7",
|
||||
"J@ c #363EA4",
|
||||
"K@ c #2B339D",
|
||||
"L@ c #3F4593",
|
||||
"M@ c #7378B5",
|
||||
"N@ c #686EC0",
|
||||
"O@ c #3E45A8",
|
||||
"P@ c #29319B",
|
||||
"Q@ c #4E528C",
|
||||
"R@ c #8A8EBA",
|
||||
"S@ c #646CBC",
|
||||
"T@ c #3C43A6",
|
||||
"U@ c #31399F",
|
||||
"V@ c #262E9A",
|
||||
"W@ c #5B5E83",
|
||||
"X@ c #8B8B8B",
|
||||
"Y@ c #ABADC1",
|
||||
"Z@ c #646ABE",
|
||||
"`@ c #6B73C1",
|
||||
" # c #6468BE",
|
||||
".# c #565DB6",
|
||||
"+# c #4D54AF",
|
||||
"@# c #4851AC",
|
||||
"## c #3E46A8",
|
||||
"$# c #242C98",
|
||||
"%# c #666776",
|
||||
"&# c #4D54AB",
|
||||
"*# c #7B7FCB",
|
||||
"=# c #6165BB",
|
||||
"-# c #363DA2",
|
||||
";# c #2F3495",
|
||||
"># c #686868",
|
||||
",# c #767AB2",
|
||||
"'# c #414BA9",
|
||||
")# c #28309C",
|
||||
"!# c #232B99",
|
||||
"~# c #505488",
|
||||
"{# c #A7A9BF",
|
||||
"]# c #2F379F",
|
||||
"^# c #2A329C",
|
||||
"/# c #252D99",
|
||||
"(# c #202896",
|
||||
"_# c #656777",
|
||||
":# c #6E6E6E",
|
||||
"<# c #5F62AB",
|
||||
"[# c #222B98",
|
||||
"}# c #41468D",
|
||||
"|# c #676767",
|
||||
"1# c #747474",
|
||||
"2# c #9A9DB8",
|
||||
"3# c #4952AD",
|
||||
"4# c #2D359D",
|
||||
"5# c #272F9B",
|
||||
"6# c #1E2696",
|
||||
"7# c #626478",
|
||||
"8# c #6369A9",
|
||||
"9# c #3E45A6",
|
||||
"0# c #484FAC",
|
||||
"a# c #555BB3",
|
||||
"b# c #1F2795",
|
||||
"c# c #464B8A",
|
||||
"d# c #727272",
|
||||
"e# c #ADADBB",
|
||||
"f# c #3941A3",
|
||||
"g# c #545AB2",
|
||||
"h# c #202894",
|
||||
"i# c #676971",
|
||||
"j# c #8688AE",
|
||||
"k# c #1C2594",
|
||||
"l# c #5E617E",
|
||||
"m# c #6B6FA5",
|
||||
"n# c #3C44A6",
|
||||
"o# c #4048AA",
|
||||
"p# c #28309A",
|
||||
"q# c #4F5485",
|
||||
"r# c #858585",
|
||||
"s# c #BABABA",
|
||||
"t# c #5C61A0",
|
||||
"u# c #1B2393",
|
||||
"v# c #474C89",
|
||||
"w# c #9D9D9D",
|
||||
"x# c #5A5F9E",
|
||||
"y# c #222A96",
|
||||
"z# c #1B2493",
|
||||
"A# c #7B7B7B",
|
||||
"B# c #979797",
|
||||
"C# c #62659C",
|
||||
"D# c #323AA2",
|
||||
"E# c #1D2695",
|
||||
"F# c #1A2292",
|
||||
"G# c #4F5285",
|
||||
"H# c #7A7A7A",
|
||||
"I# c #949494",
|
||||
"J# c #74779A",
|
||||
"K# c #2C349A",
|
||||
"L# c #30389E",
|
||||
"M# c #212997",
|
||||
"N# c #1D2591",
|
||||
"O# c #5C5E7E",
|
||||
"P# c #B1B1B1",
|
||||
"Q# c #8D8D99",
|
||||
"R# c #505594",
|
||||
"S# c #2D359F",
|
||||
"T# c #192293",
|
||||
"U# c #44498A",
|
||||
"V# c #666770",
|
||||
"W# c #76788E",
|
||||
"X# c #474C93",
|
||||
"Y# c #272F99",
|
||||
"Z# c #232B97",
|
||||
"`# c #192191",
|
||||
" $ c #3D438B",
|
||||
".$ c #616379",
|
||||
"+$ c #757687",
|
||||
"@$ c #54588C",
|
||||
"#$ c #2F3695",
|
||||
"$$ c #212995",
|
||||
"%$ c #272E8F",
|
||||
"&$ c #4D5187",
|
||||
"*$ c #646676",
|
||||
"=$ c #6D6F7F",
|
||||
"-$ c #5D5F85",
|
||||
";$ c #4A4F8C",
|
||||
">$ c #393F8F",
|
||||
",$ c #2A3292",
|
||||
"'$ c #202892",
|
||||
")$ c #272F91",
|
||||
"!$ c #363C8E",
|
||||
"~$ c #585A82",
|
||||
"{$ c #757575",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . + @ # $ % & * = - ; > , ",
|
||||
" . ' ) ! ~ ~ ~ ~ ~ { ] ^ / ( _ : < [ } ",
|
||||
" | 1 ~ 2 3 4 5 5 5 5 4 6 3 2 ~ 7 8 9 0 a b c d ",
|
||||
" e f ~ 3 4 g h h h i j i k h l g 4 3 m n o p : b q r s ",
|
||||
" t u 2 4 g h j v w x y y z z x v j h A 4 2 B 8 C : D q E F ",
|
||||
" G ! 3 5 h i x H I J K K K L M M I H N j h 5 3 ! 8 p : b q O P Q ",
|
||||
" f { R 5 h v z I K S T U U V U W X S K I H v k Y 3 { 8 Z ` ...+.@.#. ",
|
||||
" $.{ 3 5 k %.H K &.U *.=.-.;.;.-.-.=.*.U >.K ,.N k 5 3 { & _ D q '.).!.~. ",
|
||||
" {.] 2 5 k N ].K ^./.=.(._.:.<.[.<.:.}.|.-./.X K ,.v k 5 2 ] 1.: b 2.+.3.4.~. ",
|
||||
" 5.8 ~ 4 h 6.,.K U *.7.8.[.9.0.a.a.a.0.b.c._.|.d.U L ,.e.h 4 ~ / _ f.g.h.i.j.k.~. ",
|
||||
" l.m.n.o.l j H p.^.d.;.:.b.a.q.r.s.s.s.t.u.a.b.:.;.d.v.K w.j x.o.] y.: b 2.z.A.B.C.#. ",
|
||||
" D./ ! 4 h N I &./.|.:.9.E.t.F.G.H.I.J.K.F.t.E.L.<.|.M.&.N.N O.4 ~ / 0 f.q O P.Q.R.S.Q ",
|
||||
" T.9 ^ 2 A j H K U.-._.b.E.s.K.V.W.X.X.Y.W.Z.K.s.E.b._.=.`.K y j A 2 ] Z a +'..+++@+#+$+ ",
|
||||
" %+( 7 &+*+e.I =+/.-+[.a.t.;+>+,+'+)+)+!+~+,+{+]+r.a.c.^+*.S ,.v h R B /+: (+_+z.:+<+[+}+|+ ",
|
||||
" 1+2+& { &+h x 3+X =._.L.u.4+>+Y.!+5+6+7+6+8+9+X.>+F.u.0+_.a+X b+x h 4 { * c+b ..d+A.e+f+g+h+ ",
|
||||
" i+c+/ ~ j+k x p.U -.:.0.t.k+W.~+8+l+m+n+o+p+8+~+W.k+q+r+:.-.U K y k 4 ~ / _ s+2.d+t+e+u+v+w+x+ ",
|
||||
" < 0 8 2 5 k H K U.|.c.a.s.y+X.z+6+o+A+B+C+D+6+z+X.y+s.a.[.|.`.K y i 5 ~ / 0 D q +.A.E+u+F+G+H+ ",
|
||||
" I+D c+/ 2 5 k H J+V ;.[.a.s.I.Y.K+l+L+M+N+B+n+l+)+Y.V.s.a.c.-.O+J+z i 5 ~ / _ D 2.+.3.E+P+Q+R+S+T+ ",
|
||||
" U+D c+8 ~ 5 i H K U -.[.a.V+H.X.)+6+o+A+M+A+D+6+z+X.H.W+a.c.-.O+K H j 5 ~ * _ D 2.+.3.e+P+Q+X+Y+Z+ ",
|
||||
" `+D c+/ ~ 5 k y K U -.:.0. @K.W..@5++@o+L+@@#@8+$@%@k+&@*@:.-.U =@y k 5 ~ / c+D -@d+A.;@>@Q+,@'@)@ ",
|
||||
" !@b c+& { 4 h x J ^.=._.b.~@4+{@X.]@5+6+l+6+5+9+Y.^@4+u.0+}.=.v.M N h 4 ! & : D ..d+A.e+f+/@(@_@:@<@",
|
||||
" [@ .: /+] R l v ,.>./.^+c.a.t.K.>+Y.~+)+}@z+'+X.>+K.t.a.c.(./.S I v l |@n.1.: (+_+z.1@<+f+2@3@4@}+5@",
|
||||
" 6@ +a p ^ 2 A i H K U =.7@9.8@s.K.I.W.X.X.X.%@{@K.s.E.b._.=.U K H i 5 2 ^ C a +h.9@0@@+a@b@c@d@e@|+",
|
||||
" O f@D _ / ~ 4 h x N.>.V ;.<.g@8@t.]+K.H.y+y+k+F.t.E.0+:.;.V S h@%.k 4 ~ 8 _ D q +.P.Q.i@j@k@l@m@n@~.",
|
||||
" o@..b : 1.p@3 A q@w.M ^.d.;.:.b.a.q.t.W+s.r@&@~@a.b.:.;.s@X K z t@A 3 p@/+: b ..d+A.E+P+Q+u@l@v@w@Z+",
|
||||
" x@'. +f._ 8 ~ 4 h v ].K T d.-.:.c.0+0.a.a.a.0.9.c._.7.d.^.K H v h 4 ~ 8 _ y@ +h.).j.<+z@2@A@B@C@D@Z+",
|
||||
" E@+.-@b : 1.^ 2 5 F@%.,.K T /.=.-+_.:.<.c.[.:._.-+=.*.^.K ].G@k 5 2 n.1.H@b 2.+.3.Q.I@J@k@K@L@v@w@Z+",
|
||||
" M@i.'.q y@_ & B 3 5 k x H p.>.U /.a+-.-.-.-.-.=./.U >.K ].%.k Y 3 N@/ c+f. +'.i.j.O@f+Q+u@P@Q@m@n@~.",
|
||||
" R@3.d+2.b a Z S@{ 3 g k v z N.K >.X U U.U.U U ^.>.K h@H v h g 3 ! 8 p ` b _++.3.Q.T@a@U@A@V@W@d@X@|+",
|
||||
" Y@j.9@O q b : p Z@! `@5 h i x H I b+K K J+K K M I z x j h 5 o.{ #p : .#q +#@#0@##u+/@u@P@$#%#4@}+5@",
|
||||
" @z.h. +b : C / B 2 4 l h j e.x *#H H y y x v i h A 4 2 { / =#c+b q '.i.A.E+P+-#U@K@V@;#>#_@:@<@",
|
||||
" ,#'#t+z.h.q D : p * ] ~ `@4 g l h k k j k k h *+g 4 3 ~ n.& p : b q h.z.A.'#T@f+/@u@)#!#~#C@'@)@ ",
|
||||
" {#<+0@3.d+h.q b ` _ 1.8 ] ~ 2 R 4 4 5 5 5 4 R 3 2 ~ p@/ 1.0 a b q h.d+P.0@@+u+Q+]#^#/#(#_#:#Y+Z+ ",
|
||||
" <#<+0@P.z.'.q .f.c+p 1.8 8 n.{ ~ ~ ~ m ~ ! ] ^ / /+_ : f.(+2.'.d+P.0@##>@j@k@K@V@[#}#|#1#S+T+ ",
|
||||
" 2#u+##0@3.i.+#.. +b f.: c+Z /+o / 8 8 8 / & 1.C _ : f.b +..O 3#3.0@##>@j@U@4#5#!#6#7#v@G+H+ ",
|
||||
" 8#u+9#Q.1@0#d+'.2. +b D a : 2+_ c+c+0 c+c+: a D b a#2.'.d+9@A.Q.@+u+j@U@4#)#$#b#c#|#d#w+x+ ",
|
||||
" e#f#u+T@E+j.3.).+.'...q a#b b D D D D b b (+ +g#..'.d+i.P.j.E+T@u+j@b@4#)#$#(#h#i#v@G+h+ ",
|
||||
" j#/@f+P+##Q.1@P..+d++#h.h...-@q f@-@-@....h.O d+.+3.j.Q.##P+f+Q+k@4#)#$#(#k#l#>#1#}+x+ ",
|
||||
" m#2@J@u+n#O@Q.j.A.P.9@z.d+d++.d++.d+d+z.).P.A.j.o#;@T@f+-#2@]#A@p#$#(#k#q#|#d@r#$+ ",
|
||||
" s#t#U@Q+a@u+I@##e+Q.0@j.A.t+3.3.3.A.A.:+j.Q.e+##i@u+-#Q+U@4#^#5#!#b#u#v#|#m@'@w#s# ",
|
||||
" #.x#u@b@Q+-#f+>@I@<+<+e+e+E+E+E+;@;@##<+i@u+a@J@/@b@]#K@P@/#y#b#z#v#|#v@A#B##. ",
|
||||
" ~.C#K@u@k@D#Q+J@a@f+u+P+>@u+P+P+u+f+a@j@Q+D#k@u@A@P@V@!#(#E#F#G#|#v@H#I#~. ",
|
||||
" ~.J#K#l@A@]#]#b@D#2@/@Q+Q+Q+/@/@2@b@L#u@4#K@)#V@$#M#6#z#N#O#|#m@A#I#P# ",
|
||||
" ~.Q#R#5#P@^#K@A@4#S#u@u@u@4#4#A@K@^#)#5#/#[#M#6#u#T#U#V#>#d@'@B#~. ",
|
||||
" #.S.W#X#$#/#V@Y#p#5#p#)#5#5#Y#/#$#Z#M#b#E#u#`# $.$|#v@1#r#w##. ",
|
||||
" Q $+}++$@$#$M#M#y#y#y#[#M#$$b#6#E#u#T#%$&$*$|#v@d#G+}+$+s# ",
|
||||
" |+h+w+G+=$-$;$>$,$h#k#'$)$!$v#~$*$>#C@:#{$G+w+h+|+ ",
|
||||
" x+)@S+Y+G+_@4@d@m@v@v@v@m@d@4@_@'@Y+S+H+x+ ",
|
||||
" T+Z+)@:@}+e@n@w@D@w@n@e@}+:@)@Z+T+ ",
|
||||
" <@5@|+~.P#Z+P#~.|+5@<@ "};
|
||||
105
gtkballs-data/themes/5balls-Big/blue_destroy1.xpm
Normal file
105
gtkballs-data/themes/5balls-Big/blue_destroy1.xpm
Normal file
@ -0,0 +1,105 @@
|
||||
/* XPM */
|
||||
static char *blue_destroy1[] = {
|
||||
"36 36 65 1",
|
||||
" c black",
|
||||
". c #180917",
|
||||
"X c #0f0b2f",
|
||||
"o c #2a0c08",
|
||||
"O c #311724",
|
||||
"+ c #321066",
|
||||
"@ c #58241c",
|
||||
"# c #481557",
|
||||
"$ c #5a2861",
|
||||
"% c #6b4626",
|
||||
"& c #655364",
|
||||
"* c #1d0ea0",
|
||||
"= c #110fd2",
|
||||
"- c #0c0ce5",
|
||||
"; c #3c2fc7",
|
||||
": c #4c2b96",
|
||||
"> c #706aa6",
|
||||
", c #615cdd",
|
||||
"< c #8f3822",
|
||||
"1 c #8e4a28",
|
||||
"2 c #b24c15",
|
||||
"3 c #b65532",
|
||||
"4 c #b56a33",
|
||||
"5 c #9f5c5a",
|
||||
"6 c #927b57",
|
||||
"7 c #8e7a69",
|
||||
"8 c #b1564a",
|
||||
"9 c #b2686f",
|
||||
"0 c #c85810",
|
||||
"q c #c55d2b",
|
||||
"w c #d76715",
|
||||
"e c #cf6830",
|
||||
"r c #eb7611",
|
||||
"t c #eb7a29",
|
||||
"y c #c96949",
|
||||
"u c #c56458",
|
||||
"i c #936596",
|
||||
"p c #94872f",
|
||||
"a c #b19130",
|
||||
"s c #8f8450",
|
||||
"d c #8d836d",
|
||||
"f c #ab8d51",
|
||||
"g c #b09d5f",
|
||||
"h c #cd992a",
|
||||
"j c #f48f11",
|
||||
"k c #f08d30",
|
||||
"l c #fab314",
|
||||
"z c #fdac2a",
|
||||
"x c #cc8e52",
|
||||
"c c #d3b252",
|
||||
"v c #cfa061",
|
||||
"b c #efaf4b",
|
||||
"n c #facc1b",
|
||||
"m c #fbcb2d",
|
||||
"M c #f6e02f",
|
||||
"N c #d5c459",
|
||||
"B c #dccb6d",
|
||||
"V c #facf48",
|
||||
"C c #ead567",
|
||||
"Z c #feed4f",
|
||||
"A c #feed6b",
|
||||
"S c #9a8580",
|
||||
"D c #9487ff",
|
||||
"F c #e8cbff",
|
||||
"G c None",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGfhjmnMnhapsGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGG7xbVZZZAANf6dGGGGGGGGG",
|
||||
"GGGGGGGGGGGi>>:&9xbbVVZZZcs7GGGGGGGG",
|
||||
"GGGGGGGGGG>>:***+5951fbmZZNsGGGGGGGG",
|
||||
"GGGGGGGGG>>*====****+#5azZZCs7GGGGGG",
|
||||
"GGGGGGGGi>*=-----===*+@4jlZZCsGGGGGG",
|
||||
"GGGGGGG7&*==-----==*+5ykrjmMZcsdGGGG",
|
||||
"GGGGGG6x9:*=----==**:uttjjjnZCpdGGGG",
|
||||
"GGGGG6xbb5+*=====**#9yettjjlMZasGGGG",
|
||||
"GGGGd4bzjyi:==,D;:i9ueee2rjlnZAsGGGG",
|
||||
"GGGG6bVzjtui*;FFi59883e320rrjMAg7GGG",
|
||||
"GGGGfmnljre5#:ii9833yyy3e2wjlmANsGGG",
|
||||
"GGG7gmnjjweu9998838y332qwwrjjlZNpGGG",
|
||||
"GGG6BVlzkeeu8y333333yqqtwwrrjnZCpGGG",
|
||||
"GGGsBZnzwe8$983338333330wtwrjlZApGGG",
|
||||
"GGGsvmljw8##$53y333332q0w0tjjlZCpGGG",
|
||||
"GGG7fhzzt@#+#<83e33eq2q20wrrjlZCpGGG",
|
||||
"GGGG64kjk5$$$5y3eeqe23eqw0rjznZCpGGG",
|
||||
"GGGGG4kkt2u83qe33q3333300rrrjmZfsGGG",
|
||||
"GGGGGd4kkweeeqq33331@@1e0trjzZAf7GGG",
|
||||
"GGGGGG6xktr0eqeq248O.O%4wkkkzVhsGGGG",
|
||||
"GGGGGG71wkt334y881@XXXo4e2%@abh6GGGG",
|
||||
"GGGGGG7a<4y1%@OOOOXXXX.O%@o@ANadGGGG",
|
||||
"GGGGGG7xc%oo.XXXXXXXXXX.oooCAcs7GGGG",
|
||||
"GGGGGGGfvxo.XXXXXXXXXXX.o%cANsdGGGGG",
|
||||
"GGGGGGG6fvgO.XXXXXXXXX..@CABsdGGGGGG",
|
||||
"GGGGGGGG76fv%..XXXXXX..%fBBs7GGGGGGG",
|
||||
"GGGGGGGGGG666&&#O..X#&&7ss6GGGGGGGGG",
|
||||
"GGGGGGGGGGG7dGGSdddGGGGGGddGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG"
|
||||
};
|
||||
105
gtkballs-data/themes/5balls-Big/blue_destroy2.xpm
Normal file
105
gtkballs-data/themes/5balls-Big/blue_destroy2.xpm
Normal file
@ -0,0 +1,105 @@
|
||||
/* XPM */
|
||||
static char *blue_destroy2[] = {
|
||||
"36 36 65 1",
|
||||
" c black",
|
||||
". c #6e1b00",
|
||||
"X c #6f2405",
|
||||
"o c #7e7c65",
|
||||
"O c #8c3107",
|
||||
"+ c #8c3329",
|
||||
"@ c #9d5614",
|
||||
"# c #ac4a02",
|
||||
"$ c #907d52",
|
||||
"% c #867c67",
|
||||
"& c #a25a4b",
|
||||
"* c #d56c0e",
|
||||
"= c #dd6e25",
|
||||
"- c #ea7d04",
|
||||
"; c #f37308",
|
||||
": c #f77905",
|
||||
"> c #97891c",
|
||||
", c #948731",
|
||||
"< c #af9408",
|
||||
"1 c #b19f27",
|
||||
"2 c #898259",
|
||||
"3 c #93864d",
|
||||
"4 c #878267",
|
||||
"5 c #ab934b",
|
||||
"6 c #b4a751",
|
||||
"7 c #bab060",
|
||||
"8 c #da8c06",
|
||||
"9 c #d18a2d",
|
||||
"0 c #c2a50c",
|
||||
"q c #ea8c02",
|
||||
"w c #fb8709",
|
||||
"e c #ff8814",
|
||||
"r c #fa9709",
|
||||
"t c #ff9816",
|
||||
"y c #ff9522",
|
||||
"u c #f9a70a",
|
||||
"i c #fea716",
|
||||
"p c #f3b308",
|
||||
"a c #fdba16",
|
||||
"s c #fea825",
|
||||
"d c #ffba22",
|
||||
"f c #c69a44",
|
||||
"g c #c9b34d",
|
||||
"h c #d2b863",
|
||||
"j c #fab952",
|
||||
"k c #daca2a",
|
||||
"l c #fcc816",
|
||||
"z c #f7d115",
|
||||
"x c #fed726",
|
||||
"c c #f7d432",
|
||||
"v c #fee727",
|
||||
"b c #fdea35",
|
||||
"n c #fff62d",
|
||||
"m c #fff636",
|
||||
"M c #d0c453",
|
||||
"N c #d7cd66",
|
||||
"B c #f3d556",
|
||||
"V c #f5d36a",
|
||||
"C c #f8e753",
|
||||
"Z c #fff948",
|
||||
"A c #fff95a",
|
||||
"S c #f9ea6f",
|
||||
"D c #fef868",
|
||||
"F c #fdeb82",
|
||||
"G c None",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGG3,1kccbck11,$GGGGGGGGGGG",
|
||||
"GGGGGGGGGGG$6VACZZZZZADh624GGGGGGGGG",
|
||||
"GGGGGGGGGG$fBBcbbmnvnmZADM34GGGGGGGG",
|
||||
"GGGGGGGG%$5V988plzzzlxmmZAM54GGGGGGG",
|
||||
"GGGGGGGG$fV&+#-qruaruuazmZDS,2GGGGGG",
|
||||
"GGGGGGG$fV9++=eesaurqqqpxnZAN3oGGGGG",
|
||||
"GGGGGG2>Cs-*=;ettrdstrqpzvnZD724GGGG",
|
||||
"GGGGG$5DZcteye:wrtirttaulvvmAS54GGGG",
|
||||
"GGGG%,BZvadse:wttrtewwtrilzmZAN2GGGG",
|
||||
"GGGG2gAbzpirtewtsww;:wttiulnnZD3GGGG",
|
||||
"GGG%$CZvpauqqttttwwew::trqalnmA6$GGG",
|
||||
"GGG$6DZbaarqiwty::we:ew-wrupzvAN$GGG",
|
||||
"GGG,NAvxprr-ttwe:w:e;w;trraaxbAN,GGG",
|
||||
"GGG,NAmzxairwww:ee::eeettiulzbAF,GGG",
|
||||
"GGG>SZmmxutwetee;;:e:yewtriaxxAS,GGG",
|
||||
"GGG>SZnzxuiwe;we::e;eewwttipbbAS,GGG",
|
||||
"GGG,VZnxldrtwwttw;:e:e:wiiiaxmAS,GGG",
|
||||
"GGG,NAmzlairst:w:::t:;:wiuapxbDN,GGG",
|
||||
"GGG27Abzlurqtww:weeetetwwiplvZAh3GGG",
|
||||
"GGG%3BZvlpurrtt::e:wtwt-iiapxbD6%GGG",
|
||||
"GGGG2fDbllaaitswe;;tww-ridaxmZB34GGG",
|
||||
"GGGG%,Scplpdu-wtwwwwttriiipzmAM2GGGG",
|
||||
"GGGGG$hAxlairrttttwttqiipalnZD3oGGGG",
|
||||
"GGGGG43MAxliqtwwyyysttialalmA72GGGGG",
|
||||
"GGGGGG$5DZxarye;e=***erllzmAB2GGGGGG",
|
||||
"GGGGGG%36CZaqq**#OO##-qaxbAB,%GGGGGG",
|
||||
"GGGGGGG%3gDZl8##OX.O#*rcASN62GGGGGGG",
|
||||
"GGGGGGGG43gSDSj9@.@@9jjgg534GGGGGGGG",
|
||||
"GGGGGGGGG%23hNSSSSSFh5$$44%GGGGGGGGG",
|
||||
"GGGGGGGGGGG%3,><<0<<>$$%GGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG"
|
||||
};
|
||||
105
gtkballs-data/themes/5balls-Big/blue_destroy3.xpm
Normal file
105
gtkballs-data/themes/5balls-Big/blue_destroy3.xpm
Normal file
@ -0,0 +1,105 @@
|
||||
/* XPM */
|
||||
static char *blue_destroy3[] = {
|
||||
"36 36 65 1",
|
||||
" c black",
|
||||
". c #6b3a3d",
|
||||
"X c #5e3255",
|
||||
"o c #7f7d64",
|
||||
"O c #987a35",
|
||||
"+ c #b86502",
|
||||
"@ c #a17f3f",
|
||||
"# c #8f7b54",
|
||||
"$ c #8b7d68",
|
||||
"% c #a26256",
|
||||
"& c #d16909",
|
||||
"* c #ed7b02",
|
||||
"= c #f47b0e",
|
||||
"- c #f77b08",
|
||||
"; c #a06e8b",
|
||||
": c #928630",
|
||||
"> c #aa8a16",
|
||||
", c #af913c",
|
||||
"< c #b6a739",
|
||||
"1 c #92874e",
|
||||
"2 c #898165",
|
||||
"3 c #ad904c",
|
||||
"4 c #bba649",
|
||||
"5 c #d0920d",
|
||||
"6 c #d5902d",
|
||||
"7 c #cca714",
|
||||
"8 c #d5ad2e",
|
||||
"9 c #ea920b",
|
||||
"0 c #f9850a",
|
||||
"q c #fd8a15",
|
||||
"w c #f7950b",
|
||||
"e c #fd9618",
|
||||
"r c #f6932e",
|
||||
"t c #fd9a25",
|
||||
"y c #f0a80f",
|
||||
"u c #fca818",
|
||||
"i c #fdb717",
|
||||
"p c #fea724",
|
||||
"a c #fbaf31",
|
||||
"s c #feb526",
|
||||
"d c #ccad4c",
|
||||
"f c #d2ac56",
|
||||
"g c #f89447",
|
||||
"h c #f7b64d",
|
||||
"j c #fda96d",
|
||||
"k c #dac822",
|
||||
"l c #f7c816",
|
||||
"z c #fcc725",
|
||||
"x c #ffc737",
|
||||
"c c #f6d826",
|
||||
"v c #ffd93a",
|
||||
"b c #ffeb35",
|
||||
"n c #d3c952",
|
||||
"m c #d3c865",
|
||||
"M c #feda45",
|
||||
"N c #f5d359",
|
||||
"B c #f4d566",
|
||||
"V c #ffe94b",
|
||||
"C c #feec56",
|
||||
"Z c #fff64a",
|
||||
"A c #fff754",
|
||||
"S c #faec69",
|
||||
"D c #ea9895",
|
||||
"F c #ffd1ae",
|
||||
"G c None",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGG$3>7kckk7>:2GGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGG#3BCVZVACSm12GGGGGGGGGG",
|
||||
"GGGGGGGGGGGGG%jhassvxMVASn:2GGGGGGGG",
|
||||
"GGGGGGGGGGGGX%grat99y9yvAAS1$GGGGGGG",
|
||||
"GGGGGGGGGG;X%jjgrrhBBht9zbAN3oGGGGGG",
|
||||
"GGGGGGG2$#.;DFjgrrrNhrtwybbAB1GGGGGG",
|
||||
"GGGGGG$Odh6grgrrq=qqqq-pwicbAf1GGGGG",
|
||||
"GGGGG$@hxuqq0q0q===q0--*0uibAS:GGGGG",
|
||||
"GGGG$O6Mye*qq=0qqteq0q00suuibZn1GGGG",
|
||||
"GGGG#dxziwe-=qtepateeq*0w*uwybC1GGGG",
|
||||
"GGG21Nvzie*qqqtappeaeeqq0*wuybC3$GGG",
|
||||
"GGG#4Vbiuw00qqtpppepeet-q00eicAm1GGG",
|
||||
"GGG:BZbzw0q0qeewaappupeq0qqwicAmOGGG",
|
||||
"GGG:NZciw00qeeeauesssueq0-*wybAB:GGG",
|
||||
"GGG:Sbcywq-qttpssxssuptqe0ewylAS:GGG",
|
||||
"GGG:BZcu*-=ttepxsysxxptqq00ezzAS:GGG",
|
||||
"GGG:mZliw-qeeeau9puuswep000uuvCB:GGG",
|
||||
"GGG1mAbiwp-qatpesssuupeeq0*wizAm1GGG",
|
||||
"GGG#1Cbiuq*0qqqessuuuq0q0*0wibAm1GGG",
|
||||
"GGGG1<Ciuu*0q0qeuus9et0qqewylbC32GGG",
|
||||
"GGGG#<Cxi9ww*qqq00eeeqq=**uylbN1GGGG",
|
||||
"GGGG2Onviuueq-qqqqeee*=qeqeibAn2GGGG",
|
||||
"GGGG$#dMiweq-&-00p99e0q0ee09VN:2GGGG",
|
||||
"GGGGG$@8vs0*-qewxxMxu0qq0*9xS41GGGGG",
|
||||
"GGGGGG#,Ss99epxvMVAZvwq009CVN1GGGGGG",
|
||||
"GGGGGG2#dSxyuusxMCVCvs9e9MSN,2GGGGGG",
|
||||
"GGGGGGG$1dCM75parh6aa65yMCf1$GGGGGGG",
|
||||
"GGGGGGGG$14dSN86++&656BN8,1$GGGGGGGG",
|
||||
"GGGGGGGGG$$1#,dNBhNNh33##2$GGGGGGGGG",
|
||||
"GGGGGGGGGGGG$#O>775>>O#2GGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG"
|
||||
};
|
||||
105
gtkballs-data/themes/5balls-Big/blue_destroy4.xpm
Normal file
105
gtkballs-data/themes/5balls-Big/blue_destroy4.xpm
Normal file
@ -0,0 +1,105 @@
|
||||
/* XPM */
|
||||
static char *blue_destroy4[] = {
|
||||
"36 36 65 1",
|
||||
" c black",
|
||||
". c #745263",
|
||||
"X c #987936",
|
||||
"o c #bd7911",
|
||||
"O c #b47531",
|
||||
"+ c #965b6c",
|
||||
"@ c #927850",
|
||||
"# c #997b54",
|
||||
"$ c #8e7c65",
|
||||
"% c #ab6257",
|
||||
"& c #a1774d",
|
||||
"* c #c87512",
|
||||
"= c #d87d36",
|
||||
"- c #ce7c44",
|
||||
"; c #97862f",
|
||||
": c #b48633",
|
||||
"> c #baa818",
|
||||
", c #908452",
|
||||
"< c #888266",
|
||||
"1 c #b09149",
|
||||
"2 c #bca64c",
|
||||
"3 c #d29209",
|
||||
"4 c #d48f30",
|
||||
"5 c #d9bc1a",
|
||||
"6 c #cba538",
|
||||
"7 c #eb8903",
|
||||
"8 c #eb9806",
|
||||
"9 c #f38c0a",
|
||||
"0 c #f69609",
|
||||
"q c #fb9814",
|
||||
"w c #ed962e",
|
||||
"e c #eaa908",
|
||||
"r c #edb00f",
|
||||
"t c #fba616",
|
||||
"y c #fcb818",
|
||||
"u c #faab30",
|
||||
"i c #fdba26",
|
||||
"p c #d08f4a",
|
||||
"a c #e09a6a",
|
||||
"s c #d0b050",
|
||||
"d c #f4b44d",
|
||||
"f c #fac618",
|
||||
"g c #f5d518",
|
||||
"h c #fecb26",
|
||||
"j c #fcc735",
|
||||
"k c #fed926",
|
||||
"l c #fed736",
|
||||
"z c #fbe91b",
|
||||
"x c #efe52b",
|
||||
"c c #fde82a",
|
||||
"v c #fde737",
|
||||
"b c #fff92a",
|
||||
"n c #fffb38",
|
||||
"m c #d9c54e",
|
||||
"M c #decd65",
|
||||
"N c #ffc843",
|
||||
"B c #f3cf51",
|
||||
"V c #ffd949",
|
||||
"C c #f2d166",
|
||||
"Z c #ffe949",
|
||||
"A c #ffea54",
|
||||
"S c #fffd45",
|
||||
"D c #fff857",
|
||||
"F c #feeb65",
|
||||
"G c None",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGG#O3rrh5>;,<GGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGG#dBVVvZAFs,,<GGGGGGGGG",
|
||||
"GGGGGGGGGGGGGG@pwwtrrlZABm;<GGGGGGGG",
|
||||
"GGGGGGGGGGGG..%pduNilr3fZZm1<GGGGGGG",
|
||||
"GGGGGGGGGGG.++adVFDDDZltrvDm;<GGGGGG",
|
||||
"GGGGGGG$$$.+%%aBllDDDZlt8rvZm,GGGGGG",
|
||||
"GGGGGGG&pOO-pdBZvvvSvfhyt98lA2@GGGGG",
|
||||
"GGGGGG#4wwuudNlvnnnckgky090elF;$GGGG",
|
||||
"GGGGG&4uq9ujASvxncnnncnhht0elAs<GGGG",
|
||||
"GGGG$pwt00ihlnnnnSnnnnnkfi80yvB,GGGG",
|
||||
"GGGG#dN7qqjlvDSSnSnnbbbbkh0q*vA1,GGG",
|
||||
"GGG@1NyquqilSxSSSSSnnbbbghtq9yA2XGGG",
|
||||
"GGG@sAt9qihvcSSnnSSSSnnbcghq0eAM;GGG",
|
||||
"GGG;sj87qihccvSnnnSSSnnbbkht7rAC;GGG",
|
||||
"GGG;CVe9ifknnSSnnnnnSnbczbf09eZC;GGG",
|
||||
"GGG;dVe7thcnxnSnSbbnnnnbgckt9rAB;GGG",
|
||||
"GGGXsVe7tfnxnbnnnbnnnbbbzgyt78AC;GGG",
|
||||
"GGG#pVr0tyknnbbnnnbnbbbbzcy09fAM;GGG",
|
||||
"GGG$@6u9qykkncbSSnnnbbbbccyq7hDs,GGG",
|
||||
"GGGG$:Nq7thfkcccnnnnbzbbgr899vA1,GGG",
|
||||
"GGGG$XCq9qtikcknbbbbbbbgyyq00lj,$GGG",
|
||||
"GGGGG#Ou090ihfkcgcnnbbzkht07jV6@GGGG",
|
||||
"GGGGG$Ou7q9tyyfgcnSnbgfyt8iyAC;<GGGG",
|
||||
"GGGGGG&4t7qterkcSSSSnkrri0thB2$GGGGG",
|
||||
"GGGGGG$:dutjVlSSSvncnkrhy8hAm@GGGGGG",
|
||||
"GGGGGGG@1dirrllZAZvllvhhrhAm;<GGGGGG",
|
||||
"GGGGGGGG#1uN3tiiiVNuui8iVCs,<GGGGGGG",
|
||||
"GGGGGGGGG#Osdww433***4d6:X,$GGGGGGGG",
|
||||
"GGGGGGGGGG$#,&ppd4d=-&,@$<GGGGGGGGGG",
|
||||
"GGGGGGGGGGGGG$#Oo4o*O@<GGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG",
|
||||
"GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG"
|
||||
};
|
||||
502
gtkballs-data/themes/5balls-Big/blue_jump1.xpm
Normal file
502
gtkballs-data/themes/5balls-Big/blue_jump1.xpm
Normal file
@ -0,0 +1,502 @@
|
||||
/* XPM */
|
||||
static char * blue_jump1_xpm[] = {
|
||||
"54 54 445 2",
|
||||
" c None",
|
||||
". c #BABBCC",
|
||||
"+ c #A3A5C9",
|
||||
"@ c #9194C7",
|
||||
"# c #8488C4",
|
||||
"$ c #797EC3",
|
||||
"% c #7278C2",
|
||||
"& c #6D73C1",
|
||||
"* c #6F75C1",
|
||||
"= c #757BC1",
|
||||
"- c #7F84C1",
|
||||
"; c #8B8EC3",
|
||||
"> c #9DA0C5",
|
||||
", c #B6B7C8",
|
||||
"' c #9799C7",
|
||||
") c #7B80C5",
|
||||
"! c #7479C4",
|
||||
"~ c #757BC5",
|
||||
"{ c #747AC4",
|
||||
"] c #7277C2",
|
||||
"^ c #6E74C2",
|
||||
"/ c #6D71C1",
|
||||
"( c #6B71BF",
|
||||
"_ c #696FBD",
|
||||
": c #6F75BD",
|
||||
"< c #8E90C0",
|
||||
"[ c #B3B4C7",
|
||||
"} c #B3B4CB",
|
||||
"| c #8B90C5",
|
||||
"1 c #767CC6",
|
||||
"2 c #777DC7",
|
||||
"3 c #7B80C7",
|
||||
"4 c #7A7FC8",
|
||||
"5 c #7B7EC7",
|
||||
"6 c #7376C3",
|
||||
"7 c #7076C2",
|
||||
"8 c #6C72C0",
|
||||
"9 c #6C72BE",
|
||||
"0 c #686EBC",
|
||||
"a c #646ABA",
|
||||
"b c #7C80BA",
|
||||
"c c #A9AAC1",
|
||||
"d c #C2C2CC",
|
||||
"e c #9195C7",
|
||||
"f c #7C81C8",
|
||||
"g c #7E84CA",
|
||||
"h c #8186CB",
|
||||
"i c #8086CC",
|
||||
"j c #7F85CB",
|
||||
"k c #7D82C9",
|
||||
"l c #7578C5",
|
||||
"m c #7076C4",
|
||||
"n c #6E72C2",
|
||||
"o c #6066B8",
|
||||
"p c #7E82B8",
|
||||
"q c #B6B6C2",
|
||||
"r c #A9ABC9",
|
||||
"s c #777DC5",
|
||||
"t c #8388CD",
|
||||
"u c #858ACD",
|
||||
"v c #8489CE",
|
||||
"w c #868BCE",
|
||||
"x c #858BCF",
|
||||
"y c #7B80C9",
|
||||
"z c #7378C3",
|
||||
"A c #656BBB",
|
||||
"B c #5E65B6",
|
||||
"C c #969AB8",
|
||||
"D c #999CC7",
|
||||
"E c #878CCF",
|
||||
"F c #888DD0",
|
||||
"G c #898CD1",
|
||||
"H c #8B90D1",
|
||||
"I c #8A8DD2",
|
||||
"J c #8A8FD0",
|
||||
"K c #5B61B7",
|
||||
"L c #8285B2",
|
||||
"M c #C0C0C0",
|
||||
"N c #7A7FC6",
|
||||
"O c #8D92D3",
|
||||
"P c #9093D4",
|
||||
"Q c #9095D4",
|
||||
"R c #9196D5",
|
||||
"S c #9096D4",
|
||||
"T c #8F94D3",
|
||||
"U c #7B7FC9",
|
||||
"V c #676DBD",
|
||||
"W c #6268BA",
|
||||
"X c #5D63B7",
|
||||
"Y c #5960B7",
|
||||
"Z c #7779AF",
|
||||
"` c #BBBBBB",
|
||||
" . c #9094C6",
|
||||
".. c #8488CE",
|
||||
"+. c #9297D6",
|
||||
"@. c #959AD7",
|
||||
"#. c #969BD8",
|
||||
"$. c #979CD9",
|
||||
"%. c #8C91D2",
|
||||
"&. c #5C62B6",
|
||||
"*. c #535AB7",
|
||||
"=. c #7578AD",
|
||||
"-. c #B8B8B8",
|
||||
";. c #989BC6",
|
||||
">. c #878ECF",
|
||||
",. c #8E93D4",
|
||||
"'. c #9397D5",
|
||||
"). c #999DD9",
|
||||
"!. c #9A9EDA",
|
||||
"~. c #9CA0DA",
|
||||
"{. c #9B9FDB",
|
||||
"]. c #999FD9",
|
||||
"^. c #989DD8",
|
||||
"/. c #5E65B8",
|
||||
"(. c #4F56B7",
|
||||
"_. c #7A7CAA",
|
||||
":. c #A8ABC8",
|
||||
"<. c #8489CC",
|
||||
"[. c #969CD8",
|
||||
"}. c #9A9DDA",
|
||||
"|. c #9EA4DC",
|
||||
"1. c #A1A5DD",
|
||||
"2. c #A2A6DE",
|
||||
"3. c #9EA2DC",
|
||||
"4. c #9CA1DC",
|
||||
"5. c #9499D6",
|
||||
"6. c #8287CC",
|
||||
"7. c #666CBC",
|
||||
"8. c #6068B8",
|
||||
"9. c #545BB8",
|
||||
"0. c #4A52B8",
|
||||
"a. c #8587A5",
|
||||
"b. c #C0C1CC",
|
||||
"c. c #7076C0",
|
||||
"d. c #797EC5",
|
||||
"e. c #898ED1",
|
||||
"f. c #A5A9DF",
|
||||
"g. c #A7A9E1",
|
||||
"h. c #A6AAE2",
|
||||
"i. c #A7ABE1",
|
||||
"j. c #A4A8E0",
|
||||
"k. c #8F95D3",
|
||||
"l. c #868DCE",
|
||||
"m. c #7C83C8",
|
||||
"n. c #555CB7",
|
||||
"o. c #4D55B7",
|
||||
"p. c #4850B6",
|
||||
"q. c #9798A1",
|
||||
"r. c #8B8FC5",
|
||||
"s. c #A3A7DF",
|
||||
"t. c #A7ABE3",
|
||||
"u. c #AAADE4",
|
||||
"v. c #ABAEE5",
|
||||
"w. c #ADB1E5",
|
||||
"x. c #ACB1E4",
|
||||
"y. c #AAAEE4",
|
||||
"z. c #A0A4DC",
|
||||
"A. c #9295D6",
|
||||
"B. c #7D83CB",
|
||||
"C. c #5058B8",
|
||||
"D. c #474FB7",
|
||||
"E. c #686DA6",
|
||||
"F. c #A5A5A5",
|
||||
"G. c #B1B3C9",
|
||||
"H. c #ACAFE6",
|
||||
"I. c #AFB5E7",
|
||||
"J. c #B2B6E8",
|
||||
"K. c #B2B7E8",
|
||||
"L. c #ADB2E5",
|
||||
"M. c #9194D5",
|
||||
"N. c #6167B9",
|
||||
"O. c #5259B8",
|
||||
"P. c #4951B7",
|
||||
"Q. c #434BB7",
|
||||
"R. c #838599",
|
||||
"S. c #AEAEAE",
|
||||
"T. c #8387C1",
|
||||
"U. c #797EC7",
|
||||
"V. c #7C82CA",
|
||||
"W. c #8E93D2",
|
||||
"X. c #979AD9",
|
||||
"Y. c #A9AFE3",
|
||||
"Z. c #AEB2E6",
|
||||
"`. c #B3B7E9",
|
||||
" + c #B6BBEA",
|
||||
".+ c #B7BBEB",
|
||||
"++ c #B6BAEA",
|
||||
"@+ c #B5B9EB",
|
||||
"#+ c #AEB0E6",
|
||||
"$+ c #A9ADE3",
|
||||
"%+ c #989ED8",
|
||||
"&+ c #6369B9",
|
||||
"*+ c #5D64B7",
|
||||
"=+ c #4B53B7",
|
||||
"-+ c #5E63A6",
|
||||
";+ c #9A9A9A",
|
||||
">+ c #BABABA",
|
||||
",+ c #B6B8CA",
|
||||
"'+ c #6B71BD",
|
||||
")+ c #888FD0",
|
||||
"!+ c #A8ACE2",
|
||||
"~+ c #B9BDED",
|
||||
"{+ c #BCC0EE",
|
||||
"]+ c #BCC1EE",
|
||||
"^+ c #BABEEC",
|
||||
"/+ c #9FA3DD",
|
||||
"(+ c #949AD6",
|
||||
"_+ c #6A70BE",
|
||||
":+ c #575EB7",
|
||||
"<+ c #444CB8",
|
||||
"[+ c #3E46B4",
|
||||
"}+ c #818391",
|
||||
"|+ c #A9A9A9",
|
||||
"1+ c #9195C3",
|
||||
"2+ c #7A7EC8",
|
||||
"3+ c #BDC1EF",
|
||||
"4+ c #C1C3F1",
|
||||
"5+ c #C4C7F2",
|
||||
"6+ c #C1C5F1",
|
||||
"7+ c #BEC2F0",
|
||||
"8+ c #A6AAE0",
|
||||
"9+ c #A0A3DE",
|
||||
"0+ c #666CBA",
|
||||
"a+ c #4E55B8",
|
||||
"b+ c #3F47B5",
|
||||
"c+ c #666A9E",
|
||||
"d+ c #979797",
|
||||
"e+ c #B9B9B9",
|
||||
"f+ c #ABAFE5",
|
||||
"g+ c #C5C8F3",
|
||||
"h+ c #C8CBF4",
|
||||
"i+ c #C5C9F3",
|
||||
"j+ c #C2C6F2",
|
||||
"k+ c #464EB6",
|
||||
"l+ c #454DAF",
|
||||
"m+ c #898989",
|
||||
"n+ c #ACACAC",
|
||||
"o+ c #B5B7C9",
|
||||
"p+ c #B8BBEC",
|
||||
"q+ c #C2C4F2",
|
||||
"r+ c #C9CBF5",
|
||||
"s+ c #CED1F8",
|
||||
"t+ c #9297D4",
|
||||
"u+ c #4048B6",
|
||||
"v+ c #3942B3",
|
||||
"w+ c #7A7C8C",
|
||||
"x+ c #9E9E9E",
|
||||
"y+ c #BEBEBE",
|
||||
"z+ c #9B9DC3",
|
||||
"A+ c #A6A9E2",
|
||||
"B+ c #A7ACE1",
|
||||
"C+ c #6C6E94",
|
||||
"D+ c #919191",
|
||||
"E+ c #B6B6B6",
|
||||
"F+ c #868BC0",
|
||||
"G+ c #A6ABE0",
|
||||
"H+ c #BFC3EF",
|
||||
"I+ c #C0C4F2",
|
||||
"J+ c #BDC2EF",
|
||||
"K+ c #B5B8EB",
|
||||
"L+ c #B0B4E8",
|
||||
"M+ c #A5A9E1",
|
||||
"N+ c #A0A4DE",
|
||||
"O+ c #5E64B8",
|
||||
"P+ c #454DB5",
|
||||
"Q+ c #4048B4",
|
||||
"R+ c #5B5E9F",
|
||||
"S+ c #888888",
|
||||
"T+ c #7479BC",
|
||||
"U+ c #A5AADF",
|
||||
"V+ c #ACB0E6",
|
||||
"W+ c #AEB1E6",
|
||||
"X+ c #3841B2",
|
||||
"Y+ c #4C52A6",
|
||||
"Z+ c #818181",
|
||||
"`+ c #A2A2A2",
|
||||
" @ c #C2C2C2",
|
||||
".@ c #686FB8",
|
||||
"+@ c #B7BCEB",
|
||||
"@@ c #7A7DC6",
|
||||
"#@ c #4C53B8",
|
||||
"$@ c #3740B1",
|
||||
"%@ c #3E46AA",
|
||||
"&@ c #7D7D7D",
|
||||
"*@ c #BDBDBD",
|
||||
"=@ c #5D66B7",
|
||||
"-@ c #989CDA",
|
||||
";@ c #A4A8DE",
|
||||
">@ c #4850B8",
|
||||
",@ c #3D45B3",
|
||||
"'@ c #363FB2",
|
||||
")@ c #333CAF",
|
||||
"!@ c #7A7A7A",
|
||||
"~@ c #959595",
|
||||
"{@ c #5E67B8",
|
||||
"]@ c #9FA2DD",
|
||||
"^@ c #888BD0",
|
||||
"/@ c #4149B5",
|
||||
"(@ c #3A43B4",
|
||||
"_@ c #353EB1",
|
||||
":@ c #3039AE",
|
||||
"<@ c #777777",
|
||||
"[@ c #909090",
|
||||
"}@ c #5D63B5",
|
||||
"|@ c #7379C3",
|
||||
"1@ c #8286CC",
|
||||
"2@ c #9396D7",
|
||||
"3@ c #333CB1",
|
||||
"4@ c #767676",
|
||||
"5@ c #8D8D8D",
|
||||
"6@ c #6368B5",
|
||||
"7@ c #676DBB",
|
||||
"8@ c #3C45B6",
|
||||
"9@ c #313AB1",
|
||||
"0@ c #3A42AA",
|
||||
"a@ c #757575",
|
||||
"b@ c #8C8C8C",
|
||||
"c@ c #6D72B7",
|
||||
"d@ c #8085CA",
|
||||
"e@ c #8287CE",
|
||||
"f@ c #686EBE",
|
||||
"g@ c #4149B7",
|
||||
"h@ c #3B44B5",
|
||||
"i@ c #3039B0",
|
||||
"j@ c #464CA2",
|
||||
"k@ c #7E82BA",
|
||||
"l@ c #2E37AE",
|
||||
"m@ c #565A9A",
|
||||
"n@ c #9397BF",
|
||||
"o@ c #6F77C1",
|
||||
"p@ c #424AB6",
|
||||
"q@ c #363FB0",
|
||||
"r@ c #2B34AD",
|
||||
"s@ c #646790",
|
||||
"t@ c #949494",
|
||||
"u@ c #B1B3C5",
|
||||
"v@ c #6F75C3",
|
||||
"w@ c #767EC6",
|
||||
"x@ c #6F73C3",
|
||||
"y@ c #6369BB",
|
||||
"z@ c #5A60B6",
|
||||
"A@ c #515BB7",
|
||||
"B@ c #2932AB",
|
||||
"C@ c #707182",
|
||||
"D@ c #585EB4",
|
||||
"E@ c #8589CF",
|
||||
"F@ c #6C70C0",
|
||||
"G@ c #3B44B3",
|
||||
"H@ c #353AA7",
|
||||
"I@ c #737373",
|
||||
"J@ c #8084B8",
|
||||
"K@ c #4751B7",
|
||||
"L@ c #2D36AF",
|
||||
"M@ c #2731AD",
|
||||
"N@ c #585D96",
|
||||
"O@ c #ADAFC3",
|
||||
"P@ c #343DB0",
|
||||
"Q@ c #2F38AF",
|
||||
"R@ c #2A33AC",
|
||||
"S@ c #242EAA",
|
||||
"T@ c #6F7183",
|
||||
"U@ c #797979",
|
||||
"V@ c #6B6EB1",
|
||||
"W@ c #2630AC",
|
||||
"X@ c #484E9C",
|
||||
"Y@ c #727272",
|
||||
"Z@ c #7E7E7E",
|
||||
"`@ c #A1A4BD",
|
||||
" # c #535DB7",
|
||||
".# c #333BAF",
|
||||
"+# c #2C35AE",
|
||||
"@# c #222CAA",
|
||||
"## c #6C6E84",
|
||||
"$# c #6F75AF",
|
||||
"%# c #444CB6",
|
||||
"&# c #5159B7",
|
||||
"*# c #6268B8",
|
||||
"=# c #232DA9",
|
||||
"-# c #4E5398",
|
||||
";# c #B2B2C0",
|
||||
"># c #3F47B3",
|
||||
",# c #6167B7",
|
||||
"'# c #242EA8",
|
||||
")# c #71747D",
|
||||
"!# c #8F90B3",
|
||||
"~# c #202AAA",
|
||||
"{# c #676B8B",
|
||||
"]# c #767AAC",
|
||||
"^# c #454DB9",
|
||||
"/# c #2D36AD",
|
||||
"(# c #575D93",
|
||||
"_# c #8E8E8E",
|
||||
":# c #BFBFBF",
|
||||
"<# c #686CA8",
|
||||
"[# c #1F29A9",
|
||||
"}# c #4E5498",
|
||||
"|# c #A4A4A4",
|
||||
"1# c #6569A7",
|
||||
"2# c #2630AA",
|
||||
"3# c #858585",
|
||||
"4# c #9F9F9F",
|
||||
"5# c #6E71A4",
|
||||
"6# c #3740B3",
|
||||
"7# c #212BAB",
|
||||
"8# c #1E28A8",
|
||||
"9# c #575A93",
|
||||
"0# c #848484",
|
||||
"a# c #9C9C9C",
|
||||
"b# c #7F81A1",
|
||||
"c# c #313AAD",
|
||||
"d# c #353EAF",
|
||||
"e# c #252FAB",
|
||||
"f# c #212BA7",
|
||||
"g# c #65678B",
|
||||
"h# c #B7B7B7",
|
||||
"i# c #9696A0",
|
||||
"j# c #585DA2",
|
||||
"k# c #323BB2",
|
||||
"l# c #1D27A9",
|
||||
"m# c #4B5199",
|
||||
"n# c #70717C",
|
||||
"o# c #808296",
|
||||
"p# c #4E54A2",
|
||||
"q# c #2C35AC",
|
||||
"r# c #2831AA",
|
||||
"s# c #1D27A7",
|
||||
"t# c #454B9B",
|
||||
"u# c #6B6D85",
|
||||
"v# c #808090",
|
||||
"w# c #5C609A",
|
||||
"x# c #353DA7",
|
||||
"y# c #252EA9",
|
||||
"z# c #2C34A2",
|
||||
"A# c #555995",
|
||||
"B# c #6E7082",
|
||||
"C# c #777989",
|
||||
"D# c #666892",
|
||||
"E# c #51579B",
|
||||
"F# c #4047A0",
|
||||
"G# c #2F38A5",
|
||||
"H# c #252EA7",
|
||||
"I# c #2C35A4",
|
||||
"J# c #3D449F",
|
||||
"K# c #61638F",
|
||||
"L# c #7F7F7F",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . + @ # $ % & * = - ; > , ",
|
||||
" . ' ) ! ~ ~ ~ ~ ~ { ] ] ^ / ( _ : < [ ",
|
||||
" } | ~ 1 2 3 4 4 4 4 3 5 2 1 ~ 6 7 8 9 0 a b c ",
|
||||
" d e ~ 2 3 f g g g h i h j g k f 3 2 l m n ( _ a o p q ",
|
||||
" r s 1 3 f g i t u v w w x x v t i g y 3 1 z 7 ( _ A o B C ",
|
||||
" D ! 2 4 g h v E F G H H H I J J F E t i g 4 2 ! 7 ( _ a o K L M ",
|
||||
" e { N 4 g t x F H O P Q Q R Q S T O H F E t j U 2 { 7 ( V W X Y Z ` ",
|
||||
" .{ 2 4 j ..E H O Q +.@.#.$.$.#.#.@.+.Q %.H F t j 4 2 { & ( A o &.*.=.-. ",
|
||||
" ;.] 1 4 j t >.H ,.'.@.$.).!.~.{.~.!.].^.#.'.T H F t j 4 1 ] 8 _ a /.Y (._.-. ",
|
||||
" :.7 ~ 3 g <.F H Q +.[.}.{.|.1.2.2.2.1.3.4.).^.5.Q I F 6.g 3 ~ ^ ( 7.8.&.9.0.a.-. ",
|
||||
" b.c.z d.k i E e.,.5.$.!.3.2.f.g.h.h.h.i.j.2.3.!.$.5.k.H l.i m.d.] 8 _ a /.n.o.p.q.` ",
|
||||
" r.^ ! 3 g t F O '.^.!.|.s.i.t.u.v.w.x.y.t.i.s.z.~.^.A.O F t B.3 ~ ^ 9 7.o K C.D.E.F.M ",
|
||||
" G.8 ] 1 y i E H R #.).3.s.h.y.H.I.J.J.K.I.L.y.h.s.3.).@.M.H w i y 1 ] ( 0 N.&.O.P.Q.R.S. ",
|
||||
" T./ 6 U.V.6.F W.'.X.{.2.i.Y.Z.`. +.+.+++@+`.#+$+g.2.4.%++.O F t g N z & _ &+*+n.=+Q.-+;+>+ ",
|
||||
" ,+'+& { U.g v )+T @.).z.j.!+Z.K.++~+{+]+{+^+ +J.Z.t.j./+).(+T F v g 3 { * _+a X :+o.<+[+}+|+ ",
|
||||
" 1+_+^ ~ 2+j v e.Q #.!.1.i.y.I.@+^+3+4+5+6+7+^+@+I.y.8+9+!.#.Q H w j 3 ~ ^ ( 0+/.:+a+<+b+c+d+e+ ",
|
||||
" : 9 7 1 4 j E H R ^.4.2.h.f+J.@+{+6+g+h+i+j+{+@+J.f+h.2.{.^.M.H w h 4 ~ ^ 9 A o Y o.k+b+l+m+n+ ",
|
||||
" o+A _+^ 1 4 j E %.R $.{.2.h.w.K.p+3+q+r+s+h+5+3+.+K.H.h.2.4.#.t+%.x h 4 ~ ^ ( A /.Y (.k+u+v+w+x+y+ ",
|
||||
" z+A _+7 ~ 4 h E H Q #.{.2.A+v.J..+{+6+g+r+g+j+{+@+J.v.B+2.4.#.t+H E i 4 ~ * ( A /.Y (.<+u+v+C+D+E+ ",
|
||||
" F+A _+^ ~ 4 j w H Q #.!.1.G+y.I.++~+H+6+q+I+J+^+K+L+y.M+N+!.#.Q J w j 4 ~ ^ _+A O+:+o.P+Q+v+R+S+n+ ",
|
||||
" T+a _+& { 3 g v G ,.@.).3.U+!+V+J.K+~+{+3+{+~+ +K.W+!+j./+].@.k.J t g 3 ! & _ A X :+o.<+[+X+Y+Z+`+ @",
|
||||
" .@W _ & ] N k t F %.'.%+4.2.i.y.Z.K.@+.++@@+ +J.Z.y.i.2.4.$.'.O F t k @@z 8 _ &+*+n.#@Q.[+$@%@&@;+*@",
|
||||
" =@N.0 ( ] 1 y h E H Q @.-@|.;@h.y.w.I.J.J.J.L+V+y.h.s.3.).@.Q H E h 4 1 ] ( 0 N.&.O.>@Q.,@'@)@!@~@>+",
|
||||
" K {@A ( ^ ~ 3 g v F %.R $.~.]@;@i.$+y.v.f+f+y.t.i.s./+!.$.R O ^@..j 3 ~ 7 ( A o Y C.D./@(@_@:@<@[@-.",
|
||||
" }@X a _ 8 |@2 y 1@l.J ,.5.$.!.3.2.f.i.B+h.i.M+U+2.3.!.$.2@T H x 6.y 2 |@& _ a X :+o.k+u+v+3@:@4@5@E+",
|
||||
" 6@&.N.7.( 7 ~ 3 g t >.H P 5.#.!.4./+1.2.2.2.1.|.4.).[.5.,.H E t g 3 ~ 7 ( 7@N.&.*.0.Q.8@$@9@0@a@b@E+",
|
||||
" c@Y O+a _ 8 ] 1 4 d@..F H P '.@.X.).!.~.4.{.!.).X.@.+.,.H >.e@j 4 1 z 8 f@a /.Y (.D.g@h@_@i@j@4@5@E+",
|
||||
" k@9.&.o 7@( & z 2 4 j v E e.%.Q '.(+#.#.#.#.#.@.'.Q %.H >...j U 2 ! ^ _+7.N.&.9.0.Q.[+v+3@l@m@<@[@-.",
|
||||
" n@(.:+/.a 0 ( o@{ 2 f j t x F H %.T Q R R Q Q ,.%.H ^@E t g f 2 ! 7 ( V a *+Y (.D.p@,@q@9@r@s@!@t@>+",
|
||||
" u@0.O.K o a _ ( v@! w@4 g h v E F F H H %.H H J F x v i g 4 d.{ x@( _ y@o z@A@>@Q.b+X+3@l@B@C@&@;+*@",
|
||||
" D@#@n.&.N.a _ ( ^ z 1 3 k g i 6.v E@E E w w v t h g y 3 1 { ^ F@_+a o &.9.o.k+u+G@q@i@r@H@I@Z+`+ @",
|
||||
" J@K@a+n.&.o A _ ( * ] ~ w@3 f k g j j i j j g V.f 3 2 ~ z & ( _ a o &.n.o.K@p@[+X+3@L@M@N@a@S+n+ ",
|
||||
" O@Q.>@(.:+&.o a V ( 8 7 ] ~ 1 N 3 3 4 4 4 3 N 2 1 ~ |@^ 8 9 0 a o &.:+C.>@Q.b+v+P@Q@R@S@T@U@D+E+ ",
|
||||
" V@Q.>@C.n.&.o W 7._+( 8 7 7 z { ~ ~ ~ l ~ ! ] ] ^ & ( _ 7.&+/.&.:+C.>@Q.Q+(@_@i@r@W@X@Y@Z@x+y+ ",
|
||||
" `@b+Q.>@(.9.z@X N.a 7._ _+( & n ^ 7 7 7 ^ & 8 ( ( _ 7.a N.X K #(.>@Q.Q+(@q@.#+#M@@###4@m+n+ ",
|
||||
" $#b+%#D.#@&#:+&./.N.a A 0 _ '+( _+_+9 _+_+_ 0 A a *#/.&.:+O.o.D.Q.b+(@q@.#L@B@=#-#Y@&@d+e+ ",
|
||||
" ;#>#b+p@k+0.(.*.Y &.X o *#a a A A A A a a &+N.,#X &.:+9.C.0.k+p@b+(@'@.#L@B@S@'#)#4@m+|+ ",
|
||||
" !#X+[+u+Q.D.#@C.O.:+z@&.&.X O+o {@O+O+X X &.K :+O.(.0.D.Q.u+[+v+_@.#L@B@S@~#{#I@Z@;+e+ ",
|
||||
" ]#$@h@b+p@Q.D.0.o.C.O.n.:+:+Y :+Y :+:+n.*.C.o.0.^#P+p@[+G@$@P@9@/#B@S@~#(#Y@!@_#S. ",
|
||||
" :#<#q@v+,@b+g@Q.<+D.>@0.o.a+(.(.(.o.o.=+0.D.<+Q./@b+G@v+q@.#Q@+#M@=#[#}#Y@<@S+|#:# ",
|
||||
" ` 1#3@'@v+G@[+Q+g@Q.Q.<+<+k+k+k+P+P+Q.Q./@b+,@h@X+'@P@i@l@R@2#=#[#}#Y@4@3#4#` ",
|
||||
" -.5#i@3@_@6#v+h@,@[+b+u+Q+b+u+u+b+[+,@(@v+6#_@3@9@l@r@M@S@7#8#9#Y@4@0#a#-. ",
|
||||
" -.b#c#:@9@P@P@'@6#$@X+v+v+v+X+X+$@'@d#3@.#i@L@r@B@e#@#[#f#g#Y@<@3#a#h# ",
|
||||
" -.i#j#+#l@Q@i@9@.#k#3@3@3@.#.#9@i@Q@L@+#R@W@e#@#[#l#m#n#I@!@S+4#-. ",
|
||||
" ` F.o#p#B@R@r@q#/#+#/#L@+#+#q#R@B@r#e#=#7#[#s#t#u#Y@4@Z@_#|#` ",
|
||||
" M S.;+v#w#x#e#e#2#2#2#W@e#y#=#@#7#[#l#z#A#B#Y@4@&@m+;+S.:# ",
|
||||
" >+|+d+m+C#D#E#F#G#'#~#H#I#J#}#K#B#I@a@U@L#m+d+|+>+ ",
|
||||
" e+n+x+D+m+Z+&@!@<@4@4@4@<@!@&@Z+S+D+x+n+e+ ",
|
||||
" y+E+n+`+;+~@[@5@b@5@[@~@;+`+n+E+y+ ",
|
||||
" @*@>+-.h#E+h#-.>+*@ @ "};
|
||||
502
gtkballs-data/themes/5balls-Big/blue_jump2.xpm
Normal file
502
gtkballs-data/themes/5balls-Big/blue_jump2.xpm
Normal file
@ -0,0 +1,502 @@
|
||||
/* XPM */
|
||||
static char * blue_jump2_xpm[] = {
|
||||
"54 54 445 2",
|
||||
" c None",
|
||||
". c #B8B8CA",
|
||||
"+ c #A0A2C8",
|
||||
"@ c #8F91C5",
|
||||
"# c #8185C3",
|
||||
"$ c #767CC2",
|
||||
"% c #7075C0",
|
||||
"& c #6B71BF",
|
||||
"* c #6C72C0",
|
||||
"= c #7378BF",
|
||||
"- c #7C81C0",
|
||||
"; c #898BC1",
|
||||
"> c #9A9DC4",
|
||||
", c #B5B5C7",
|
||||
"' c #9698C6",
|
||||
") c #787EC4",
|
||||
"! c #7177C3",
|
||||
"~ c #7378C3",
|
||||
"{ c #7277C2",
|
||||
"] c #6F75C1",
|
||||
"^ c #6B6FBF",
|
||||
"/ c #666DBE",
|
||||
"( c #646BBC",
|
||||
"_ c #6D72BB",
|
||||
": c #8C8EBE",
|
||||
"< c #B2B3C6",
|
||||
"[ c #B2B3CA",
|
||||
"} c #888EC4",
|
||||
"| c #7479C4",
|
||||
"1 c #757AC5",
|
||||
"2 c #787DC6",
|
||||
"3 c #777DC7",
|
||||
"4 c #787CC6",
|
||||
"5 c #7074C2",
|
||||
"6 c #6D73C1",
|
||||
"7 c #6A70BE",
|
||||
"8 c #686EBC",
|
||||
"9 c #646ABA",
|
||||
"0 c #6167B9",
|
||||
"a c #797EB9",
|
||||
"b c #A7A8BF",
|
||||
"c c #C0C0CC",
|
||||
"d c #8F93C5",
|
||||
"e c #797FC7",
|
||||
"f c #7B81C9",
|
||||
"g c #7E84CA",
|
||||
"h c #7D83CB",
|
||||
"i c #7C82CA",
|
||||
"j c #7A80C8",
|
||||
"k c #7276C4",
|
||||
"l c #6E74C2",
|
||||
"m c #6C70C0",
|
||||
"n c #696FBD",
|
||||
"o c #5D63B7",
|
||||
"p c #7C80B6",
|
||||
"q c #B5B5C1",
|
||||
"r c #A8AAC8",
|
||||
"s c #747AC4",
|
||||
"t c #8086CC",
|
||||
"u c #8288CC",
|
||||
"v c #8187CD",
|
||||
"w c #8388CD",
|
||||
"x c #8288CE",
|
||||
"y c #787EC8",
|
||||
"z c #7076C2",
|
||||
"A c #6268BA",
|
||||
"B c #5C62B4",
|
||||
"C c #9497B6",
|
||||
"D c #979BC7",
|
||||
"E c #8489CE",
|
||||
"F c #858BCF",
|
||||
"G c #888BD0",
|
||||
"H c #898ED1",
|
||||
"I c #888CD2",
|
||||
"J c #898ECF",
|
||||
"K c #575DB5",
|
||||
"L c #7F83B1",
|
||||
"M c #BFBFBF",
|
||||
"N c #777CC5",
|
||||
"O c #8C91D2",
|
||||
"P c #8D90D3",
|
||||
"Q c #8D92D3",
|
||||
"R c #8E93D4",
|
||||
"S c #8D94D3",
|
||||
"T c #787CC8",
|
||||
"U c #686EBE",
|
||||
"V c #6369BB",
|
||||
"W c #5F65B9",
|
||||
"X c #5A60B6",
|
||||
"Y c #555CB5",
|
||||
"Z c #7376AD",
|
||||
"` c #BABABA",
|
||||
" . c #8E92C4",
|
||||
".. c #8185CD",
|
||||
"+. c #8F94D5",
|
||||
"@. c #9297D6",
|
||||
"#. c #9398D7",
|
||||
"$. c #9499D8",
|
||||
"%. c #8A8FD2",
|
||||
"&. c #575EB5",
|
||||
"*. c #4F56B5",
|
||||
"=. c #7376AB",
|
||||
"-. c #B6B6B6",
|
||||
";. c #969AC6",
|
||||
">. c #848BCE",
|
||||
",. c #8B90D3",
|
||||
"'. c #9095D4",
|
||||
"). c #969BD8",
|
||||
"!. c #979CD9",
|
||||
"~. c #989DDA",
|
||||
"{. c #9A9FDA",
|
||||
"]. c #999EDB",
|
||||
"^. c #979DD9",
|
||||
"/. c #959AD7",
|
||||
"(. c #5C62B6",
|
||||
"_. c #4B52B5",
|
||||
":. c #7679A8",
|
||||
"<. c #A5A9C7",
|
||||
"[. c #8187CB",
|
||||
"}. c #9399D7",
|
||||
"|. c #989BDA",
|
||||
"1. c #9CA2DC",
|
||||
"2. c #9FA4DD",
|
||||
"3. c #A0A4DE",
|
||||
"4. c #9CA1DC",
|
||||
"5. c #9BA0DB",
|
||||
"6. c #9196D5",
|
||||
"7. c #7F85CB",
|
||||
"8. c #5D65B7",
|
||||
"9. c #595FB5",
|
||||
"0. c #5057B6",
|
||||
"a. c #4850B6",
|
||||
"b. c #8384A3",
|
||||
"c. c #BFC0CB",
|
||||
"d. c #6E73BE",
|
||||
"e. c #767BC4",
|
||||
"f. c #888DD0",
|
||||
"g. c #A2A6DE",
|
||||
"h. c #A4A6E0",
|
||||
"i. c #A5A9E1",
|
||||
"j. c #A4A8E0",
|
||||
"k. c #A1A5DF",
|
||||
"l. c #8C92D2",
|
||||
"m. c #838ACD",
|
||||
"n. c #7981C7",
|
||||
"o. c #696FBF",
|
||||
"p. c #5158B5",
|
||||
"q. c #4951B5",
|
||||
"r. c #474EB3",
|
||||
"s. c #9496A0",
|
||||
"t. c #898DC3",
|
||||
"u. c #A6AAE2",
|
||||
"v. c #A9ABE3",
|
||||
"w. c #AAADE4",
|
||||
"x. c #ACB0E4",
|
||||
"y. c #ABB0E3",
|
||||
"z. c #A9ADE3",
|
||||
"A. c #9EA3DC",
|
||||
"B. c #8F92D5",
|
||||
"C. c #868CD0",
|
||||
"D. c #7A80CA",
|
||||
"E. c #4C54B6",
|
||||
"F. c #464DB4",
|
||||
"G. c #6569A3",
|
||||
"H. c #A3A3A3",
|
||||
"I. c #B0B2C8",
|
||||
"J. c #ABAEE5",
|
||||
"K. c #AEB3E6",
|
||||
"L. c #B1B5E7",
|
||||
"M. c #B0B5E8",
|
||||
"N. c #ACB1E4",
|
||||
"O. c #8E91D4",
|
||||
"P. c #5E64B8",
|
||||
"Q. c #4E55B6",
|
||||
"R. c #484FB4",
|
||||
"S. c #4149B3",
|
||||
"T. c #818397",
|
||||
"U. c #ADADAD",
|
||||
"V. c #8084C0",
|
||||
"W. c #767BC6",
|
||||
"X. c #797FC9",
|
||||
"Y. c #9699D8",
|
||||
"Z. c #A8ADE2",
|
||||
"`. c #ADB1E5",
|
||||
" + c #B2B6E8",
|
||||
".+ c #B5BAE9",
|
||||
"++ c #B5B9EB",
|
||||
"@+ c #B4B8EA",
|
||||
"#+ c #ACAFE6",
|
||||
"$+ c #A8ACE2",
|
||||
"%+ c #959BD7",
|
||||
"&+ c #6066B8",
|
||||
"*+ c #5B61B5",
|
||||
"=+ c #4950B5",
|
||||
"-+ c #5A5FA4",
|
||||
";+ c #989898",
|
||||
">+ c #B9B9B9",
|
||||
",+ c #B5B7C9",
|
||||
"'+ c #676DBB",
|
||||
")+ c #868DD0",
|
||||
"!+ c #A7ABE1",
|
||||
"~+ c #B8BBEC",
|
||||
"{+ c #BBBEED",
|
||||
"]+ c #BBBFED",
|
||||
"^+ c #B8BCEC",
|
||||
"/+ c #B4B9EA",
|
||||
"(+ c #9DA2DD",
|
||||
"_+ c #9197D5",
|
||||
":+ c #656CBD",
|
||||
"<+ c #535AB5",
|
||||
"[+ c #434BB5",
|
||||
"}+ c #3C44B0",
|
||||
"|+ c #7F818F",
|
||||
"1+ c #A7A7A7",
|
||||
"2+ c #8F92C1",
|
||||
"3+ c #777BC7",
|
||||
"4+ c #BBBFEF",
|
||||
"5+ c #C0C2F0",
|
||||
"6+ c #C3C6F1",
|
||||
"7+ c #C0C3F0",
|
||||
"8+ c #BDC0EF",
|
||||
"9+ c #A3A7DF",
|
||||
"0+ c #9EA1DE",
|
||||
"a+ c #6369B9",
|
||||
"b+ c #4951B7",
|
||||
"c+ c #3D45B1",
|
||||
"d+ c #63679B",
|
||||
"e+ c #959595",
|
||||
"f+ c #B8B8B8",
|
||||
"g+ c #AAAEE4",
|
||||
"h+ c #B4B7EA",
|
||||
"i+ c #C5C8F3",
|
||||
"j+ c #C8CBF4",
|
||||
"k+ c #C5C9F3",
|
||||
"l+ c #C1C4F1",
|
||||
"m+ c #454CB3",
|
||||
"n+ c #444BAA",
|
||||
"o+ c #868686",
|
||||
"p+ c #AAAAAA",
|
||||
"q+ c #B4B6C8",
|
||||
"r+ c #B6B9EC",
|
||||
"s+ c #C1C3F1",
|
||||
"t+ c #C9CBF5",
|
||||
"u+ c #CCCFF8",
|
||||
"v+ c #8F94D3",
|
||||
"w+ c #3E46B2",
|
||||
"x+ c #3840AE",
|
||||
"y+ c #777989",
|
||||
"z+ c #9C9C9C",
|
||||
"A+ c #BDBDBD",
|
||||
"B+ c #999CC3",
|
||||
"C+ c #A5A8E1",
|
||||
"D+ c #A4A9E0",
|
||||
"E+ c #6A6D92",
|
||||
"F+ c #8F8F8F",
|
||||
"G+ c #B4B4B4",
|
||||
"H+ c #8488BE",
|
||||
"I+ c #A3A8DF",
|
||||
"J+ c #B5B9E9",
|
||||
"K+ c #BEC1EE",
|
||||
"L+ c #BFC2F1",
|
||||
"M+ c #BBC0EF",
|
||||
"N+ c #B4B6EA",
|
||||
"O+ c #AFB3E7",
|
||||
"P+ c #A2A6E0",
|
||||
"Q+ c #9EA3DE",
|
||||
"R+ c #5B61B7",
|
||||
"S+ c #444BB2",
|
||||
"T+ c #3E46B0",
|
||||
"U+ c #5A5D9C",
|
||||
"V+ c #858585",
|
||||
"W+ c #ABABAB",
|
||||
"X+ c #7177BB",
|
||||
"Y+ c #A2A7DE",
|
||||
"Z+ c #ABAFE5",
|
||||
"`+ c #ADAFE5",
|
||||
" @ c #373FAD",
|
||||
".@ c #4A50A2",
|
||||
"+@ c #7F7F7F",
|
||||
"@@ c #A0A0A0",
|
||||
"#@ c #C0C0C0",
|
||||
"$@ c #656DB7",
|
||||
"%@ c #B5BAEB",
|
||||
"&@ c #777BC5",
|
||||
"*@ c #363EAC",
|
||||
"=@ c #3C44A6",
|
||||
"-@ c #7B7B7B",
|
||||
";@ c #BCBCBC",
|
||||
">@ c #5B63B5",
|
||||
",@ c #969BDA",
|
||||
"'@ c #A1A5DD",
|
||||
")@ c #474EB5",
|
||||
"!@ c #3B43AF",
|
||||
"~@ c #353DAD",
|
||||
"{@ c #323BAA",
|
||||
"]@ c #777777",
|
||||
"^@ c #929292",
|
||||
"/@ c #5C64B6",
|
||||
"(@ c #9DA0DD",
|
||||
"_@ c #868AD0",
|
||||
":@ c #3F47B1",
|
||||
"<@ c #3941AF",
|
||||
"[@ c #343CAC",
|
||||
"}@ c #2F38A9",
|
||||
"|@ c #747474",
|
||||
"1@ c #8E8E8E",
|
||||
"2@ c #5A60B4",
|
||||
"3@ c #7176C1",
|
||||
"4@ c #7F83CB",
|
||||
"5@ c #9093D6",
|
||||
"6@ c #323BAC",
|
||||
"7@ c #737373",
|
||||
"8@ c #8B8B8B",
|
||||
"9@ c #6066B4",
|
||||
"0@ c #3B43B1",
|
||||
"a@ c #3039AC",
|
||||
"b@ c #3940A5",
|
||||
"c@ c #727272",
|
||||
"d@ c #8A8A8A",
|
||||
"e@ c #696FB5",
|
||||
"f@ c #7D82C9",
|
||||
"g@ c #7F85CD",
|
||||
"h@ c #646ABC",
|
||||
"i@ c #3F47B3",
|
||||
"j@ c #3A42B0",
|
||||
"k@ c #2F38AB",
|
||||
"l@ c #444A9E",
|
||||
"m@ c #7B7FB9",
|
||||
"n@ c #424AB4",
|
||||
"o@ c #2D36A9",
|
||||
"p@ c #545896",
|
||||
"q@ c #9195BD",
|
||||
"r@ c #6C74C0",
|
||||
"s@ c #4048B2",
|
||||
"t@ c #353DAB",
|
||||
"u@ c #2A33A8",
|
||||
"v@ c #62658C",
|
||||
"w@ c #919191",
|
||||
"x@ c #B0B2C4",
|
||||
"y@ c #747BC4",
|
||||
"z@ c #6D71C1",
|
||||
"A@ c #6066BA",
|
||||
"B@ c #565CB4",
|
||||
"C@ c #4D57B5",
|
||||
"D@ c #2831A6",
|
||||
"E@ c #6D6E7F",
|
||||
"F@ c #545AB2",
|
||||
"G@ c #8286CE",
|
||||
"H@ c #6A6EBE",
|
||||
"I@ c #3A42AE",
|
||||
"J@ c #3338A3",
|
||||
"K@ c #707070",
|
||||
"L@ c #7E82B6",
|
||||
"M@ c #4650B4",
|
||||
"N@ c #2C35AA",
|
||||
"O@ c #262FA8",
|
||||
"P@ c #565A92",
|
||||
"Q@ c #ACAEC2",
|
||||
"R@ c #2E37AA",
|
||||
"S@ c #2831A8",
|
||||
"T@ c #232CA5",
|
||||
"U@ c #6C6F80",
|
||||
"V@ c #767676",
|
||||
"W@ c #686CB0",
|
||||
"X@ c #252EA7",
|
||||
"Y@ c #464C98",
|
||||
"Z@ c #6F6F6F",
|
||||
"`@ c #7C7C7C",
|
||||
" # c #A0A3BC",
|
||||
".# c #4F59B5",
|
||||
"+# c #313AAB",
|
||||
"@# c #2B34A9",
|
||||
"## c #212AA5",
|
||||
"$# c #696B81",
|
||||
"%# c #6C73AE",
|
||||
"&# c #434AB1",
|
||||
"*# c #4D54B5",
|
||||
"=# c #5F65B7",
|
||||
"-# c #222BA4",
|
||||
";# c #4C5194",
|
||||
"># c #7A7A7A",
|
||||
",# c #B1B1BF",
|
||||
"'# c #3D45AF",
|
||||
")# c #5E64B6",
|
||||
"!# c #232CA3",
|
||||
"~# c #6F7179",
|
||||
"{# c #8C8EB2",
|
||||
"]# c #1F28A3",
|
||||
"^# c #656887",
|
||||
"/# c #7478AA",
|
||||
"(# c #444CB6",
|
||||
"_# c #2C34A8",
|
||||
":# c #555A8F",
|
||||
"<# c #8C8C8C",
|
||||
"[# c #BEBEBE",
|
||||
"}# c #6469A6",
|
||||
"|# c #1E27A2",
|
||||
"1# c #A2A2A2",
|
||||
"2# c #6166A5",
|
||||
"3# c #252EA5",
|
||||
"4# c #828282",
|
||||
"5# c #9D9D9D",
|
||||
"6# c #6A6DA2",
|
||||
"7# c #363EAE",
|
||||
"8# c #2029A4",
|
||||
"9# c #1D26A1",
|
||||
"0# c #55588F",
|
||||
"a# c #818181",
|
||||
"b# c #9A9A9A",
|
||||
"c# c #7C7FA0",
|
||||
"d# c #3038A8",
|
||||
"e# c #343CAA",
|
||||
"f# c #242DA6",
|
||||
"g# c #2029A0",
|
||||
"h# c #636487",
|
||||
"i# c #B5B5B5",
|
||||
"j# c #93939F",
|
||||
"k# c #565B9E",
|
||||
"l# c #313AAD",
|
||||
"m# c #1C25A2",
|
||||
"n# c #494E95",
|
||||
"o# c #6E6F78",
|
||||
"p# c #7E8094",
|
||||
"q# c #4C529E",
|
||||
"r# c #2B34A7",
|
||||
"s# c #262FA6",
|
||||
"t# c #434997",
|
||||
"u# c #686B82",
|
||||
"v# c #7C7D8E",
|
||||
"w# c #5A5E96",
|
||||
"x# c #333BA3",
|
||||
"y# c #242DA4",
|
||||
"z# c #2B339D",
|
||||
"A# c #535791",
|
||||
"B# c #6B6E7F",
|
||||
"C# c #757787",
|
||||
"D# c #64668E",
|
||||
"E# c #4F5497",
|
||||
"F# c #3E459C",
|
||||
"G# c #2E36A0",
|
||||
"H# c #232CA1",
|
||||
"I# c #2B339F",
|
||||
"J# c #3B429B",
|
||||
"K# c #5F618B",
|
||||
"L# c #7D7D7D",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . + @ # $ % & * = - ; > , ",
|
||||
" . ' ) ! ~ ~ ~ ~ ~ { ] ] * ^ / ( _ : < ",
|
||||
" [ } ~ | 1 2 3 3 3 3 2 4 1 | ~ 5 6 7 8 9 0 a b ",
|
||||
" c d ~ 1 2 e f f f g h g i f j e 2 1 k l m n ( 0 o p q ",
|
||||
" r s | 2 e f h t u v w w x x v t h f y 2 | z 6 n ( A o B C ",
|
||||
" D ! 1 3 f g v E F G H H H I J J F E t h f 3 1 ! 6 n ( 0 o K L M ",
|
||||
" d { N 3 f t x F H O P Q Q R Q S O O H F E t i T 1 { 6 U V W X Y Z ` ",
|
||||
" .{ 1 3 i ..E H O Q +.@.#.$.$.#.#.@.+.Q %.H F t i 3 1 { & / A o &.*.=.-. ",
|
||||
" ;.] | 3 i t >.H ,.'.@.).!.~.{.].{.~.^./.#.'.O H F t i 3 | ] 7 ( 0 (.Y _.:.-. ",
|
||||
" <.6 ~ 2 f [.F H Q +.}.|.].1.2.3.3.3.2.4.5.!./.6.Q I F 7.f 2 ~ * / V 8.9.0.a.b.-. ",
|
||||
" c.d.z e.j h E f.,.6.$.~.4.3.g.h.i.i.i.j.k.3.4.~.$.6.l.H m.h n.e.] o.( 0 (.p.q.r.s.` ",
|
||||
" t.* ! 2 f t F O './.~.1.3.j.u.v.w.x.y.z.u.j.3.A.{./.B.O C.t D.2 ~ * 8 V o K E.F.G.H.M ",
|
||||
" I.7 ] | y h E H R #.!.4.3.i.z.J.K.L.L.M.K.N.z.i.3.4.!.@.O.H w h y | ] U 9 P.&.Q.R.S.T.U. ",
|
||||
" V.^ 5 W.X.7.F O '.Y.].3.j.Z.`. +.+++++@+@+ +#+$+h.3.5.%++.O F t f N z & ( &+*+p.=+S.-+;+>+ ",
|
||||
" ,+'+& { W.f v )+O @.!.A.k.!+`.M.@+~+{+]+{+^+/+L.`.u.k.(+!._+O C.v f 2 { * :+0 X <+q.[+}+|+1+ ",
|
||||
" 2+:+* ~ 3+i v f.Q #.~.2.j.z.K.@+^+4+5+6+7+8+^+@+K.z.9+0+~.#.Q H w i 2 ~ * / a+(.<+b+[+c+d+e+f+ ",
|
||||
" _ 8 6 | 3 i E H R /.5.3.i.g+L.h+{+7+i+j+k+l+{+h+L.g+i.3.]./.O.H w g 3 ~ * 8 A o Y q.m+c+n+o+p+ ",
|
||||
" q+A :+* | 3 i E %.R $.].3.i.x.M.r+4+s+t+u+j+6+4+++M.J.i.3.5.#.v+%.x g 3 ~ * / A (.Y _.m+w+x+y+z+A+ ",
|
||||
" B+A :+6 ~ 3 g E H Q #.].3.C+w.L.++{+7+i+t+i+l+{+h+L.w.D+3.5.#.v+H E h 3 ~ * / A (.Y _.[+w+x+E+F+G+ ",
|
||||
" H+A :+* ~ 3 i w H Q #.~.2.I+z.K.J+~+K+7+s+L+M+^+N+O+z.P+Q+~.#.Q J w i 3 ~ * :+A R+<+q.S+T+x+U+V+W+ ",
|
||||
" X+0 :+& { 2 f v G ,.@.!.4.Y+!+Z+L.N+~+{+4+{+~+/+M.`+!+k.(+^.@.l.J t f 2 ! & ( A X <+q.[+}+ @.@+@@@#@",
|
||||
" $@W ( & ] N j t F %.'.%+5.3.j.z.`.M.@+++%@h+.+L.`.z.j.3.5.).'.O F t j &@z 7 ( &+*+p.a.S.}+*@=@-@;+;@",
|
||||
" >@P.9 n ] | y g E H Q @.,@1.'@i.z.x.K.L.L.L.O+Z+z.i.3.4.!.@.Q H E g 3 | ] n 9 P.9.Q.)@S.!@~@{@]@^@>+",
|
||||
" K /@A / * ~ 2 f v C.%.R $.{.(@'@j.$+z.w.g+g+z.u.j.3.(+~.$.R O _@..i 2 ~ 6 / A o Y E.F.:@<@[@}@|@1@-.",
|
||||
" 2@X 0 ( 7 3@1 y 4@m.J ,.6.$.~.4.3.g.j.D+i.j.P+Y+3.4.~.$.5@O H x 7.y 1 3@& ( 0 X <+q.m+w+x+6@}@7@8@G+",
|
||||
" 9@&.P.V / 6 ~ 2 f t >.H P 6.#.~.5.(+2.3.3.3.2.1.5.!.}.6.,.H E t f 2 ~ 6 / 9 P.9.*.a.S.0@*@a@b@c@d@G+",
|
||||
" e@Y R+0 ( 7 ] | 3 f@..F H P '.@.Y.!.~.{.5.].~.!.Y.@.+.,.H >.g@i 3 | z 7 h@0 (.Y _.F.i@j@[@k@l@7@8@G+",
|
||||
" m@0.&.o 9 / & z 1 3 i v E f.%.Q '._+#.#.#.#.#.@.'.Q %.H >...i T 1 ! * :+V P.&.0.a.n@}+x+6@o@p@|@1@-.",
|
||||
" q@_.<+(.0 9 U r@{ 1 e i t x C.H %.O Q R R Q Q ,.%.H _@E t f e 1 ! 6 n V 0 *+Y _.F.s@!@t@a@u@v@]@w@>+",
|
||||
" x@a.Q.K o 0 ( n 6 ! y@3 f g v E F C.H H %.H H J F x v h f 3 e.{ z@n ( A@o B@C@)@n@c+ @6@o@D@E@-@;+;@",
|
||||
" F@a.p.9.P.0 ( n * z | 2 j f h 7.v G@E E w w v t g f y 2 | { * H@:+0 o &.0.q.m+w+I@t@k@u@J@K@+@@@#@",
|
||||
" L@M@b+p.9.o A ( n * ] ~ y@2 e j f i i h i i f X.e 2 1 ~ z & n ( 0 o 9.p.q.M@s@}+ @6@N@O@P@c@V+W+ ",
|
||||
" Q@S.)@_.<+9.o 0 V / 7 6 ] ~ | N 2 2 3 3 3 2 N 1 | ~ 3@* 7 8 9 0 o 9.<+E.)@S.c+x+6@R@S@T@U@V@F+G+ ",
|
||||
" W@S.)@E.p.&.o W V :+n 7 6 6 z { ~ ~ ~ k ~ ! ] ] * & / ( V &+(.&.<+E.)@n@T+<@[@k@u@X@Y@Z@`@z+A+ ",
|
||||
" #c+n@)@_.0.B@X P.0 V ( :+U & m * 6 6 6 * & 7 n / ( V 0 P.X K .#_.)@n@T+<@t@+#@#O@##$#7@o+p+ ",
|
||||
" %#c+&#F.a.*#<+&.(.P.0 A 9 ( '+/ :+:+8 :+:+( 9 A 0 =#(.&.<+Q.q.F.S.c+<@t@+#N@D@-#;#Z@>#e+f+ ",
|
||||
" ,#'#c+s@m+a._.*.Y &.X o =#0 0 A A A A 0 0 &+P.)#X &.<+0.E.a.m+s@c+<@~@+#N@D@T@!#~#7@o+1+ ",
|
||||
" {# @}+w+n@F.a.E.Q.<+B@9.9.X R+o /@R+R+X X 9.K <+Q._.a.F.n@w+}+x+[@+#N@D@T@]#^#K@`@;+f+ ",
|
||||
" /#*@j@c+s@n@F.a.q.E.Q.p.<+<+Y <+Y <+<+p.*.E.q.a.(#S+s@}+I@*@6@a@_#D@T@]#:#Z@]@<#U. ",
|
||||
" [#}#t@x+!@c+i@n@[+F.)@a.q.b+_._._.q.q.=+a.F.[+n@:@c+I@x+t@+#R@@#O@-#|#;#Z@|@V+1#[# ",
|
||||
" ` 2#6@~@x+I@}+T+i@S.S.[+[+m+m+m+S+S+n@S.:@c+!@j@ @~@6@k@o@S@3#-#|#;#Z@7@4#5#` ",
|
||||
" -.6#k@6@[@7#x+j@!@}+c+w+T+c+w+w+c+}+!@<@x+7#[@6@a@o@u@O@T@8#9#0#Z@7@a#b#-. ",
|
||||
" -.c#d#}@a@6@6@~@7#*@ @x+x+x+ @ @*@~@e#6@+#k@N@u@D@f###|#g#h#Z@|@4#b#i# ",
|
||||
" -.j#k#@#o@R@k@a@+#l#6@6@6@+#+#a@k@R@N@@#S@X@f###|#m#n#o#K@]@V+5#-. ",
|
||||
" ` H.p#q#D@S@u@r#_#@#_#N@@#@#r#S@D@s#f#-#8#|#m#t#u#Z@7@`@<#1#` ",
|
||||
" M U.;+v#w#x#f#f#3#3#3#X@f#y#-###8#|#m#z#A#B#Z@7@>#o+;+U.[# ",
|
||||
" >+1+e+o+C#D#E#F#G#!#]#H#I#J#;#K#B#K@c@V@L#o+e+1+>+ ",
|
||||
" f+W+z+F+o++@-@]@|@7@7@7@|@]@-@+@V+F+z+p+f+ ",
|
||||
" A+G+W+@@;+^@1@8@d@8@1@^@;+@@W+G+A+ ",
|
||||
" #@;@>+-.i#G+i#-.>+;@#@ "};
|
||||
503
gtkballs-data/themes/5balls-Big/blue_jump3.xpm
Normal file
503
gtkballs-data/themes/5balls-Big/blue_jump3.xpm
Normal file
@ -0,0 +1,503 @@
|
||||
/* XPM */
|
||||
static char * blue_jump3_xpm[] = {
|
||||
"54 54 446 2",
|
||||
" c None",
|
||||
". c #B6B7CA",
|
||||
"+ c #9FA1C7",
|
||||
"@ c #8C8FC4",
|
||||
"# c #7E83C2",
|
||||
"$ c #7479C0",
|
||||
"% c #6D73BF",
|
||||
"& c #686EBE",
|
||||
"* c #6A70BE",
|
||||
"= c #7075BE",
|
||||
"- c #797EBF",
|
||||
"; c #8689C0",
|
||||
"> c #999CC3",
|
||||
", c #B2B3C6",
|
||||
"' c #9395C5",
|
||||
") c #767BC2",
|
||||
"! c #6E74C2",
|
||||
"~ c #7076C2",
|
||||
"{ c #6F75C1",
|
||||
"] c #6C72C0",
|
||||
"^ c #696FBF",
|
||||
"/ c #686CBE",
|
||||
"( c #646ABC",
|
||||
"_ c #6268BA",
|
||||
": c #6A6FBA",
|
||||
"< c #898BBD",
|
||||
"[ c #AFB0C5",
|
||||
"} c #AFB1C9",
|
||||
"| c #858BC3",
|
||||
"1 c #7177C3",
|
||||
"2 c #7278C4",
|
||||
"3 c #757BC5",
|
||||
"4 c #747AC6",
|
||||
"5 c #7579C5",
|
||||
"6 c #6D71C1",
|
||||
"7 c #6B71BF",
|
||||
"8 c #676DBD",
|
||||
"9 c #656BBB",
|
||||
"0 c #6167B9",
|
||||
"a c #5D63B7",
|
||||
"b c #767BB8",
|
||||
"c c #A6A7BE",
|
||||
"d c #BFBFCB",
|
||||
"e c #8C90C4",
|
||||
"f c #767CC6",
|
||||
"g c #797EC7",
|
||||
"h c #7B81C9",
|
||||
"i c #7B80C9",
|
||||
"j c #7A7FC8",
|
||||
"k c #777DC7",
|
||||
"l c #6F73C3",
|
||||
"m c #6B71C1",
|
||||
"n c #696DBF",
|
||||
"o c #666CBC",
|
||||
"p c #595FB5",
|
||||
"q c #797DB5",
|
||||
"r c #B3B3BF",
|
||||
"s c #A6A7C6",
|
||||
"t c #7277C2",
|
||||
"u c #7D83CB",
|
||||
"v c #8085CA",
|
||||
"w c #7F84CB",
|
||||
"x c #8086CC",
|
||||
"y c #8085CC",
|
||||
"z c #757BC7",
|
||||
"A c #6D73C1",
|
||||
"B c #5E64B8",
|
||||
"C c #585EB2",
|
||||
"D c #9295B4",
|
||||
"E c #9598C5",
|
||||
"F c #8187CD",
|
||||
"G c #8288CE",
|
||||
"H c #8588CF",
|
||||
"I c #868CD0",
|
||||
"J c #8589D1",
|
||||
"K c #868BCE",
|
||||
"L c #545BB4",
|
||||
"M c #7D80AF",
|
||||
"N c #BDBDBD",
|
||||
"O c #747AC4",
|
||||
"P c #898ED1",
|
||||
"Q c #8C8FD2",
|
||||
"R c #8C91D2",
|
||||
"S c #8D92D3",
|
||||
"T c #8C92D2",
|
||||
"U c #8A8FD2",
|
||||
"V c #7579C7",
|
||||
"W c #656BBD",
|
||||
"X c #6066BA",
|
||||
"Y c #5B61B7",
|
||||
"Z c #565CB4",
|
||||
"` c #5259B4",
|
||||
" . c #7073AC",
|
||||
".. c #B8B8B8",
|
||||
"+. c #8B8FC3",
|
||||
"@. c #7F82CB",
|
||||
"#. c #8E93D4",
|
||||
"$. c #9196D5",
|
||||
"%. c #9296D6",
|
||||
"&. c #9398D7",
|
||||
"*. c #888DD0",
|
||||
"=. c #555BB3",
|
||||
"-. c #4C54B4",
|
||||
";. c #6F72A9",
|
||||
">. c #B5B5B5",
|
||||
",. c #9497C4",
|
||||
"'. c #8188CD",
|
||||
"). c #898FD3",
|
||||
"!. c #9499D8",
|
||||
"~. c #959AD9",
|
||||
"{. c #979CD9",
|
||||
"]. c #969BDA",
|
||||
"^. c #949BD8",
|
||||
"/. c #9498D6",
|
||||
"(. c #575EB5",
|
||||
"_. c #4951B3",
|
||||
":. c #7476A6",
|
||||
"<. c #A4A8C6",
|
||||
"[. c #7F84C9",
|
||||
"}. c #9298D6",
|
||||
"|. c #9598D9",
|
||||
"1. c #999FDB",
|
||||
"2. c #9CA1DC",
|
||||
"3. c #9DA2DD",
|
||||
"4. c #999EDB",
|
||||
"5. c #989DDA",
|
||||
"6. c #9094D4",
|
||||
"7. c #7C82CA",
|
||||
"8. c #5F65B9",
|
||||
"9. c #5962B5",
|
||||
"0. c #4D54B5",
|
||||
"a. c #464EB2",
|
||||
"b. c #8182A1",
|
||||
"c. c #BEBFCA",
|
||||
"d. c #6B71BD",
|
||||
"e. c #7379C3",
|
||||
"f. c #858ACF",
|
||||
"g. c #A0A4DE",
|
||||
"h. c #A2A5E0",
|
||||
"i. c #A3A7E1",
|
||||
"j. c #A2A6E0",
|
||||
"k. c #9FA4DF",
|
||||
"l. c #8A91D2",
|
||||
"m. c #8087CC",
|
||||
"n. c #767EC6",
|
||||
"o. c #666CBE",
|
||||
"p. c #4E55B4",
|
||||
"q. c #4850B2",
|
||||
"r. c #454CAF",
|
||||
"s. c #92949E",
|
||||
"t. c #868AC2",
|
||||
"u. c #9EA3DE",
|
||||
"v. c #A4A9E2",
|
||||
"w. c #A7AAE3",
|
||||
"x. c #A8ABE4",
|
||||
"y. c #AAAEE4",
|
||||
"z. c #A9AFE3",
|
||||
"A. c #A7ABE3",
|
||||
"B. c #9BA0DB",
|
||||
"C. c #8E91D4",
|
||||
"D. c #8489CE",
|
||||
"E. c #777DC9",
|
||||
"F. c #4A51B4",
|
||||
"G. c #444CB0",
|
||||
"H. c #6267A2",
|
||||
"I. c #A1A1A1",
|
||||
"J. c #AEAFC6",
|
||||
"K. c #A9ACE5",
|
||||
"L. c #ACB2E6",
|
||||
"M. c #AFB3E7",
|
||||
"N. c #AEB4E8",
|
||||
"O. c #AAB0E4",
|
||||
"P. c #8D90D3",
|
||||
"Q. c #5A60B6",
|
||||
"R. c #4B53B5",
|
||||
"S. c #464DB0",
|
||||
"T. c #3F47AF",
|
||||
"U. c #7D8095",
|
||||
"V. c #ABABAB",
|
||||
"W. c #7D82BF",
|
||||
"X. c #7379C5",
|
||||
"Y. c #767CC8",
|
||||
"Z. c #8A8FD0",
|
||||
"`. c #9396D7",
|
||||
" + c #A6ACE2",
|
||||
".+ c #ABAFE5",
|
||||
"++ c #B0B4E8",
|
||||
"@+ c #B3B8E9",
|
||||
"#+ c #B4B8EA",
|
||||
"$+ c #B3B7E9",
|
||||
"%+ c #B2B6EA",
|
||||
"&+ c #AAADE6",
|
||||
"*+ c #A6AAE2",
|
||||
"=+ c #949AD6",
|
||||
"-+ c #5C62B6",
|
||||
";+ c #575DB3",
|
||||
">+ c #474EB1",
|
||||
",+ c #595EA1",
|
||||
"'+ c #969696",
|
||||
")+ c #B7B7B7",
|
||||
"!+ c #B2B4C8",
|
||||
"~+ c #646ABA",
|
||||
"{+ c #848BCE",
|
||||
"]+ c #A5AAE1",
|
||||
"^+ c #B6BAEC",
|
||||
"/+ c #B9BDED",
|
||||
"(+ c #B9BEED",
|
||||
"_+ c #B7BBEB",
|
||||
":+ c #9A9FDC",
|
||||
"<+ c #9096D4",
|
||||
"[+ c #6369BB",
|
||||
"}+ c #5057B4",
|
||||
"|+ c #4149B1",
|
||||
"1+ c #3B43AB",
|
||||
"2+ c #7B7D8D",
|
||||
"3+ c #A5A5A5",
|
||||
"4+ c #8C90C0",
|
||||
"5+ c #7478C6",
|
||||
"6+ c #BABEEE",
|
||||
"7+ c #BEC0F0",
|
||||
"8+ c #C1C4F1",
|
||||
"9+ c #BEC1F0",
|
||||
"0+ c #BBBFEF",
|
||||
"a+ c #A1A5DF",
|
||||
"b+ c #9B9EDD",
|
||||
"c+ c #5F65B7",
|
||||
"d+ c #484FB4",
|
||||
"e+ c #3C44AC",
|
||||
"f+ c #616599",
|
||||
"g+ c #939393",
|
||||
"h+ c #B6B6B6",
|
||||
"i+ c #A8ACE4",
|
||||
"j+ c #C3C6F3",
|
||||
"k+ c #C6C9F4",
|
||||
"l+ c #C3C8F3",
|
||||
"m+ c #BFC2F1",
|
||||
"n+ c #434BAF",
|
||||
"o+ c #4249A6",
|
||||
"p+ c #848484",
|
||||
"q+ c #A8A8A8",
|
||||
"r+ c #B1B3C7",
|
||||
"s+ c #B5B7EB",
|
||||
"t+ c #BFC1F1",
|
||||
"u+ c #C7C9F5",
|
||||
"v+ c #CCCFF8",
|
||||
"w+ c #8E92D2",
|
||||
"x+ c #3D45AD",
|
||||
"y+ c #363FAA",
|
||||
"z+ c #757787",
|
||||
"A+ c #9A9A9A",
|
||||
"B+ c #BBBBBB",
|
||||
"C+ c #979AC1",
|
||||
"D+ c #A3A6E1",
|
||||
"E+ c #A2A8E0",
|
||||
"F+ c #676A8F",
|
||||
"G+ c #8C8C8C",
|
||||
"H+ c #B3B3B3",
|
||||
"I+ c #8185BD",
|
||||
"J+ c #A1A7DF",
|
||||
"K+ c #BCBFEE",
|
||||
"L+ c #BDC1F1",
|
||||
"M+ c #BABFEE",
|
||||
"N+ c #B2B5EA",
|
||||
"O+ c #ADB1E7",
|
||||
"P+ c #A0A5E0",
|
||||
"Q+ c #9BA0DD",
|
||||
"R+ c #575DB5",
|
||||
"S+ c #424AAE",
|
||||
"T+ c #3D44AB",
|
||||
"U+ c #585B98",
|
||||
"V+ c #838383",
|
||||
"W+ c #A9A9A9",
|
||||
"X+ c #6F74B9",
|
||||
"Y+ c #A0A6DE",
|
||||
"Z+ c #A9AEE5",
|
||||
"`+ c #ABAEE5",
|
||||
" @ c #363EA8",
|
||||
".@ c #484E9E",
|
||||
"+@ c #7C7C7C",
|
||||
"@@ c #9E9E9E",
|
||||
"#@ c #BFBFBF",
|
||||
"$@ c #6169B5",
|
||||
"%@ c #B4B9EA",
|
||||
"&@ c #7478C4",
|
||||
"*@ c #474EB3",
|
||||
"=@ c #343CA8",
|
||||
"-@ c #3B42A1",
|
||||
";@ c #787878",
|
||||
">@ c #BABABA",
|
||||
",@ c #575FB3",
|
||||
"'@ c #9398D9",
|
||||
")@ c #9FA4DD",
|
||||
"!@ c #454DB1",
|
||||
"~@ c #3A42AA",
|
||||
"{@ c #333CA9",
|
||||
"]@ c #3139A5",
|
||||
"^@ c #747474",
|
||||
"/@ c #909090",
|
||||
"(@ c #5760B5",
|
||||
"_@ c #9A9DDC",
|
||||
":@ c #8487CE",
|
||||
"<@ c #3740AB",
|
||||
"[@ c #323BA8",
|
||||
"}@ c #2E36A4",
|
||||
"|@ c #717171",
|
||||
"1@ c #8B8B8B",
|
||||
"2@ c #565CB2",
|
||||
"3@ c #6E74C0",
|
||||
"4@ c #7C80CA",
|
||||
"5@ c #8F92D5",
|
||||
"6@ c #3139A7",
|
||||
"7@ c #707070",
|
||||
"8@ c #888888",
|
||||
"9@ c #5C62B2",
|
||||
"0@ c #6066B8",
|
||||
"a@ c #3941AD",
|
||||
"b@ c #2F37A7",
|
||||
"c@ c #373FA1",
|
||||
"d@ c #6F6F6F",
|
||||
"e@ c #878787",
|
||||
"f@ c #676CB3",
|
||||
"g@ c #7A80C8",
|
||||
"h@ c #7C82CC",
|
||||
"i@ c #6167BB",
|
||||
"j@ c #3E46AE",
|
||||
"k@ c #3840AC",
|
||||
"l@ c #2E36A6",
|
||||
"m@ c #42489A",
|
||||
"n@ c #787DB8",
|
||||
"o@ c #4048B0",
|
||||
"p@ c #2C34A4",
|
||||
"q@ c #515693",
|
||||
"r@ c #8E92BC",
|
||||
"s@ c #6A72BE",
|
||||
"t@ c #333BA7",
|
||||
"u@ c #2831A4",
|
||||
"v@ c #5F6289",
|
||||
"w@ c #8F8F8F",
|
||||
"x@ c #ADAFC3",
|
||||
"y@ c #6A70C0",
|
||||
"z@ c #7179C3",
|
||||
"A@ c #6A6EC0",
|
||||
"B@ c #5C62B8",
|
||||
"C@ c #535AB3",
|
||||
"D@ c #4B55B3",
|
||||
"E@ c #262FA2",
|
||||
"F@ c #6A6C7C",
|
||||
"G@ c #5158B1",
|
||||
"H@ c #8083CC",
|
||||
"I@ c #676BBD",
|
||||
"J@ c #3840AA",
|
||||
"K@ c #32379E",
|
||||
"L@ c #6D6D6D",
|
||||
"M@ c #7B7FB5",
|
||||
"N@ c #444EB0",
|
||||
"O@ c #2A33A6",
|
||||
"P@ c #252EA3",
|
||||
"Q@ c #54588E",
|
||||
"R@ c #A9ACC1",
|
||||
"S@ c #2C35A6",
|
||||
"T@ c #2730A3",
|
||||
"U@ c #222BA0",
|
||||
"V@ c #737373",
|
||||
"W@ c #6468AE",
|
||||
"X@ c #242DA2",
|
||||
"Y@ c #444A94",
|
||||
"Z@ c #6C6C6C",
|
||||
"`@ c #797979",
|
||||
" # c #9EA0BA",
|
||||
".# c #4C56B4",
|
||||
"+# c #3038A6",
|
||||
"@# c #2A32A4",
|
||||
"## c #2029A0",
|
||||
"$# c #66697E",
|
||||
"%# c #696FAB",
|
||||
"&# c #4149AD",
|
||||
"*# c #4B52B3",
|
||||
"=# c #5B61B5",
|
||||
"-# c #212A9F",
|
||||
";# c #4A4F90",
|
||||
"># c #777777",
|
||||
",# c #AFAFBD",
|
||||
"'# c #3C43AA",
|
||||
")# c #5A60B4",
|
||||
"!# c #222B9E",
|
||||
"~# c #6C6E76",
|
||||
"{# c #8A8CB0",
|
||||
"]# c #1E279E",
|
||||
"^# c #626584",
|
||||
"/# c #7074A8",
|
||||
"(# c #434AB1",
|
||||
"_# c #2A33A4",
|
||||
":# c #53588B",
|
||||
"<# c #898989",
|
||||
"[# c #BCBCBC",
|
||||
"}# c #6166A5",
|
||||
"|# c #1D269D",
|
||||
"1# c #A0A0A0",
|
||||
"2# c #5E63A4",
|
||||
"3# c #242DA0",
|
||||
"4# c #808080",
|
||||
"5# c #9B9B9B",
|
||||
"6# c #686BA0",
|
||||
"7# c #343DAA",
|
||||
"8# c #1F289F",
|
||||
"9# c #1C259C",
|
||||
"0# c #53558B",
|
||||
"a# c #7F7F7F",
|
||||
"b# c #989898",
|
||||
"c# c #797B9D",
|
||||
"d# c #2F37A3",
|
||||
"e# c #323BA6",
|
||||
"f# c #232CA1",
|
||||
"g# c #1F289B",
|
||||
"h# c #606284",
|
||||
"i# c #B4B4B4",
|
||||
"j# c #91919D",
|
||||
"k# c #54599A",
|
||||
"l# c #2F38A9",
|
||||
"m# c #1B249D",
|
||||
"n# c #474C91",
|
||||
"o# c #6B6C75",
|
||||
"p# c #7B7D91",
|
||||
"q# c #4A509A",
|
||||
"r# c #2A32A2",
|
||||
"s# c #252EA1",
|
||||
"t# c #1B249B",
|
||||
"u# c #414793",
|
||||
"v# c #65687F",
|
||||
"w# c #7A7B8C",
|
||||
"x# c #585C92",
|
||||
"y# c #32399E",
|
||||
"z# c #232C9F",
|
||||
"A# c #293199",
|
||||
"B# c #51558D",
|
||||
"C# c #696B7B",
|
||||
"D# c #727484",
|
||||
"E# c #61638B",
|
||||
"F# c #4D5293",
|
||||
"G# c #3C4398",
|
||||
"H# c #2D359B",
|
||||
"I# c #222B9C",
|
||||
"J# c #2A319A",
|
||||
"K# c #3A4096",
|
||||
"L# c #5C5E88",
|
||||
"M# c #7A7A7A",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . + @ # $ % & * = - ; > , ",
|
||||
" . ' ) ! ~ ~ ~ ~ ~ { ] ] ^ / ( _ : < [ ",
|
||||
" } | ~ 1 2 3 4 4 4 4 3 5 2 1 ~ 6 7 8 9 0 a b c ",
|
||||
" d e ~ 2 3 f g g g h i h j g k f 3 2 l m n o _ a p q r ",
|
||||
" s t 1 3 f g i u v w x x y y w u i g z 3 1 A 7 o _ B p C D ",
|
||||
" E ! 2 4 g h w F G H I I I J K K G F u i g 4 2 ! 7 o _ a p L M N ",
|
||||
" e { O 4 g u y G I P Q R R S R T U P I G F u j V 2 { 7 W X Y Z ` ... ",
|
||||
" +.{ 2 4 j @.F I P R #.$.%.&.&.%.%.$.#.R *.I G u j 4 2 { & ( B p =.-.;.>. ",
|
||||
" ,.] 1 4 j u '.I ).#.$.&.!.~.{.].{.~.^./.%.#.U I G u j 4 1 ] 8 _ a (.` _.:.>. ",
|
||||
" <.7 ~ 3 g [.G I R #.}.|.].1.2.3.3.3.2.4.5.!./.6.R J G 7.g 3 ~ ^ ( 8.9.=.0.a.b.>. ",
|
||||
" c.d.A e.k i F f.).6.&.~.4.3.g.h.i.i.i.j.k.3.4.~.&.6.l.I m.i n.e.] o._ a (.p.q.r.s... ",
|
||||
" t.^ ! 3 g u G P #./.~.1.u.j.v.w.x.y.z.A.v.j.u.B.{./.C.P D.u E.3 ~ ^ 9 8.p L F.G.H.I.N ",
|
||||
" J.8 ] 1 z i F I S %.!.4.u.i.A.K.L.M.M.N.L.O.A.i.u.4.!.$.P.I x i z 1 ] W 0 Q.=.R.S.T.U.V. ",
|
||||
" W./ 6 X.Y.7.G Z.#.`.].3.j. +.+++@+#+#+$+%+++&+*+h.3.5.=+#.P G u g O A & _ -+;+p.>+T.,+'+)+ ",
|
||||
" !+~+& { X.g w {+U $.!.B.k.]+.+N.$+^+/+(+/+_+@+M..+v.k.:+!.<+U D.w g 3 { * [+a Z }+q.|+1+2+3+ ",
|
||||
" 4+[+^ ~ 5+j w f.R %.~.2.j.A.L.%+_+6+7+8+9+0+_+%+L.A.a+b+~.%.R I x j 3 ~ ^ ( c+(.}+d+|+e+f+g+h+ ",
|
||||
" : 9 7 1 4 j F I S /.5.3.i.i+M.%+/+9+j+k+l+m+/+%+M.i+i.3.]./.P.I x h 4 ~ ^ 9 B p ` q.n+e+o+p+q+ ",
|
||||
" r+B [+^ 1 4 j F *.S &.].3.i.y.N.s+6+t+u+v+k+8+6+#+N.K.i.3.5.%.w+*.y h 4 ~ ^ ( B (.` _.n+x+y+z+A+B+ ",
|
||||
" C+B [+7 ~ 4 h F I R %.].3.D+x.M.#+/+9+j+u+j+m+/+%+M.x.E+3.5.%.w+I F i 4 ~ * ( B (.` _.|+x+y+F+G+H+ ",
|
||||
" I+B [+^ ~ 4 j x I R %.~.2.J+A.L.$+^+K+9+t+L+M+_+N+O+A.P+Q+~.%.R K x j 4 ~ ^ [+B R+}+q.S+T+y+U+V+W+ ",
|
||||
" X+a [+& { 3 g w H ).$.!.4.Y+]+Z+M.N+^+/+6+/+^+@+N.`+]+k.:+^.$.l.K u g 3 ! & _ B Z }+q.|+1+ @.@+@@@#@",
|
||||
" $@Y _ & ] O k u G *.#.=+5.3.j.A..+N.%+#+%@%+@+M..+A.j.3.5.&.#.P G u k &@A 8 _ -+;+p.*@T.1+=@-@;@'+>@",
|
||||
" ,@Q.0 o ] 1 z h F I R $.'@1.)@i.A.y.L.M.M.M.O+Z+A.i.u.4.!.$.R I F h 4 1 ] o 0 Q.=.R.!@T.~@{@]@^@/@)+",
|
||||
" L (@B ( ^ ~ 3 g w D.*.S &.{._@)@j.*+A.x.i+i+A.v.j.u.:+~.&.S P :@@.j 3 ~ 7 ( B p ` F.G.x+<@[@}@|@1@>.",
|
||||
" 2@Z a _ 8 3@2 z 4@m.K ).6.&.~.4.3.g.j.E+i.j.P+Y+3.4.~.&.5@U I y 7.z 2 3@& _ a Z }+q.n+x+y+6@}@7@8@H+",
|
||||
" 9@=.Q.8.( 7 ~ 3 g u '.I Q 6.%.~.5.:+2.3.3.3.2.1.5.!.}.6.).I F u g 3 ~ 7 ( 0@Q.=.-.a.T.a@=@b@c@d@e@H+",
|
||||
" f@` R+a _ 8 ] 1 4 g@@.G I Q #.$.`.!.~.{.5.].~.!.`.$.#.).I '.h@j 4 1 A 8 i@a (.` _.G.j@k@[@l@m@7@8@H+",
|
||||
" n@0.=.p 0@( & A 2 4 j w F f.*.R #.<+%.%.%.%.%.$.#.R *.I '.@.j V 2 ! ^ [+8.Q.=.0.a.o@1+y+6@p@q@|@1@>.",
|
||||
" r@_.}+(.a 0 W s@{ 2 f j u y D.I *.U R S S R R ).*.I :@F u g f 2 ! 7 o X a ;+` _.G.j@~@t@b@u@v@^@w@)+",
|
||||
" x@a.R.L p a _ o y@! z@4 g h w F G D.I I *.I I K G y w i g 4 e.{ A@o _ B@p C@D@!@o@e+ @6@p@E@F@;@'+>@",
|
||||
" G@*@p.=.Q.a _ o ^ A 1 3 k g i 7.w H@F F x x w u h g z 3 1 { ^ I@[+a p =.0.q.n+x+J@t@l@u@K@L@+@@@#@",
|
||||
" M@N@d+p.=.p B _ o * ] ~ z@3 f k g j j i j j g Y.f 3 2 ~ A & o _ a p =.p.q.N@j@1+ @6@O@P@Q@d@V+W+ ",
|
||||
" R@T.!@_.}+=.p a X ( 8 7 ] ~ 1 O 3 3 4 4 4 3 O 2 1 ~ 3@^ 8 9 0 a p =.}+F.!@T.e+y+6@S@T@U@F@V@G+H+ ",
|
||||
" W@T.!@F.p.=.p Y 8.[+o 8 7 7 A { ~ ~ ~ l ~ ! ] ] ^ & ( _ 8.-+(.=.}+F.!@o@T+<@[@l@u@X@Y@Z@`@A+B+ ",
|
||||
" #e+o@!@_.0.C@Z Q.a 8._ [+W & n ^ 7 7 7 ^ & 8 o ( _ 8.a Q.Z L .#_.!@o@T+<@t@+#@#P@##$#7@p+q+ ",
|
||||
" %#e+&#G.*@*#}+=.(.Q.a B 0 _ ~+( [+[+9 [+[+_ 0 B a =#(.=.}+R.q.G.T.e+<@t@+#O@E@-#;#Z@>#g+h+ ",
|
||||
" ,#'#e+j@n+a._.-.` =.Z p =#a a B B B B a a -+Q.)#Z =.}+0.F.a.n+j@e+<@{@+#O@E@U@!#~#7@p+3+ ",
|
||||
" {# @1+x+o@G.*@F.R.}+C@=.=.Z R+p (@R+R+Z Z =.L }+R._.a.G.o@x+1+y+[@+#O@E@U@]#^#L@`@'+h+ ",
|
||||
" /#=@k@e+j@o@G.a.q.F.R.p.}+}+` }+` }+}+p.-.F.q.a.(#S+j@1+J@=@6@b@_#E@U@]#:#Z@^@<#V. ",
|
||||
" [#}#t@y+~@e+j@o@|+G.!@a.q.d+_._._.q.q.>+a.G.|+o@x+e+J@y+t@+#S@@#P@-#|#;#Z@|@V+1#[# ",
|
||||
" ..2#6@{@y+J@1+T+j@T.T.|+|+n+n+n+S+S+o@T.x+e+~@k@ @{@6@l@p@T@3#-#|#;#Z@7@4#5#.. ",
|
||||
" >.6#l@6@[@7#y+k@~@1+e+x+T+e+x+x+e+1+~@<@y+7#[@6@b@p@u@P@U@8#9#0#Z@7@a#b#>. ",
|
||||
" >.c#d#}@b@6@6@{@7#=@ @y+y+y+ @ @=@{@e#6@+#l@O@u@E@f###|#g#h#Z@|@4#b#i# ",
|
||||
" >.j#k#@#p@S@l@b@+#l#6@6@6@+#+#b@l@S@O@@#T@X@f###|#m#n#o#L@^@V+5#>. ",
|
||||
" ..I.p#q#E@T@u@r#_#@#_#O@@#@#r#T@E@s#f#-#8#|#t#u#v#Z@7@`@<#1#.. ",
|
||||
" N V.'+w#x#y#f#f#3#3#3#X@f#z#-###8#|#m#A#B#C#Z@7@>#p+'+V.[# ",
|
||||
" )+3+g+p+D#E#F#G#H#!#]#I#J#K#;#L#C#L@d@V@M#p+g+3+)+ ",
|
||||
" h+W+A+G+p++@;@^@|@7@7@7@|@^@;@+@V+G+A+q+h+ ",
|
||||
" B+H+W+@@'+/@1@8@e@8@1@/@'+@@W+H+B+ ",
|
||||
" #@>@)+>.i#H+i#>.)+>@#@ "};
|
||||
514
gtkballs-data/themes/5balls-Big/blue_jump4.xpm
Normal file
514
gtkballs-data/themes/5balls-Big/blue_jump4.xpm
Normal file
@ -0,0 +1,514 @@
|
||||
/* XPM */
|
||||
static char * blue_jump4_xpm[] = {
|
||||
"54 54 457 2",
|
||||
" c None",
|
||||
". c #B5B6C9",
|
||||
"+ c #9D9EC5",
|
||||
"@ c #898CC3",
|
||||
"# c #7B80C1",
|
||||
"$ c #7176BF",
|
||||
"% c #6A70BE",
|
||||
"& c #656BBD",
|
||||
"* c #676DBD",
|
||||
"= c #6D73BD",
|
||||
"- c #777CBD",
|
||||
"; c #8486BE",
|
||||
"> c #979AC1",
|
||||
", c #B1B2C5",
|
||||
"' c #9093C4",
|
||||
") c #7378C1",
|
||||
"! c #6B71C1",
|
||||
"~ c #6D73C1",
|
||||
"{ c #6C72C0",
|
||||
"] c #696FBF",
|
||||
"^ c #666CBE",
|
||||
"/ c #6569BD",
|
||||
"( c #6167BB",
|
||||
"_ c #5F65B9",
|
||||
": c #676DB9",
|
||||
"< c #8689BC",
|
||||
"[ c #AEAFC4",
|
||||
"} c #AEAFC8",
|
||||
"| c #8389C1",
|
||||
"1 c #6E74C2",
|
||||
"2 c #6F75C3",
|
||||
"3 c #7278C4",
|
||||
"4 c #7177C5",
|
||||
"5 c #7276C4",
|
||||
"6 c #6A6EC0",
|
||||
"7 c #686EBE",
|
||||
"8 c #646ABC",
|
||||
"9 c #6268BA",
|
||||
"0 c #5E64B8",
|
||||
"a c #5A60B6",
|
||||
"b c #7478B6",
|
||||
"c c #A3A4BD",
|
||||
"d c #BEBECA",
|
||||
"e c #898DC3",
|
||||
"f c #7479C4",
|
||||
"g c #767BC6",
|
||||
"h c #797EC7",
|
||||
"i c #787DC8",
|
||||
"j c #777CC7",
|
||||
"k c #757AC5",
|
||||
"l c #6C70C2",
|
||||
"m c #686EC0",
|
||||
"n c #666ABE",
|
||||
"o c #6369BB",
|
||||
"p c #565DB4",
|
||||
"q c #777BB3",
|
||||
"r c #B2B2BE",
|
||||
"s c #A4A6C6",
|
||||
"t c #6F75C1",
|
||||
"u c #7B80C9",
|
||||
"v c #7D82C9",
|
||||
"w c #7C81CA",
|
||||
"x c #7D83CB",
|
||||
"y c #7D82CB",
|
||||
"z c #7278C6",
|
||||
"A c #6A70C0",
|
||||
"B c #5B62B7",
|
||||
"C c #555BB1",
|
||||
"D c #8F93B3",
|
||||
"E c #9296C4",
|
||||
"F c #7F84CB",
|
||||
"G c #8085CC",
|
||||
"H c #8285CE",
|
||||
"I c #8489CE",
|
||||
"J c #8386CF",
|
||||
"K c #8388CD",
|
||||
"L c #5057B2",
|
||||
"M c #7A7EAE",
|
||||
"N c #BCBCBC",
|
||||
"O c #7177C3",
|
||||
"P c #868BD0",
|
||||
"Q c #898CD1",
|
||||
"R c #898ED1",
|
||||
"S c #8A8FD2",
|
||||
"T c #8990D1",
|
||||
"U c #888DD0",
|
||||
"V c #7276C6",
|
||||
"W c #6269BC",
|
||||
"X c #5D64B9",
|
||||
"Y c #585FB6",
|
||||
"Z c #535AB3",
|
||||
"` c #4E55B2",
|
||||
" . c #6E71AA",
|
||||
".. c #B7B7B7",
|
||||
"+. c #888CC2",
|
||||
"@. c #7C7FCA",
|
||||
"#. c #8B90D3",
|
||||
"$. c #8E93D4",
|
||||
"%. c #8F94D5",
|
||||
"&. c #9095D6",
|
||||
"*. c #858ACF",
|
||||
"=. c #5157B1",
|
||||
"-. c #4A51B0",
|
||||
";. c #6D6FA7",
|
||||
">. c #B3B3B3",
|
||||
",. c #9195C3",
|
||||
"'. c #7F86CB",
|
||||
"). c #878CD1",
|
||||
"!. c #8C91D2",
|
||||
"~. c #9296D6",
|
||||
"{. c #9398D7",
|
||||
"]. c #9498D8",
|
||||
"^. c #969AD8",
|
||||
"/. c #959AD9",
|
||||
"(. c #9399D7",
|
||||
"_. c #9196D5",
|
||||
":. c #555BB3",
|
||||
"<. c #474FAF",
|
||||
"[. c #7274A4",
|
||||
"}. c #A1A6C5",
|
||||
"|. c #7C81C8",
|
||||
"1. c #8F95D5",
|
||||
"2. c #9497D8",
|
||||
"3. c #989EDA",
|
||||
"4. c #9B9FDB",
|
||||
"5. c #9CA0DC",
|
||||
"6. c #989CDA",
|
||||
"7. c #979BD9",
|
||||
"8. c #8D92D3",
|
||||
"9. c #7A7FC8",
|
||||
"0. c #5C63B8",
|
||||
"a. c #565FB4",
|
||||
"b. c #5259B2",
|
||||
"c. c #4A51B2",
|
||||
"d. c #444CAE",
|
||||
"e. c #7E80A0",
|
||||
"f. c #BDBEC9",
|
||||
"g. c #686EBC",
|
||||
"h. c #7076C2",
|
||||
"i. c #8287CE",
|
||||
"j. c #9FA3DD",
|
||||
"k. c #A1A4DF",
|
||||
"l. c #A2A6E0",
|
||||
"m. c #A1A5DF",
|
||||
"n. c #9EA2DE",
|
||||
"o. c #888ED0",
|
||||
"p. c #7D85CB",
|
||||
"q. c #747BC4",
|
||||
"r. c #6369BD",
|
||||
"s. c #4B52B1",
|
||||
"t. c #464EAE",
|
||||
"u. c #434BAB",
|
||||
"v. c #90929C",
|
||||
"w. c #8388C1",
|
||||
"x. c #9DA1DD",
|
||||
"y. c #A3A7E1",
|
||||
"z. c #A6A9E2",
|
||||
"A. c #A7AAE3",
|
||||
"B. c #A9ADE3",
|
||||
"C. c #A8ADE2",
|
||||
"D. c #A6AAE2",
|
||||
"E. c #9A9EDA",
|
||||
"F. c #8B8ED3",
|
||||
"G. c #8186CD",
|
||||
"H. c #757AC7",
|
||||
"I. c #484FB0",
|
||||
"J. c #424AAC",
|
||||
"K. c #5F639F",
|
||||
"L. c #9F9F9F",
|
||||
"M. c #ACAEC6",
|
||||
"N. c #A8ABE4",
|
||||
"O. c #ABB0E5",
|
||||
"P. c #AEB2E6",
|
||||
"Q. c #ADB2E7",
|
||||
"R. c #A9AEE3",
|
||||
"S. c #8A8DD2",
|
||||
"T. c #575EB5",
|
||||
"U. c #4950B1",
|
||||
"V. c #444CAC",
|
||||
"W. c #3E46AA",
|
||||
"X. c #7B7D93",
|
||||
"Y. c #A9A9A9",
|
||||
"Z. c #7B7FBD",
|
||||
"`. c #7076C4",
|
||||
" + c #7379C7",
|
||||
".+ c #878CCF",
|
||||
"++ c #9295D6",
|
||||
"@+ c #A5AAE1",
|
||||
"#+ c #AAAEE4",
|
||||
"$+ c #AFB3E7",
|
||||
"%+ c #B2B7E8",
|
||||
"&+ c #B2B6EA",
|
||||
"*+ c #B1B5E9",
|
||||
"=+ c #A9ACE5",
|
||||
"-+ c #A5A9E1",
|
||||
";+ c #9197D5",
|
||||
">+ c #595FB5",
|
||||
",+ c #545AB2",
|
||||
"'+ c #454DAD",
|
||||
")+ c #575C9D",
|
||||
"!+ c #949494",
|
||||
"~+ c #B6B6B6",
|
||||
"{+ c #B1B3C7",
|
||||
"]+ c #6167B9",
|
||||
"^+ c #8188CD",
|
||||
"/+ c #A4A8E0",
|
||||
"(+ c #B4B8EC",
|
||||
"_+ c #B7BBED",
|
||||
":+ c #B7BCED",
|
||||
"<+ c #B5B9EB",
|
||||
"[+ c #B1B7E9",
|
||||
"}+ c #999DDB",
|
||||
"|+ c #8D93D3",
|
||||
"1+ c #6066BA",
|
||||
"2+ c #4C53B2",
|
||||
"3+ c #4048AC",
|
||||
"4+ c #3941A7",
|
||||
"5+ c #797B8B",
|
||||
"6+ c #A3A3A3",
|
||||
"7+ c #8A8DBE",
|
||||
"8+ c #7175C5",
|
||||
"9+ c #B8BCEE",
|
||||
"0+ c #BCBFF0",
|
||||
"a+ c #BFC3F1",
|
||||
"b+ c #BCC0F0",
|
||||
"c+ c #B9BDEF",
|
||||
"d+ c #A0A4DE",
|
||||
"e+ c #9A9DDC",
|
||||
"f+ c #5C62B6",
|
||||
"g+ c #464DB0",
|
||||
"h+ c #3A42A8",
|
||||
"i+ c #5F6395",
|
||||
"j+ c #919191",
|
||||
"k+ c #B5B5B5",
|
||||
"l+ c #A7ABE3",
|
||||
"m+ c #B0B4EA",
|
||||
"n+ c #C1C5F3",
|
||||
"o+ c #C4C8F4",
|
||||
"p+ c #C1C6F3",
|
||||
"q+ c #BDC1F1",
|
||||
"r+ c #4149AB",
|
||||
"s+ c #4047A2",
|
||||
"t+ c #818181",
|
||||
"u+ c #A6A6A6",
|
||||
"v+ c #B0B2C6",
|
||||
"w+ c #B3B6EB",
|
||||
"x+ c #BDC0F1",
|
||||
"y+ c #C5C8F5",
|
||||
"z+ c #CACEF8",
|
||||
"A+ c #8B90D1",
|
||||
"B+ c #3B43A9",
|
||||
"C+ c #353DA5",
|
||||
"D+ c #727484",
|
||||
"E+ c #989898",
|
||||
"F+ c #BABABA",
|
||||
"G+ c #9497C0",
|
||||
"H+ c #A2A5E0",
|
||||
"I+ c #A1A7DF",
|
||||
"J+ c #65678B",
|
||||
"K+ c #8A8A8A",
|
||||
"L+ c #B1B1B1",
|
||||
"M+ c #7F83BB",
|
||||
"N+ c #A0A6DE",
|
||||
"O+ c #B2B6E8",
|
||||
"P+ c #BABEEE",
|
||||
"Q+ c #BBBFF1",
|
||||
"R+ c #B8BDEE",
|
||||
"S+ c #B1B3E9",
|
||||
"T+ c #ACB0E6",
|
||||
"U+ c #9FA3DF",
|
||||
"V+ c #9A9EDC",
|
||||
"W+ c #545BB4",
|
||||
"X+ c #4048AA",
|
||||
"Y+ c #3B43A7",
|
||||
"Z+ c #555895",
|
||||
"`+ c #808080",
|
||||
" @ c #A7A7A7",
|
||||
".@ c #6C71B8",
|
||||
"+@ c #9FA5DD",
|
||||
"@@ c #A8ACE4",
|
||||
"#@ c #B0B3EA",
|
||||
"$@ c #AAADE4",
|
||||
"%@ c #343CA4",
|
||||
"&@ c #464C9A",
|
||||
"*@ c #797979",
|
||||
"=@ c #9C9C9C",
|
||||
"-@ c #BEBEBE",
|
||||
";@ c #5E66B4",
|
||||
">@ c #B2B8EA",
|
||||
",@ c #7175C3",
|
||||
"'@ c #454CAF",
|
||||
")@ c #333BA3",
|
||||
"!@ c #39409D",
|
||||
"~@ c #757575",
|
||||
"{@ c #B9B9B9",
|
||||
"]@ c #545DB2",
|
||||
"^@ c #9297D8",
|
||||
"/@ c #9EA2DC",
|
||||
"(@ c #434BAD",
|
||||
"_@ c #3840A6",
|
||||
":@ c #323AA4",
|
||||
"<@ c #2F37A1",
|
||||
"[@ c #717171",
|
||||
"}@ c #8E8E8E",
|
||||
"|@ c #555EB3",
|
||||
"1@ c #999CDB",
|
||||
"2@ c #8184CD",
|
||||
"3@ c #3C44A8",
|
||||
"4@ c #363EA6",
|
||||
"5@ c #3139A3",
|
||||
"6@ c #2C35A0",
|
||||
"7@ c #6E6E6E",
|
||||
"8@ c #898989",
|
||||
"9@ c #535AB1",
|
||||
"0@ c #6B71BF",
|
||||
"a@ c #7A7DC8",
|
||||
"b@ c #8C8FD4",
|
||||
"c@ c #2F37A3",
|
||||
"d@ c #6D6D6D",
|
||||
"e@ c #868686",
|
||||
"f@ c #595FB1",
|
||||
"g@ c #5D63B7",
|
||||
"h@ c #3840A8",
|
||||
"i@ c #2D36A3",
|
||||
"j@ c #363D9C",
|
||||
"k@ c #6C6C6C",
|
||||
"l@ c #858585",
|
||||
"m@ c #6469B2",
|
||||
"n@ c #777DC7",
|
||||
"o@ c #7A7FCA",
|
||||
"p@ c #5E64BA",
|
||||
"q@ c #3C44AA",
|
||||
"r@ c #373FA7",
|
||||
"s@ c #2C35A2",
|
||||
"t@ c #404696",
|
||||
"u@ c #767AB6",
|
||||
"v@ c #3F47AB",
|
||||
"w@ c #2A33A0",
|
||||
"x@ c #4F548F",
|
||||
"y@ c #8C90BA",
|
||||
"z@ c #676FBD",
|
||||
"A@ c #3D45A9",
|
||||
"B@ c #323AA2",
|
||||
"C@ c #27309F",
|
||||
"D@ c #5D5F85",
|
||||
"E@ c #8D8D8D",
|
||||
"F@ c #ACAEC2",
|
||||
"G@ c #676DBF",
|
||||
"H@ c #6E76C2",
|
||||
"I@ c #676BBF",
|
||||
"J@ c #5960B7",
|
||||
"K@ c #4F56B1",
|
||||
"L@ c #4953AF",
|
||||
"M@ c #252E9D",
|
||||
"N@ c #686978",
|
||||
"O@ c #4E55AE",
|
||||
"P@ c #7D80CB",
|
||||
"Q@ c #6468BC",
|
||||
"R@ c #373FA5",
|
||||
"S@ c #30359A",
|
||||
"T@ c #6A6A6A",
|
||||
"U@ c #797DB3",
|
||||
"V@ c #424CAC",
|
||||
"W@ c #2932A1",
|
||||
"X@ c #242D9E",
|
||||
"Y@ c #52568A",
|
||||
"Z@ c #A8AAC0",
|
||||
"`@ c #3038A2",
|
||||
" # c #2B34A1",
|
||||
".# c #262F9E",
|
||||
"+# c #212A9B",
|
||||
"@# c #676979",
|
||||
"## c #707070",
|
||||
"$# c #6265AC",
|
||||
"%# c #232C9D",
|
||||
"&# c #424890",
|
||||
"*# c #696969",
|
||||
"=# c #767676",
|
||||
"-# c #9B9EB9",
|
||||
";# c #4A54B0",
|
||||
"># c #2E37A2",
|
||||
",# c #2831A0",
|
||||
"'# c #1F289B",
|
||||
")# c #64667A",
|
||||
"!# c #666CAA",
|
||||
"~# c #3F47A9",
|
||||
"{# c #4950AF",
|
||||
"]# c #585EB4",
|
||||
"^# c #20299A",
|
||||
"/# c #474C8D",
|
||||
"(# c #747474",
|
||||
"_# c #AEAEBC",
|
||||
":# c #3A42A6",
|
||||
"<# c #575EB3",
|
||||
"[# c #212A99",
|
||||
"}# c #696B73",
|
||||
"|# c #8789AF",
|
||||
"1# c #1D2699",
|
||||
"2# c #606380",
|
||||
"3# c #6E72A6",
|
||||
"4# c #4149AD",
|
||||
"5# c #29319F",
|
||||
"6# c #505688",
|
||||
"7# c #878787",
|
||||
"8# c #BBBBBB",
|
||||
"9# c #5E62A2",
|
||||
"0# c #1C2598",
|
||||
"a# c #484D8C",
|
||||
"b# c #9E9E9E",
|
||||
"c# c #5B60A1",
|
||||
"d# c #232B9B",
|
||||
"e# c #7D7D7D",
|
||||
"f# c #999999",
|
||||
"g# c #64679E",
|
||||
"h# c #333BA5",
|
||||
"i# c #1E279A",
|
||||
"j# c #1B2497",
|
||||
"k# c #505388",
|
||||
"l# c #7C7C7C",
|
||||
"m# c #969696",
|
||||
"n# c #76799C",
|
||||
"o# c #2D359F",
|
||||
"p# c #3139A1",
|
||||
"q# c #222B9C",
|
||||
"r# c #1E2696",
|
||||
"s# c #5E5F80",
|
||||
"t# c #B2B2B2",
|
||||
"u# c #8F8F9B",
|
||||
"v# c #515697",
|
||||
"w# c #2E36A4",
|
||||
"x# c #1A2398",
|
||||
"y# c #454A8D",
|
||||
"z# c #686972",
|
||||
"A# c #787B90",
|
||||
"B# c #484E96",
|
||||
"C# c #28319E",
|
||||
"D# c #242D9C",
|
||||
"E# c #1A2396",
|
||||
"F# c #3F458F",
|
||||
"G# c #63657B",
|
||||
"H# c #777889",
|
||||
"I# c #55598F",
|
||||
"J# c #30389A",
|
||||
"K# c #222A9A",
|
||||
"L# c #283094",
|
||||
"M# c #4E538A",
|
||||
"N# c #666878",
|
||||
"O# c #6F7181",
|
||||
"P# c #5F6187",
|
||||
"Q# c #4B508F",
|
||||
"R# c #3B4193",
|
||||
"S# c #2B3397",
|
||||
"T# c #212997",
|
||||
"U# c #283096",
|
||||
"V# c #383E92",
|
||||
"W# c #5A5C84",
|
||||
"X# c #777777",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . + @ # $ % & * = - ; > , ",
|
||||
" . ' ) ! ~ ~ ~ ~ ~ { ] ] ^ / ( _ : < [ ",
|
||||
" } | ~ 1 2 3 4 4 4 4 3 5 2 1 ~ 6 7 8 9 0 a b c ",
|
||||
" d e ~ 2 3 f g g g h i h j g k f 3 2 l m n o _ a p q r ",
|
||||
" s t 1 3 f g i u v w x x y y w u i g z 3 1 A 7 o _ B p C D ",
|
||||
" E ! 2 4 g h w F G H I I I J K K G F u i g 4 2 ! 7 o _ a p L M N ",
|
||||
" e { O 4 g u y G I P Q R R S R T U P I G F u j V 2 { 7 W X Y Z ` ... ",
|
||||
" +.{ 2 4 j @.F I P R #.$.%.&.&.%.%.$.#.R *.I G u j 4 2 { & ( B p =.-.;.>. ",
|
||||
" ,.] 1 4 j u '.I ).!.$.~.{.].^./.^.].(._.%.!.U I G u j 4 1 ] 8 _ a :.` <.[.>. ",
|
||||
" }.7 ~ 3 g |.G I R #.1.2./.3.4.5.5.5.4.6.7.{._.8.R J G 9.g 3 ~ ^ ( 0.a.b.c.d.e.>. ",
|
||||
" f.g.A h.k i F i.).8.&.].6.5.j.k.l.l.l.m.n.5.6.].&.8.o.I p.i q.h.] r._ a :.s.t.u.v... ",
|
||||
" w.^ ! 3 g u G P !._.].3.x.m.y.z.A.B.C.D.y.m.x.E.^._.F.P G.u H.3 ~ ^ 9 0.p L I.J.K.L.N ",
|
||||
" M.8 ] 1 z i F I S %.{.6.x.l.D.N.O.P.P.Q.O.R.D.l.x.6.{.$.S.I x i z 1 ] W 0 T.=.U.V.W.X.Y. ",
|
||||
" Z./ 6 `. +9.G .+!.++/.5.m.@+#+$+%+&+&+*+*+$+=+-+k.5.7.;+#.P G u g O A & _ >+,+s.'+W.)+!+~+ ",
|
||||
" {+]+& { `.g w ^+U $.{.E.n./+#+Q.*+(+_+:+_+<+[+P.#+y.n.}+{.|+U G.w g 3 { * 1+a Z 2+t.3+4+5+6+ ",
|
||||
" 7+1+^ ~ 8+j w i.R %.].4.m.D.O.*+<+9+0+a+b+c+<+*+O.D.d+e+].%.R I x j 3 ~ ^ ( f+:.2+g+3+h+i+j+k+ ",
|
||||
" : 9 7 1 4 j F I S _.7.5.l.l+P.m+_+b+n+o+p+q+_+m+P.l+l.5./._.S.I x h 4 ~ ^ 9 B p ` t.r+h+s+t+u+ ",
|
||||
" v+B 1+^ 1 4 j F *.S &./.5.l.B.Q.w+9+x+y+z+o+a+9+&+Q.N.l.5.7.%.A+*.y h 4 ~ ^ ( B :.` <.r+B+C+D+E+F+ ",
|
||||
" G+B 1+7 ~ 4 h F I R %./.5.H+A.P.&+_+b+n+y+n+q+_+m+P.A.I+5.7.%.A+I F i 4 ~ * ( B :.` <.3+B+C+J+K+L+ ",
|
||||
" M+B 1+^ ~ 4 j x I R %.].4.N+D.O.O+(+P+b+x+Q+R+<+S+T+D.U+V+].%.R K x j 4 ~ ^ 1+B W+2+t.X+Y+C+Z+`+ @ ",
|
||||
" .@a 1+& { 3 g w H ).$.{.6.+@/+@@P.#@(+_+9+_+(+[+Q.$@/+n.}+(.$.o.K u g 3 ! & _ B Z 2+t.3+4+%@&@*@=@-@",
|
||||
" ;@Y _ & ] O k u G *.!.;+7.5.m.D.#+Q.*+&+>@m+%+P.#+D.m.5.7.~.!.P G u k ,@A 8 _ >+,+s.'@W.4+)@!@~@!+{@",
|
||||
" ]@T.0 o ] 1 z h F I R $.^@3./@l.D.B.O.P.P.P.T+@@D.l.x.6.{.$.R I F h 4 1 ] o 0 T.b.U.(@W._@:@<@[@}@~+",
|
||||
" L |@B ( ^ ~ 3 g w G.*.S &.^.1@/@m.-+D.A.l+l+D.y.m.x.}+].&.S P 2@@.j 3 ~ 7 ( B p ` I.J.3@4@5@6@7@8@>.",
|
||||
" 9@Z a _ 8 0@2 z a@p.K ).8.&.].6.5.j.m.I+l.m.U++@5.6.].&.b@U I y 9.z 2 0@& _ a Z 2+t.r+B+C+c@6@d@e@L+",
|
||||
" f@=.T.0.( 7 ~ 3 g u '.I Q 8.%.].7.}+4.5.5.5.4.3.7.{.1.8.).I F u g 3 ~ 7 ( g@T.b.-.d.W.h@)@i@j@k@l@L+",
|
||||
" m@` W+a _ 8 ] 1 4 n@@.G I Q !.$.++{.].^.7./.].{.++$.#.).I '.o@j 4 1 A 8 p@a :.` <.J.q@r@5@s@t@d@e@L+",
|
||||
" u@c.=.p g@( & A 2 4 j w F i.*.R !.|+%.%.%.%.%.$.!.R *.I '.@.j V 2 ! ^ 1+0.T.=.c.d.v@4+C+c@w@x@7@8@>.",
|
||||
" y@<.2+:.a 0 W z@{ 2 f j u y G.I *.U R S S R R ).*.I 2@F u g f 2 ! 7 o X a ,+` <.J.A@_@B@i@C@D@[@E@~+",
|
||||
" F@d.U.L p a _ o G@! H@4 g h w F G G.I I *.I I K G y w i g 4 h.{ I@o _ J@p K@L@(@v@h+%@c@w@M@N@~@!+{@",
|
||||
" O@'@s.b.T.a _ o ^ A 1 3 k g i 9.w P@F F x x w u h g z 3 1 { ^ Q@1+a p =.c.t.r+B+R@B@s@C@S@T@*@=@-@",
|
||||
" U@V@g+s.b.p B _ o * ] ~ H@3 f k g j j i j j g +f 3 2 ~ A & o _ a p b.s.t.V@A@4+%@c@W@X@Y@k@`+ @ ",
|
||||
" Z@W.(@<.2+b.p a X ( 8 7 ] ~ 1 O 3 3 4 4 4 3 O 2 1 ~ 0@^ 8 9 0 a p b.2+I.(@W.h+C+`@ #.#+#@###K+L+ ",
|
||||
" $#W.(@I.s.=.p Y 0.1+o 8 7 7 A { ~ ~ ~ l ~ ! ] ] ^ & ( _ 0.>+:.=.2+I.(@v@Y+4@5@s@C@%#&#*#=#E+F+ ",
|
||||
" -#h+v@(@<.c.K@Z T.a 0._ 1+W & n ^ 7 7 7 ^ & 8 o ( _ 0.a T.Z L ;#<.(@v@Y+4@B@>#,#X@'#)#d@t+u+ ",
|
||||
" !#h+~#J.'@{#2+=.:.T.a B 0 _ ]+( 1+1+9 1+1+_ 0 B a ]#:.=.2+U.t.J.W.h+4@B@>#W@M@^#/#*#(#j+k+ ",
|
||||
" _#:#h+A@r+d.<.-.` =.Z p ]#a a B B B B a a >+T.<#Z =.2+c.I.d.r+A@h+4@:@>#W@M@+#[#}#d@t+6+ ",
|
||||
" |#%@4+B+v@J.'@I.U.2+K@b.b.Z W+p |@W+W+Z Z b.L 2+U.<.d.J.v@B+4+C+5@>#W@M@+#1#2#T@=#!+k+ ",
|
||||
" 3#)@r@h+A@v@J.d.t.I.U.s.2+2+` 2+` 2+2+s.-.I.t.d.4#X+A@4+R@)@`@i@5#M@+#1#6#*#[@7#Y. ",
|
||||
" 8#9#B@C+_@h+q@v@3+J.(@d.t.g+<.<.<.t.t.'+d.J.3+v@3@h+R@C+B@># #,#X@^#0#a#*#7@`+b#8# ",
|
||||
" ..c#c@:@C+R@4+Y+q@W.W.3+3+r+r+r+X+X+v@W.3@h+_@r@%@:@`@s@w@.#d#^#0#a#*#d@e#f#.. ",
|
||||
" >.g#s@c@5@h#C+r@_@4+h+B+Y+h+B+B+h+4+_@4@C+h#5@c@i@w@C@X@+#i#j#k#*#d@l#m#>. ",
|
||||
" >.n#o#6@i@`@`@:@h#)@%@C+C+C+%@%@)@:@p#c@>#s@W@C@M@q#'#0#r#s#*#7@e#m#t# ",
|
||||
" >.u#v#,#w@ #s@i@>#w#c@c@c@>#>#i@s@ #W@,#.#%#q#'#0#x#y#z#T@[@`+f#>. ",
|
||||
" ..L.A#B#M@.#C@C#5#,#5#W@,#,#C#.#M@D#q#^#i#0#E#F#G#*#d@=#7#b#.. ",
|
||||
" N Y.!+H#I#J#q#q#d#d#d#%#q#K#^#'#i#0#x#L#M#N#*#d@(#t+!+Y.8# ",
|
||||
" ~+6+j+t+O#P#Q#R#S#[#1#T#U#V#a#W#N#T@k@##X#t+j+6+~+ ",
|
||||
" k+ @E+K+t+*@~@[@7@d@d@d@7@[@~@*@`+K+E+u+k+ ",
|
||||
" F+L+ @=@!+}@8@e@l@e@8@}@!+=@ @L+F+ ",
|
||||
" -@{@~+>.t#L+t#>.~+{@-@ "};
|
||||
509
gtkballs-data/themes/5balls-Big/blue_jump5.xpm
Normal file
509
gtkballs-data/themes/5balls-Big/blue_jump5.xpm
Normal file
@ -0,0 +1,509 @@
|
||||
/* XPM */
|
||||
static char * blue_jump5_xpm[] = {
|
||||
"54 54 452 2",
|
||||
" c None",
|
||||
". c #AFB0C5",
|
||||
"+ c #9698C2",
|
||||
"@ c #8386BF",
|
||||
"# c #757ABD",
|
||||
"$ c #6A70BC",
|
||||
"% c #6369BB",
|
||||
"& c #5E64BA",
|
||||
"* c #6066BA",
|
||||
"= c #666CBA",
|
||||
"- c #7075BA",
|
||||
"; c #7D80BB",
|
||||
"> c #9093BE",
|
||||
", c #ABACC1",
|
||||
"' c #8A8CC0",
|
||||
") c #6C72BE",
|
||||
"! c #646ABE",
|
||||
"~ c #666CBE",
|
||||
"{ c #656BBD",
|
||||
"] c #6269BC",
|
||||
"^ c #5F65BB",
|
||||
"/ c #5E62BA",
|
||||
"( c #5A60B8",
|
||||
"_ c #585FB6",
|
||||
": c #6066B6",
|
||||
"< c #8083B8",
|
||||
"[ c #A9AABF",
|
||||
"} c #A8AAC4",
|
||||
"| c #7C82BE",
|
||||
"1 c #676DBF",
|
||||
"2 c #686EC0",
|
||||
"3 c #6B71C1",
|
||||
"4 c #6A71C2",
|
||||
"5 c #6B6FC1",
|
||||
"6 c #6367BD",
|
||||
"7 c #6167BB",
|
||||
"8 c #5D64B9",
|
||||
"9 c #5B62B7",
|
||||
"0 c #575EB5",
|
||||
"a c #535AB3",
|
||||
"b c #6D72B3",
|
||||
"c c #9D9FB9",
|
||||
"d c #B9B9C5",
|
||||
"e c #8387BF",
|
||||
"f c #6D73C1",
|
||||
"g c #6F75C3",
|
||||
"h c #7177C5",
|
||||
"i c #7076C4",
|
||||
"j c #6E74C2",
|
||||
"k c #6569BF",
|
||||
"l c #6167BD",
|
||||
"m c #5F63BB",
|
||||
"n c #5C63B8",
|
||||
"o c #4F56B1",
|
||||
"p c #7075B0",
|
||||
"q c #ADADB9",
|
||||
"r c #9EA0C2",
|
||||
"s c #686EBE",
|
||||
"t c #7379C7",
|
||||
"u c #767BC6",
|
||||
"v c #757AC7",
|
||||
"w c #767CC8",
|
||||
"x c #767BC8",
|
||||
"y c #6B72C3",
|
||||
"z c #6369BD",
|
||||
"A c #545BB4",
|
||||
"B c #4F56AD",
|
||||
"C c #898DAF",
|
||||
"D c #8C90C0",
|
||||
"E c #777DC9",
|
||||
"F c #787ECA",
|
||||
"G c #7B7ECB",
|
||||
"H c #7C82CC",
|
||||
"I c #7B7FCD",
|
||||
"J c #7C81CA",
|
||||
"K c #4B52AD",
|
||||
"L c #7478AA",
|
||||
"M c #B7B7B7",
|
||||
"N c #6A70C0",
|
||||
"O c #7F84CD",
|
||||
"P c #8185CF",
|
||||
"Q c #8187CF",
|
||||
"R c #8388CF",
|
||||
"S c #8189CF",
|
||||
"T c #8086CE",
|
||||
"U c #6B6FC3",
|
||||
"V c #5B62B9",
|
||||
"W c #565DB6",
|
||||
"X c #5158B3",
|
||||
"Y c #4D54AF",
|
||||
"Z c #4A51AC",
|
||||
"` c #676AA7",
|
||||
" . c #B2B2B2",
|
||||
".. c #8286BE",
|
||||
"+. c #7578C7",
|
||||
"@. c #8389D1",
|
||||
"#. c #878CD1",
|
||||
"$. c #878DD3",
|
||||
"%. c #898ED3",
|
||||
"&. c #7D83CD",
|
||||
"*. c #4C53AC",
|
||||
"=. c #474EA9",
|
||||
"-. c #6669A4",
|
||||
";. c #AEAEAE",
|
||||
">. c #8B8FBF",
|
||||
",. c #777FC9",
|
||||
"'. c #7F85CF",
|
||||
"). c #848AD0",
|
||||
"!. c #8A8FD4",
|
||||
"~. c #8B91D5",
|
||||
"{. c #8C91D6",
|
||||
"]. c #8E93D6",
|
||||
"^. c #8D93D7",
|
||||
"/. c #8B92D5",
|
||||
"(. c #898FD3",
|
||||
"_. c #4E55B0",
|
||||
":. c #444BA8",
|
||||
"<. c #6B6EA1",
|
||||
"[. c #9BA0C1",
|
||||
"}. c #757AC5",
|
||||
"|. c #878ED3",
|
||||
"1. c #8C90D6",
|
||||
"2. c #9097D8",
|
||||
"3. c #9398D9",
|
||||
"4. c #9499DA",
|
||||
"5. c #9095D8",
|
||||
"6. c #8F94D7",
|
||||
"7. c #858BD1",
|
||||
"8. c #7278C6",
|
||||
"9. c #555CB5",
|
||||
"0. c #4F58B1",
|
||||
"a. c #4D54AD",
|
||||
"b. c #474EAB",
|
||||
"c. c #4249A6",
|
||||
"d. c #797A9B",
|
||||
"e. c #B8B9C4",
|
||||
"f. c #6167B9",
|
||||
"g. c #696FBF",
|
||||
"h. c #7B80CB",
|
||||
"i. c #979CDB",
|
||||
"j. c #999CDD",
|
||||
"k. c #9A9FDE",
|
||||
"l. c #999EDD",
|
||||
"m. c #969BDC",
|
||||
"n. c #8088CE",
|
||||
"o. c #767EC8",
|
||||
"p. c #6D75C1",
|
||||
"q. c #5C63BA",
|
||||
"r. c #484FAA",
|
||||
"s. c #434AA7",
|
||||
"t. c #4047A4",
|
||||
"u. c #8B8D97",
|
||||
"v. c #7D81BD",
|
||||
"w. c #959ADB",
|
||||
"x. c #9BA0DF",
|
||||
"y. c #9EA1E0",
|
||||
"z. c #9FA2E1",
|
||||
"A. c #A1A6E1",
|
||||
"B. c #A0A6E0",
|
||||
"C. c #9EA3E0",
|
||||
"D. c #9297D8",
|
||||
"E. c #8387D1",
|
||||
"F. c #7A7FCA",
|
||||
"G. c #6D74C5",
|
||||
"H. c #454CA9",
|
||||
"I. c #3F47A5",
|
||||
"J. c #5B5F99",
|
||||
"K. c #9A9A9A",
|
||||
"L. c #A6A8C2",
|
||||
"M. c #A0A3E2",
|
||||
"N. c #A3A9E3",
|
||||
"O. c #A6AAE4",
|
||||
"P. c #A5ABE5",
|
||||
"Q. c #A1A7E1",
|
||||
"R. c #8386CF",
|
||||
"S. c #5057B2",
|
||||
"T. c #464DAA",
|
||||
"U. c #4148A5",
|
||||
"V. c #3B43A3",
|
||||
"W. c #76788E",
|
||||
"X. c #A4A4A4",
|
||||
"Y. c #7479BA",
|
||||
"Z. c #696FC1",
|
||||
"`. c #6C73C4",
|
||||
" + c #8085CC",
|
||||
".+ c #8A8ED4",
|
||||
"++ c #9DA3DF",
|
||||
"@+ c #A2A7E2",
|
||||
"#+ c #A7ACE5",
|
||||
"$+ c #AAB0E6",
|
||||
"%+ c #ABAFE7",
|
||||
"&+ c #AAAEE6",
|
||||
"*+ c #A9ADE7",
|
||||
"=+ c #A1A4E3",
|
||||
"-+ c #9DA2DF",
|
||||
";+ c #8990D3",
|
||||
">+ c #5259B2",
|
||||
",+ c #4E55AE",
|
||||
"'+ c #535897",
|
||||
")+ c #8F8F8F",
|
||||
"!+ c #B1B1B1",
|
||||
"~+ c #ABAEC3",
|
||||
"{+ c #5A61B6",
|
||||
"]+ c #7A81CA",
|
||||
"^+ c #9CA1DE",
|
||||
"/+ c #ACB1EA",
|
||||
"(+ c #AFB4EB",
|
||||
"_+ c #AFB5EB",
|
||||
":+ c #ADB2E9",
|
||||
"<+ c #AAAFE6",
|
||||
"[+ c #9196D9",
|
||||
"}+ c #858DD1",
|
||||
"|+ c #5960B7",
|
||||
"1+ c #4950AB",
|
||||
"2+ c #3D44A5",
|
||||
"3+ c #373E9F",
|
||||
"4+ c #747686",
|
||||
"5+ c #9E9E9E",
|
||||
"6+ c #8387BB",
|
||||
"7+ c #6A6EC2",
|
||||
"8+ c #B0B4EC",
|
||||
"9+ c #B4B7EE",
|
||||
"0+ c #B7BBEF",
|
||||
"a+ c #B4B8EE",
|
||||
"b+ c #B1B5ED",
|
||||
"c+ c #989DDC",
|
||||
"d+ c #9296DA",
|
||||
"e+ c #555CB3",
|
||||
"f+ c #434AA9",
|
||||
"g+ c #373FA1",
|
||||
"h+ c #5B5F8F",
|
||||
"i+ c #8C8C8C",
|
||||
"j+ c #B0B0B0",
|
||||
"k+ c #9FA4E1",
|
||||
"l+ c #B9BDF1",
|
||||
"m+ c #BCC0F2",
|
||||
"n+ c #B9BEF1",
|
||||
"o+ c #B5B9EF",
|
||||
"p+ c #3E46A4",
|
||||
"q+ c #3D449B",
|
||||
"r+ c #7C7C7C",
|
||||
"s+ c #A1A1A1",
|
||||
"t+ c #ABADC1",
|
||||
"u+ c #ABAEE9",
|
||||
"v+ c #B5B8EF",
|
||||
"w+ c #BDBFF3",
|
||||
"x+ c #C2C5F6",
|
||||
"y+ c #8489CE",
|
||||
"z+ c #3840A2",
|
||||
"A+ c #333A9D",
|
||||
"B+ c #6D6F7F",
|
||||
"C+ c #939393",
|
||||
"D+ c #B5B5B5",
|
||||
"E+ c #8E91BC",
|
||||
"F+ c #9A9DDE",
|
||||
"G+ c #99A0DD",
|
||||
"H+ c #616385",
|
||||
"I+ c #858585",
|
||||
"J+ c #ACACAC",
|
||||
"K+ c #787DB8",
|
||||
"L+ c #989FDC",
|
||||
"M+ c #B2B6EC",
|
||||
"N+ c #B3B7EF",
|
||||
"O+ c #B0B6EC",
|
||||
"P+ c #A9ACE7",
|
||||
"Q+ c #A4A9E4",
|
||||
"R+ c #979CDD",
|
||||
"S+ c #9297DA",
|
||||
"T+ c #4D54B1",
|
||||
"U+ c #3D45A3",
|
||||
"V+ c #3840A0",
|
||||
"W+ c #52558E",
|
||||
"X+ c #7B7B7B",
|
||||
"Y+ c #A2A2A2",
|
||||
"Z+ c #656BB5",
|
||||
"`+ c #979EDB",
|
||||
" @ c #A0A5E2",
|
||||
".@ c #A9ABE7",
|
||||
"+@ c #A2A5E2",
|
||||
"@@ c #32399C",
|
||||
"#@ c #434993",
|
||||
"$@ c #747474",
|
||||
"%@ c #979797",
|
||||
"&@ c #B9B9B9",
|
||||
"*@ c #5760B1",
|
||||
"=@ c #ABB0E7",
|
||||
"-@ c #6A6EC0",
|
||||
";@ c #4249A8",
|
||||
">@ c #30389C",
|
||||
",@ c #363D96",
|
||||
"'@ c #707070",
|
||||
")@ c #B4B4B4",
|
||||
"!@ c #4E57AE",
|
||||
"~@ c #8A90D6",
|
||||
"{@ c #969BDA",
|
||||
"]@ c #4048A6",
|
||||
"^@ c #363D9E",
|
||||
"/@ c #30379C",
|
||||
"(@ c #2D3599",
|
||||
"_@ c #6C6C6C",
|
||||
":@ c #898989",
|
||||
"<@ c #4E57B0",
|
||||
"[@ c #9195D9",
|
||||
"}@ c #7A7DCA",
|
||||
"|@ c #3941A1",
|
||||
"1@ c #333B9F",
|
||||
"2@ c #2F369B",
|
||||
"3@ c #2A3298",
|
||||
"4@ c #696969",
|
||||
"5@ c #848484",
|
||||
"6@ c #4E55AC",
|
||||
"7@ c #646ABC",
|
||||
"8@ c #7276C6",
|
||||
"9@ c #8488D2",
|
||||
"0@ c #2D359B",
|
||||
"a@ c #686868",
|
||||
"b@ c #818181",
|
||||
"c@ c #5259AE",
|
||||
"d@ c #565DB4",
|
||||
"e@ c #353DA1",
|
||||
"f@ c #2B339B",
|
||||
"g@ c #333A95",
|
||||
"h@ c #676767",
|
||||
"i@ c #808080",
|
||||
"j@ c #5D63AF",
|
||||
"k@ c #7278C8",
|
||||
"l@ c #575EB7",
|
||||
"m@ c #3941A3",
|
||||
"n@ c #343CA0",
|
||||
"o@ c #2A329A",
|
||||
"p@ c #3D438F",
|
||||
"q@ c #6F74B3",
|
||||
"r@ c #3C43A4",
|
||||
"s@ c #283098",
|
||||
"t@ c #4C5088",
|
||||
"u@ c #858AB7",
|
||||
"v@ c #6068BA",
|
||||
"w@ c #3A42A2",
|
||||
"x@ c #30379A",
|
||||
"y@ c #252D97",
|
||||
"z@ c #595B7F",
|
||||
"A@ c #888888",
|
||||
"B@ c #A7A9BD",
|
||||
"C@ c #6066BC",
|
||||
"D@ c #676FBF",
|
||||
"E@ c #6064BC",
|
||||
"F@ c #5259B4",
|
||||
"G@ c #4B52AB",
|
||||
"H@ c #464FA8",
|
||||
"I@ c #232B95",
|
||||
"J@ c #636473",
|
||||
"K@ c #4B51A7",
|
||||
"L@ c #7679C8",
|
||||
"M@ c #5D61B9",
|
||||
"N@ c #343C9E",
|
||||
"O@ c #2E3392",
|
||||
"P@ c #656565",
|
||||
"Q@ c #7277B0",
|
||||
"R@ c #3F49A5",
|
||||
"S@ c #272F99",
|
||||
"T@ c #222A96",
|
||||
"U@ c #4E5284",
|
||||
"V@ c #A2A5BC",
|
||||
"W@ c #293199",
|
||||
"X@ c #242C96",
|
||||
"Y@ c #1F2893",
|
||||
"Z@ c #626474",
|
||||
"`@ c #6B6B6B",
|
||||
" # c #5B5FA9",
|
||||
".# c #212995",
|
||||
"+# c #3F4489",
|
||||
"@# c #646464",
|
||||
"## c #717171",
|
||||
"$# c #9598B5",
|
||||
"%# c #4750A9",
|
||||
"&# c #2C349A",
|
||||
"*# c #262E98",
|
||||
"=# c #1D2693",
|
||||
"-# c #5F6175",
|
||||
";# c #6066A6",
|
||||
"># c #3D44A1",
|
||||
",# c #464DA8",
|
||||
"'# c #5158B1",
|
||||
")# c #1E2792",
|
||||
"!# c #444986",
|
||||
"~# c #6F6F6F",
|
||||
"{# c #A9A9B7",
|
||||
"]# c #373F9F",
|
||||
"^# c #5057B0",
|
||||
"/# c #1F2791",
|
||||
"(# c #64666E",
|
||||
"_# c #8183AB",
|
||||
":# c #1B2491",
|
||||
"<# c #5B5E7B",
|
||||
"[# c #676CA3",
|
||||
"}# c #3E45A6",
|
||||
"|# c #272F97",
|
||||
"1# c #4D5281",
|
||||
"2# c #828282",
|
||||
"3# c #B6B6B6",
|
||||
"4# c #5A5E9C",
|
||||
"5# c #1A2390",
|
||||
"6# c #454985",
|
||||
"7# c #999999",
|
||||
"8# c #585C9A",
|
||||
"9# c #212993",
|
||||
"0# c #787878",
|
||||
"a# c #949494",
|
||||
"b# c #606298",
|
||||
"c# c #30389E",
|
||||
"d# c #1C2592",
|
||||
"e# c #19228F",
|
||||
"f# c #4D4F81",
|
||||
"g# c #777777",
|
||||
"h# c #919191",
|
||||
"i# c #717397",
|
||||
"j# c #2B3397",
|
||||
"k# c #2F3699",
|
||||
"l# c #202894",
|
||||
"m# c #1C248E",
|
||||
"n# c #595B7B",
|
||||
"o# c #ADADAD",
|
||||
"p# c #8A8A96",
|
||||
"q# c #4E5390",
|
||||
"r# c #2C349C",
|
||||
"s# c #182190",
|
||||
"t# c #424786",
|
||||
"u# c #63646D",
|
||||
"v# c #73758B",
|
||||
"w# c #454A8F",
|
||||
"x# c #262E96",
|
||||
"y# c #222A94",
|
||||
"z# c #18218E",
|
||||
"A# c #3C4188",
|
||||
"B# c #5E6176",
|
||||
"C# c #727384",
|
||||
"D# c #525688",
|
||||
"E# c #2E3592",
|
||||
"F# c #202892",
|
||||
"G# c #262D8C",
|
||||
"H# c #4B4F83",
|
||||
"I# c #616373",
|
||||
"J# c #6A6C7C",
|
||||
"K# c #5B5C81",
|
||||
"L# c #484C88",
|
||||
"M# c #383E8C",
|
||||
"N# c #29308F",
|
||||
"O# c #1F278F",
|
||||
"P# c #262D8E",
|
||||
"Q# c #353B8B",
|
||||
"R# c #56587E",
|
||||
"S# c #727272",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . + @ # $ % & * = - ; > , ",
|
||||
" . ' ) ! ~ ~ ~ ~ ~ { ] ] ^ / ( _ : < [ ",
|
||||
" } | ~ 1 2 3 4 4 4 4 3 5 2 1 ~ 6 7 8 9 0 a b c ",
|
||||
" d e ~ 2 3 f g g g h h h i g j f 3 2 k l m n _ a o p q ",
|
||||
" r s 1 3 f g h t u v w w x x v t h g y 3 1 z 7 n _ A o B C ",
|
||||
" D ! 2 4 g h v E F G H H H I J J F E t h g 4 2 ! 7 n _ a o K L M ",
|
||||
" e { N 4 g t x F H O P Q Q R Q S T O H F E t i U 2 { 7 V W X Y Z ` . ",
|
||||
" ..{ 2 4 i +.E H O Q @.#.$.%.%.$.$.#.@.Q &.H F t i 4 2 { & ( A o *.=.-.;. ",
|
||||
" >.] 1 4 i t ,.H '.).#.!.~.{.].^.].{./.(.$.).T H F t i 4 1 ] 8 _ a _.Z :.<.;. ",
|
||||
" [.7 ~ 3 g }.F H Q @.|.1.^.2.3.4.4.4.3.5.6.~.(.7.Q I F 8.g 3 ~ ^ ( 9.0.a.b.c.d.;. ",
|
||||
" e.f.z g.j h E h.'.7.%.{.5.4.i.j.k.k.k.l.m.4.5.{.%.7.n.H o.h p.g.] q._ a _.r.s.t.u. . ",
|
||||
" v.^ ! 3 g t F O ).(.{.2.w.l.x.y.z.A.B.C.x.l.w.D.].(.E.O F.t G.3 ~ ^ 9 9.o K H.I.J.K.M ",
|
||||
" L.8 ] 1 y h E H R $.~.5.w.k.C.M.N.O.O.P.N.Q.C.k.w.5.~.#.R.H w h y 1 ] V 0 S.*.T.U.V.W.X. ",
|
||||
" Y./ 6 Z.`.8.F +)..+^.4.l.++@+#+$+%+%+&+*+#+=+-+j.4.6.;+@.O F t g N z & _ >+,+r.c.V.'+)+!+ ",
|
||||
" ~+{+& { Z.g v ]+T #.~.D.m.^+@+P.&+/+(+_+(+:+<+O.@+x.m.[+~.}+T F.v g 3 { * |+a Y 1+s.2+3+4+5+ ",
|
||||
" 6+|+^ ~ 7+i v h.Q $.{.3.l.C.N.*+:+8+9+0+a+b+:+*+N.C.c+d+{.$.Q H w i 3 ~ ^ ( e+_.1+f+2+g+h+i+j+ ",
|
||||
" : 9 7 1 4 i E H R (.6.4.k.k+O.*+(+a+l+m+n+o+(+*+O.k+k.4.^.(.R.H w h 4 ~ ^ 9 A o Z s.p+g+q+r+s+ ",
|
||||
" t+A |+^ 1 4 i E &.R %.^.4.k.A.P.u+8+v+w+x+m+0+8+%+P.M.k.4.6.$.y+&.x h 4 ~ ^ ( A _.Z :.p+z+A+B+C+D+ ",
|
||||
" E+A |+7 ~ 4 h E H Q $.^.4.F+z.O.%+(+a+l+w+l+o+(+*+O.z.G+4.6.$.y+H E h 4 ~ * ( A _.Z :.2+z+A+H+I+J+ ",
|
||||
" K+A |+^ ~ 4 i w H Q $.{.3.L+C.N.&+/+M+a+v+N+O+:+P+Q+C.R+S+{.$.Q J w i 4 ~ ^ |+A T+1+s.U+V+A+W+X+Y+ ",
|
||||
" Z+a |+& { 3 g v G '.#.~.5.`+^+ @O..@/+(+8+(+/+<+P.+@^+m.[+/.#.n.J t g 3 ! & _ A Y 1+s.2+3+@@#@$@%@&@",
|
||||
" *@X _ & ] N j t F &.).;+6.4.l.C.@+P.*+%+=@*+$+O.@+C.l.4.6.!.).O F t j -@z 8 _ >+,+r.;@V.3+>@,@'@)+)@",
|
||||
" !@S.0 n ] 1 y h E H Q #.~@2.{@k.C.A.N.O.O.O.Q+ @C.k.w.5.~.#.Q H E h 4 1 ] n 0 S.a.T.]@V.^@/@(@_@:@!+",
|
||||
" K <@A ( ^ ~ 3 g v F.&.R %.].[@{@l.-+C.z.k+k+C.x.l.w.[+{.%.R O }@+.i 3 ~ 7 ( A o Z H.I.|@1@2@3@4@5@;.",
|
||||
" 6@Y a _ 8 7@2 y 8@o.J '.7.%.{.5.4.i.l.G+k.l.R+`+4.5.{.%.9@T H x 8.y 2 7@& _ a Y 1+s.p+z+A+0@3@a@b@J+",
|
||||
" c@*.S.9.( 7 ~ 3 g t ,.H P 7.$.{.6.[+3.4.4.4.3.2.6.~.|.7.'.H E t g 3 ~ 7 ( d@S.a.=.c.V.e@>@f@g@h@i@J+",
|
||||
" j@Z T+a _ 8 ] 1 4 i +.F H P ).#..+~.{.].6.^.{.~..+#.@.'.H ,.k@i 4 1 z 8 l@a _.Z :.I.m@n@2@o@p@a@b@J+",
|
||||
" q@b.*.o d@( & z 2 4 i v E h.&.Q ).}+$.$.$.$.$.#.).Q &.H ,.+.i U 2 ! ^ |+9.S.*.b.c.r@3+A+0@s@t@4@5@;.",
|
||||
" u@:.1+_.a 0 V v@{ 2 f i t x F.H &.T Q R R Q Q '.&.H }@E t g f 2 ! 7 n W a ,+Z :.I.w@^@x@f@y@z@_@A@!+",
|
||||
" B@c.T.K o a _ n C@! D@4 g h v E F F.H H &.H H J F x v h g 4 g.{ E@n _ F@o G@H@]@r@g+@@0@s@I@J@'@)+)@",
|
||||
" K@;@r.a.S.a _ n ^ z 1 3 j g h 8.v L@E E w w v t h g y 3 1 { ^ M@|+a o *.b.s.p+z+N@x@o@y@O@P@$@%@&@",
|
||||
" Q@R@f+r.a.o A _ n * ] ~ D@3 f j g i i h i i g `.f 3 2 ~ z & n _ a o a.r.s.R@w@3+@@0@S@T@U@h@X+Y+ ",
|
||||
" V@V.]@:.1+a.o a W ( 8 7 ] ~ 1 N 3 3 4 4 4 3 N 2 1 ~ 7@^ 8 9 0 a o a.1+H.]@V.g+A+0@W@X@Y@Z@`@I+J+ ",
|
||||
" #V.]@H.r.*.o X 9.|+n 8 7 7 z { ~ ~ ~ k ~ ! ] ] ^ & ( _ 9.>+_.*.1+H.]@r@V+1@2@o@y@.#+#@###C+D+ ",
|
||||
" $#g+r@]@:.b.G@Y S.a 9._ |+V & m ^ 7 7 7 ^ & 8 n ( _ 9.a S.Y K %#:.]@r@V+1@x@&#*#T@=#-#a@r+s+ ",
|
||||
" ;#g+>#I.;@,#1+*._.S.a A 0 _ {+( |+|+9 |+|+_ 0 A a '#_.*.1+T.s.I.V.g+1@x@&#S@I@)#!#@#~#i+j+ ",
|
||||
" {#]#g+w@p+c.:.=.Z *.Y o '#a a A A A A a a >+S.^#Y *.1+b.H.c.p+w@g+1@/@&#S@I@Y@/#(#a@r+5+ ",
|
||||
" _#@@3+z+r@I.;@H.T.1+G@a.a.Y T+o <@T+T+Y Y a.K 1+T.:.c.I.r@z+3+A+2@&#S@I@Y@:#<#P@##)+j+ ",
|
||||
" [#>@n@g+w@r@I.c.s.H.T.r.1+1+Z 1+Z 1+1+r.=.H.s.c.}#U+w@3+N@>@0@f@|#I@Y@:#1#@#_@2#X. ",
|
||||
" 3#4#x@A+^@g+m@r@2+I.]@c.s.f+:.:.:.s.s.c.c.I.2+r@|@g+N@A+x@&#W@*#T@)#5#6#@#4@X+7#3# ",
|
||||
" .8#0@/@A+N@3+V+m@V.V.2+2+p+p+p+U+U+r@V.|@g+^@n@@@/@0@o@s@X@9#)#5#6#@#a@0#a# . ",
|
||||
" ;.b#o@0@2@c#A+n@^@3+g+z+V+g+z+z+g+3+^@1@A+c#2@0@f@s@y@T@Y@d#e#f#@#a@g#h#;. ",
|
||||
" ;.i#j#3@f@0@0@/@c#>@@@A+A+A+@@@@>@/@k#0@&#o@S@y@I@l#=#5#m#n#@#4@0#h#o# ",
|
||||
" ;.p#q#*#s@W@o@f@&#r#0@0@0@&#&#f@o@W@S@*#X@.#l#=#5#s#t#u#P@_@X+a#;. ",
|
||||
" .K.v#w#I@X@y@x#|#*#|#S@*#*#x#X@I@y#l#)#d#5#z#A#B#@#a@##2#7# . ",
|
||||
" M X.)+C#D#E#l#l#9#9#9#.#l#F#)#=#d#5#s#G#H#I#@#a@~#r+)+X.3# ",
|
||||
" !+5+i+r+J#K#L#M#N#/#:#O#P#Q#6#R#I#P@h@`@S#r+i+5+!+ ",
|
||||
" j+Y+C+I+r+$@'@_@4@a@a@a@4@_@'@$@X+I+C+s+j+ ",
|
||||
" D+J+Y+%@)+:@5@b@i@b@5@:@)+%@Y+J+D+ ",
|
||||
" &@)@!+;.o#J+o#;.!+)@&@ "};
|
||||
511
gtkballs-data/themes/5balls-Big/blue_jump6.xpm
Normal file
511
gtkballs-data/themes/5balls-Big/blue_jump6.xpm
Normal file
@ -0,0 +1,511 @@
|
||||
/* XPM */
|
||||
static char * blue_jump6_xpm[] = {
|
||||
"54 54 454 2",
|
||||
" c None",
|
||||
". c #ABACC1",
|
||||
"+ c #9295C0",
|
||||
"@ c #7F82BD",
|
||||
"# c #7176BB",
|
||||
"$ c #666CBA",
|
||||
"% c #5F65B9",
|
||||
"& c #5A60B8",
|
||||
"* c #5C62B8",
|
||||
"= c #6268B8",
|
||||
"- c #6C71B8",
|
||||
"; c #797CB9",
|
||||
"> c #8C90BC",
|
||||
", c #A7A8BD",
|
||||
"' c #8689BE",
|
||||
") c #686EBC",
|
||||
"! c #6066BC",
|
||||
"~ c #6268BC",
|
||||
"{ c #6167BB",
|
||||
"] c #5E64BA",
|
||||
"^ c #5B61B9",
|
||||
"/ c #5A5EB8",
|
||||
"( c #565CB6",
|
||||
"_ c #545BB4",
|
||||
": c #5C62B4",
|
||||
"< c #7C7FB6",
|
||||
"[ c #A4A5BC",
|
||||
"} c #A4A5C0",
|
||||
"| c #787EBC",
|
||||
"1 c #6369BD",
|
||||
"2 c #646ABE",
|
||||
"3 c #676DBF",
|
||||
"4 c #666CC0",
|
||||
"5 c #676BBF",
|
||||
"6 c #5F63BB",
|
||||
"7 c #5D63B9",
|
||||
"8 c #5960B7",
|
||||
"9 c #575EB5",
|
||||
"0 c #535AB3",
|
||||
"a c #4F56B1",
|
||||
"b c #696EB1",
|
||||
"c c #9A9BB6",
|
||||
"d c #B4B4C2",
|
||||
"e c #7F83BD",
|
||||
"f c #686FC0",
|
||||
"g c #6A71C2",
|
||||
"h c #6D73C3",
|
||||
"i c #6C73C4",
|
||||
"j c #6B72C3",
|
||||
"k c #6970C1",
|
||||
"l c #6165BD",
|
||||
"m c #5D63BB",
|
||||
"n c #5B5FB9",
|
||||
"o c #585FB6",
|
||||
"p c #4D54AD",
|
||||
"q c #6C71AE",
|
||||
"r c #A8A8B6",
|
||||
"s c #999BBF",
|
||||
"t c #646ABC",
|
||||
"u c #6F75C5",
|
||||
"v c #7177C5",
|
||||
"w c #7076C6",
|
||||
"x c #7278C6",
|
||||
"y c #7177C7",
|
||||
"z c #676DC1",
|
||||
"A c #5F65BB",
|
||||
"B c #5057B2",
|
||||
"C c #4D54A9",
|
||||
"D c #8689AC",
|
||||
"E c #888CBE",
|
||||
"F c #7379C7",
|
||||
"G c #747AC8",
|
||||
"H c #767ACA",
|
||||
"I c #787ECA",
|
||||
"J c #777BCB",
|
||||
"K c #777DC9",
|
||||
"L c #4A51AA",
|
||||
"M c #7074A8",
|
||||
"N c #B3B3B3",
|
||||
"O c #666CBE",
|
||||
"P c #7A80CC",
|
||||
"Q c #7D81CD",
|
||||
"R c #7D83CD",
|
||||
"S c #7E84CE",
|
||||
"T c #7D85CD",
|
||||
"U c #7C82CC",
|
||||
"V c #676BC1",
|
||||
"W c #575EB7",
|
||||
"X c #5259B4",
|
||||
"Y c #4D54B1",
|
||||
"Z c #4B52AB",
|
||||
"` c #4950A9",
|
||||
" . c #6467A4",
|
||||
".. c #AEAEAE",
|
||||
"+. c #7E82BC",
|
||||
"@. c #7074C6",
|
||||
"#. c #7F85CF",
|
||||
"$. c #8288D0",
|
||||
"%. c #8389D1",
|
||||
"&. c #848AD2",
|
||||
"*. c #797FCB",
|
||||
"=. c #4B52A9",
|
||||
"-. c #464DA6",
|
||||
";. c #6366A1",
|
||||
">. c #ABABAB",
|
||||
",. c #878BBD",
|
||||
"'. c #737BC7",
|
||||
"). c #7B81CD",
|
||||
"!. c #8086CE",
|
||||
"~. c #868BD2",
|
||||
"{. c #868CD4",
|
||||
"]. c #898ED3",
|
||||
"^. c #888DD4",
|
||||
"/. c #868DD2",
|
||||
"(. c #858AD1",
|
||||
"_. c #4C53AC",
|
||||
":. c #434AA5",
|
||||
"<. c #686A9E",
|
||||
"[. c #989CBE",
|
||||
"}. c #7076C4",
|
||||
"|. c #838AD1",
|
||||
"1. c #868AD4",
|
||||
"2. c #8B92D5",
|
||||
"3. c #8D93D7",
|
||||
"4. c #8E94D8",
|
||||
"5. c #8B90D5",
|
||||
"6. c #898FD5",
|
||||
"7. c #8187CF",
|
||||
"8. c #6E74C4",
|
||||
"9. c #5158B3",
|
||||
"0. c #4D56AD",
|
||||
"a. c #464DA8",
|
||||
"b. c #4047A4",
|
||||
"c. c #757799",
|
||||
"d. c #B3B5C1",
|
||||
"e. c #5D63B7",
|
||||
"f. c #656BBD",
|
||||
"g. c #767CCA",
|
||||
"h. c #9196D9",
|
||||
"i. c #9397DB",
|
||||
"j. c #9499DC",
|
||||
"k. c #9398DB",
|
||||
"l. c #9095DA",
|
||||
"m. c #7C84CC",
|
||||
"n. c #727AC6",
|
||||
"o. c #6871C0",
|
||||
"p. c #585FB8",
|
||||
"q. c #474EA7",
|
||||
"r. c #4249A4",
|
||||
"s. c #3F46A1",
|
||||
"t. c #888A94",
|
||||
"u. c #797DBB",
|
||||
"v. c #8F94D9",
|
||||
"w. c #959ADD",
|
||||
"x. c #989BDE",
|
||||
"y. c #999CDF",
|
||||
"z. c #9BA0DF",
|
||||
"A. c #9AA0DE",
|
||||
"B. c #989DDE",
|
||||
"C. c #8D92D5",
|
||||
"D. c #7F83CF",
|
||||
"E. c #757BC9",
|
||||
"F. c #696FC3",
|
||||
"G. c #444BA6",
|
||||
"H. c #3E45A2",
|
||||
"I. c #595E97",
|
||||
"J. c #979797",
|
||||
"K. c #A2A4BE",
|
||||
"L. c #9A9DE0",
|
||||
"M. c #9DA3E1",
|
||||
"N. c #A0A5E2",
|
||||
"O. c #9FA5E3",
|
||||
"P. c #9BA1DF",
|
||||
"Q. c #7E82CE",
|
||||
"R. c #4D54AF",
|
||||
"S. c #454CA7",
|
||||
"T. c #4047A2",
|
||||
"U. c #3A41A0",
|
||||
"V. c #73758B",
|
||||
"W. c #A1A1A1",
|
||||
"X. c #7075B8",
|
||||
"Y. c #656BBF",
|
||||
"Z. c #686EC2",
|
||||
"`. c #7B81CB",
|
||||
" + c #8488D2",
|
||||
".+ c #979EDD",
|
||||
"++ c #9CA1E0",
|
||||
"@+ c #A1A6E3",
|
||||
"#+ c #A4AAE4",
|
||||
"$+ c #A4A9E6",
|
||||
"%+ c #A3A8E5",
|
||||
"&+ c #A3A7E5",
|
||||
"*+ c #9B9EE1",
|
||||
"=+ c #979CDD",
|
||||
"-+ c #858CD1",
|
||||
";+ c #4E55B0",
|
||||
">+ c #4C53AA",
|
||||
",+ c #4148A3",
|
||||
"'+ c #525694",
|
||||
")+ c #8C8C8C",
|
||||
"!+ c #ADADAD",
|
||||
"~+ c #A7A9BF",
|
||||
"{+ c #565DB4",
|
||||
"]+ c #757DC9",
|
||||
"^+ c #969BDC",
|
||||
"/+ c #A6ABE8",
|
||||
"(+ c #A9AEE9",
|
||||
"_+ c #A9AFE9",
|
||||
":+ c #A7ACE7",
|
||||
"<+ c #A3AAE5",
|
||||
"[+ c #8B91D7",
|
||||
"}+ c #8188CF",
|
||||
"|+ c #555CB5",
|
||||
"1+ c #484FA8",
|
||||
"2+ c #3C43A2",
|
||||
"3+ c #363D9C",
|
||||
"4+ c #717383",
|
||||
"5+ c #9B9B9B",
|
||||
"6+ c #7F83B9",
|
||||
"7+ c #666AC0",
|
||||
"8+ c #AAAEEA",
|
||||
"9+ c #AEB1EC",
|
||||
"0+ c #B1B5ED",
|
||||
"a+ c #AEB2EC",
|
||||
"b+ c #ABAFEB",
|
||||
"c+ c #9297DA",
|
||||
"d+ c #8C90D8",
|
||||
"e+ c #5158B1",
|
||||
"f+ c #4249A6",
|
||||
"g+ c #363E9E",
|
||||
"h+ c #595D8D",
|
||||
"i+ c #898989",
|
||||
"j+ c #ACACAC",
|
||||
"k+ c #999EDF",
|
||||
"l+ c #A2A7E6",
|
||||
"m+ c #B2B7F0",
|
||||
"n+ c #B5BAF1",
|
||||
"o+ c #B2B8F0",
|
||||
"p+ c #AEB3EE",
|
||||
"q+ c #3D44A1",
|
||||
"r+ c #3C4398",
|
||||
"s+ c #7A7A7A",
|
||||
"t+ c #9E9E9E",
|
||||
"u+ c #A6A8BE",
|
||||
"v+ c #A5A8E7",
|
||||
"w+ c #AEB1EE",
|
||||
"x+ c #B6B9F2",
|
||||
"y+ c #BBBFF5",
|
||||
"z+ c #7F85CD",
|
||||
"A+ c #373F9F",
|
||||
"B+ c #32399A",
|
||||
"C+ c #6B6D7D",
|
||||
"D+ c #909090",
|
||||
"E+ c #B1B1B1",
|
||||
"F+ c #8A8EBA",
|
||||
"G+ c #9497DC",
|
||||
"H+ c #939ADB",
|
||||
"I+ c #5F6183",
|
||||
"J+ c #828282",
|
||||
"K+ c #A9A9A9",
|
||||
"L+ c #7479B6",
|
||||
"M+ c #9299DA",
|
||||
"N+ c #A4A8E4",
|
||||
"O+ c #ACB0EA",
|
||||
"P+ c #ACB1EE",
|
||||
"Q+ c #AAB0EA",
|
||||
"R+ c #A3A6E5",
|
||||
"S+ c #9EA3E2",
|
||||
"T+ c #9197DB",
|
||||
"U+ c #8C92D8",
|
||||
"V+ c #4B52AD",
|
||||
"W+ c #3C43A0",
|
||||
"X+ c #373E9D",
|
||||
"Y+ c #50538C",
|
||||
"Z+ c #797979",
|
||||
"`+ c #9F9F9F",
|
||||
" @ c #6167B3",
|
||||
".@ c #9198D9",
|
||||
"+@ c #9A9FE0",
|
||||
"@@ c #A2A5E6",
|
||||
"#@ c #9C9FE0",
|
||||
"$@ c #313899",
|
||||
"%@ c #424790",
|
||||
"&@ c #727272",
|
||||
"*@ c #949494",
|
||||
"=@ c #B5B5B5",
|
||||
"-@ c #535CAF",
|
||||
";@ c #A4AAE6",
|
||||
">@ c #666ABE",
|
||||
",@ c #4148A5",
|
||||
"'@ c #2F3799",
|
||||
")@ c #353C93",
|
||||
"!@ c #6E6E6E",
|
||||
"~@ c #B0B0B0",
|
||||
"{@ c #4C55AA",
|
||||
"]@ c #848AD4",
|
||||
"^@ c #9095D8",
|
||||
"/@ c #3F46A3",
|
||||
"(@ c #353C9B",
|
||||
"_@ c #2F3699",
|
||||
":@ c #2C3496",
|
||||
"<@ c #6A6A6A",
|
||||
"[@ c #868686",
|
||||
"}@ c #4C55AC",
|
||||
"|@ c #8B8FD7",
|
||||
"1@ c #7579C9",
|
||||
"2@ c #383F9E",
|
||||
"3@ c #323A9C",
|
||||
"4@ c #2E3598",
|
||||
"5@ c #293195",
|
||||
"6@ c #676767",
|
||||
"7@ c #818181",
|
||||
"8@ c #4C53A8",
|
||||
"9@ c #6066BA",
|
||||
"0@ c #6E72C4",
|
||||
"a@ c #8084D0",
|
||||
"b@ c #2C3498",
|
||||
"c@ c #666666",
|
||||
"d@ c #7E7E7E",
|
||||
"e@ c #5056AA",
|
||||
"f@ c #5259B2",
|
||||
"g@ c #343C9E",
|
||||
"h@ c #2A3298",
|
||||
"i@ c #323992",
|
||||
"j@ c #656565",
|
||||
"k@ c #7D7D7D",
|
||||
"l@ c #595FAD",
|
||||
"m@ c #6C72C2",
|
||||
"n@ c #6E74C6",
|
||||
"o@ c #535AB5",
|
||||
"p@ c #3840A0",
|
||||
"q@ c #333B9D",
|
||||
"r@ c #293197",
|
||||
"s@ c #3C428C",
|
||||
"t@ c #6B70B1",
|
||||
"u@ c #3B42A1",
|
||||
"v@ c #272F95",
|
||||
"w@ c #4A4E86",
|
||||
"x@ c #8286B4",
|
||||
"y@ c #5C64B8",
|
||||
"z@ c #39409F",
|
||||
"A@ c #2F3697",
|
||||
"B@ c #242C94",
|
||||
"C@ c #575A7D",
|
||||
"D@ c #858585",
|
||||
"E@ c #A2A4BA",
|
||||
"F@ c #5C62BA",
|
||||
"G@ c #636BBD",
|
||||
"H@ c #5C60BA",
|
||||
"I@ c #4E55B2",
|
||||
"J@ c #4A51A8",
|
||||
"K@ c #454EA5",
|
||||
"L@ c #232A91",
|
||||
"M@ c #616271",
|
||||
"N@ c #4A50A4",
|
||||
"O@ c #7175C7",
|
||||
"P@ c #595DB7",
|
||||
"Q@ c #333B9B",
|
||||
"R@ c #2D328F",
|
||||
"S@ c #636363",
|
||||
"T@ c #6F73AD",
|
||||
"U@ c #3E48A2",
|
||||
"V@ c #262E96",
|
||||
"W@ c #222A92",
|
||||
"X@ c #4C5082",
|
||||
"Y@ c #9EA0B8",
|
||||
"Z@ c #2D3497",
|
||||
"`@ c #283096",
|
||||
" # c #232B93",
|
||||
".# c #1F278F",
|
||||
"+# c #606272",
|
||||
"@# c #696969",
|
||||
"## c #585BA6",
|
||||
"$# c #202892",
|
||||
"%# c #3E4386",
|
||||
"&# c #626262",
|
||||
"*# c #6F6F6F",
|
||||
"=# c #9295B2",
|
||||
"-# c #464FA6",
|
||||
";# c #2B3397",
|
||||
"># c #262D94",
|
||||
",# c #1D258F",
|
||||
"'# c #5D5F73",
|
||||
")# c #5C62A4",
|
||||
"!# c #3B429F",
|
||||
"~# c #454CA5",
|
||||
"{# c #4E55AE",
|
||||
"]# c #1E268E",
|
||||
"^# c #434783",
|
||||
"/# c #6D6D6D",
|
||||
"(# c #A4A4B4",
|
||||
"_# c #363E9C",
|
||||
":# c #4E55AC",
|
||||
"<# c #1F268D",
|
||||
"[# c #62646C",
|
||||
"}# c #7E80A8",
|
||||
"|# c #1B238D",
|
||||
"1# c #5A5D78",
|
||||
"2# c #6468A0",
|
||||
"3# c #3D44A3",
|
||||
"4# c #262E94",
|
||||
"5# c #4B507F",
|
||||
"6# c #7F7F7F",
|
||||
"7# c #B2B2B2",
|
||||
"8# c #585D9A",
|
||||
"9# c #1A228C",
|
||||
"0# c #444882",
|
||||
"a# c #969696",
|
||||
"b# c #565B98",
|
||||
"c# c #202890",
|
||||
"d# c #767676",
|
||||
"e# c #919191",
|
||||
"f# c #5E6196",
|
||||
"g# c #30379A",
|
||||
"h# c #1C248E",
|
||||
"i# c #19218B",
|
||||
"j# c #4B4E7F",
|
||||
"k# c #757575",
|
||||
"l# c #8E8E8E",
|
||||
"m# c #6D7095",
|
||||
"n# c #2A3294",
|
||||
"o# c #2E3596",
|
||||
"p# c #1F2791",
|
||||
"q# c #1C238A",
|
||||
"r# c #585978",
|
||||
"s# c #AAAAAA",
|
||||
"t# c #878793",
|
||||
"u# c #4D518D",
|
||||
"v# c #2B3399",
|
||||
"w# c #18208C",
|
||||
"x# c #414583",
|
||||
"y# c #61626B",
|
||||
"z# c #707388",
|
||||
"A# c #44498C",
|
||||
"B# c #262D92",
|
||||
"C# c #222990",
|
||||
"D# c #18208A",
|
||||
"E# c #3B4085",
|
||||
"F# c #707182",
|
||||
"G# c #505486",
|
||||
"H# c #2D348F",
|
||||
"I# c #252C89",
|
||||
"J# c #494D81",
|
||||
"K# c #5F6171",
|
||||
"L# c #696B79",
|
||||
"M# c #595B7F",
|
||||
"N# c #464B86",
|
||||
"O# c #373C89",
|
||||
"P# c #282F8C",
|
||||
"Q# c #1F268B",
|
||||
"R# c #252C8B",
|
||||
"S# c #343A88",
|
||||
"T# c #54567C",
|
||||
"U# c #707070",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . + @ # $ % & * = - ; > , ",
|
||||
" . ' ) ! ~ ~ ~ ~ ~ { ] ] ^ / ( _ : < [ ",
|
||||
" } | ~ 1 2 3 4 4 4 4 3 5 2 1 ~ 6 7 8 9 0 a b c ",
|
||||
" d e ~ 2 3 f g g g h i h j g k f 3 2 l m n o _ a p q r ",
|
||||
" s t 1 3 f g i u v w x x y y w u i g z 3 1 A 7 o _ B p C D ",
|
||||
" | ||||