tp-magic-config man moved to (1)
Magic tool documentation now split into separate files, and referenced (as a directory) from README, so that users can find docs to any additional tools (ones not included by default with Tux Paint) that are installed. Added new --datadir option, to separate path to brushes/stamps/etc. from that of saved files. Improved docs on where savedir default is. Made sure --help, man tuxpaint, and OPTIONS docs all covered all command-line options. Noted SDL_Pango makes locale-specific fonts unnecessary. Added "--plugindocprefix" option to tp-magic-config, for where docs should go. Improved plugin API documentation. Improved layout of man pages a little.
This commit is contained in:
parent
ace762e890
commit
adf56ef7e9
66 changed files with 1809 additions and 592 deletions
|
|
@ -47,7 +47,8 @@ $Id$
|
|||
source-code by using new "tp-magic-config" shell script to query
|
||||
for C compiler flags (which points to where "tp_magic_api.h" header
|
||||
file is installed) and directories Tux Paint uses (where plugin '.so'
|
||||
files shoudl be stored, and where Tux Paint's global data files go).
|
||||
files should be stored, and where Tux Paint's global data files and
|
||||
documentation go).
|
||||
|
||||
* Magic plugin development docs created. On Linux/Unix, installed into
|
||||
/usr/[local/]share/docs/tuxpaint-dev/ by default. (HTML and plaintext.)
|
||||
|
|
@ -63,6 +64,11 @@ $Id$
|
|||
affected (until mouse button is released and clicked again).
|
||||
Improves performance, especially where heavy math is used.
|
||||
|
||||
* Magic tool documentation now split into separate files, and referenced
|
||||
(as a directory) from README, so that users can find docs to any
|
||||
additional tools (ones not included by default with Tux Paint) that are
|
||||
installed.
|
||||
|
||||
* Began adding support for using SDL_Pango, a wrapper to Pango,
|
||||
a library for layout and rendering of text, with an emphasis on
|
||||
internationalization. (The hope is to improve support for languages
|
||||
|
|
@ -80,6 +86,10 @@ $Id$
|
|||
* Print configuration is now saved between Tux Paint sessions on Mac OS X.
|
||||
Martin Fuhrer <mfuhrer@users.sourceforge.net>
|
||||
|
||||
* Saved-files directory and data directory (brushes, starters, etc.) can
|
||||
now be different. Use "--datadir" option to override default data
|
||||
directory, similar to "--savedir" has been for overriding save directory.
|
||||
|
||||
* New Brushes
|
||||
-----------
|
||||
* Sparkles (based on old Magic Tool)
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
bill@newbreedsoftware.com
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
July 4, 2007
|
||||
August 2, 2007
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
|
|
@ -163,7 +163,7 @@ Windows Users
|
|||
|
||||
printcfg=yes
|
||||
|
||||
(Windows only)
|
||||
(Windows and Mac OS X only)
|
||||
|
||||
Tux Paint will use a printer configuration file when printing.
|
||||
Push the [Alt] key while clicking the 'Print' button in
|
||||
|
|
@ -318,20 +318,72 @@ Windows Users
|
|||
|
||||
savedir=DIRECTORY
|
||||
|
||||
Use this option to change where Tux Paint saves pictures. By
|
||||
default, this is "~/.tuxpaint/saved/" under Linux and Unix, and
|
||||
"userdata\" under Windows.
|
||||
Use this option to change where Tux Paint's "saved"
|
||||
directory/folder is located, which is where Tux Paint saves and
|
||||
opens pictures.
|
||||
|
||||
This can be useful in a Windows lab, where Tux Paint is
|
||||
installed on a server, and children run it from workstations.
|
||||
You can set savedir to be a folder in their home directory.
|
||||
(e.g., "H:\tuxpaint\")
|
||||
If you do not override it, the default location is:
|
||||
|
||||
* Linux & Unix -- Under a hidden directory named ".tuxpaint"
|
||||
in your home directory (aka "~" or "$HOME")
|
||||
Example: "/home/username/.tuxpaint/saved/"
|
||||
|
||||
* Windows -- Inside a folder named "TuxPaint" in your
|
||||
"Application Data" folder.
|
||||
Example:
|
||||
"C:\Documents and Settings\Username\Application Data\TuxPaint\saved\"
|
||||
|
||||
* Mac OS X -- Inside a folder named "TuxPaint" in your
|
||||
"Application Support" folder.
|
||||
Example:
|
||||
"/Users/Username/Library/Application Support/TuxPaint/saved/"
|
||||
|
||||
Note: When specifying a Windows drive (e.g., "H:\"), you must
|
||||
also specify a subdirectory.
|
||||
|
||||
Note: Prior to version 0.9.18, Tux Paint would also use the
|
||||
setting or default for "savedir" as the place to search for
|
||||
personal data files (brushes, stamps, starters and fonts). As of
|
||||
version 0.9.18, they may be specified separately (see the
|
||||
"datadir" option, below).
|
||||
|
||||
Example: savedir=Z:\tuxpaint\
|
||||
|
||||
datadir=DIRECTORY
|
||||
|
||||
Use this option to change where Tux Paint looks for personal
|
||||
data files (brushes, stamps, starters and fonts specific to the
|
||||
current user).
|
||||
|
||||
Tux Paint will search for subdirectories/subfolders named
|
||||
"brushes", "stamps", "starters" and "fonts" under the data
|
||||
directory.
|
||||
|
||||
If you do not override it, the default location is:
|
||||
|
||||
* Linux & Unix -- Under a hidden directory named ".tuxpaint"
|
||||
in your home directory (aka "~" or "$HOME")
|
||||
Example: "/home/username/.tuxpaint/brushes/"
|
||||
|
||||
* Windows -- Inside a folder named "TuxPaint" in your
|
||||
"Application Data" folder.
|
||||
Example:
|
||||
"C:\Documents and Settings\Username\Application Data\TuxPaint\brushes\"
|
||||
|
||||
* Mac OS X -- Inside a folder named "TuxPaint" in your
|
||||
"Application Support" folder.
|
||||
Example:
|
||||
"/Users/Username/Library/Application Support/TuxPaint/brushes/"
|
||||
|
||||
Note: Prior to version 0.9.18, Tux Paint would use the same
|
||||
setting or default as for "savedir" to search for data files. As
|
||||
of version 0.9.18, they may be specified separately.
|
||||
|
||||
Note: When specifying a Windows drive (e.g., "H:\"), you must
|
||||
also specify a subdirectory.
|
||||
|
||||
Example: datadir=/home/johnny/tuxpaint-data/
|
||||
|
||||
saveover=yes
|
||||
This disables the "Save over the old version...?" prompt when
|
||||
saving an existing file. With this option, the older version
|
||||
|
|
@ -356,9 +408,8 @@ Windows Users
|
|||
test environment.
|
||||
|
||||
autosave=yes
|
||||
|
||||
This prevents Tux Paint from asking whether you want to save the current
|
||||
picture when quitting, and assumes you do.
|
||||
This prevents Tux Paint from asking whether you want to save the
|
||||
current picture when quitting, and assumes you do.
|
||||
|
||||
startblank=yes
|
||||
This causes Tux Paint to display a blank canvas when it first
|
||||
|
|
@ -583,6 +634,8 @@ Windows Users
|
|||
--noprint
|
||||
--printdelay=SECONDS
|
||||
--printcfg
|
||||
--altprintnever
|
||||
--altprintalways
|
||||
--papersize=PAPERSIZE
|
||||
--simpleshapes
|
||||
--uppercase
|
||||
|
|
@ -599,11 +652,13 @@ Windows Users
|
|||
--mirrorstamps
|
||||
--keyboard
|
||||
--savedir DIRECTORY
|
||||
--datadir DIRECTORY
|
||||
--saveover
|
||||
--saveovernew
|
||||
--nosave
|
||||
--autosave
|
||||
--lang LANGUAGE
|
||||
--colorfile FILE
|
||||
These enable or correspond to the configuration file options
|
||||
described above.
|
||||
|
||||
|
|
@ -618,6 +673,7 @@ Windows Users
|
|||
--print
|
||||
--printdelay=0
|
||||
--noprintcfg
|
||||
--altprintmod
|
||||
--complexshapes
|
||||
--mixedcase
|
||||
--dontgrab
|
||||
|
|
@ -641,7 +697,7 @@ Windows Users
|
|||
|
||||
-------------------------------------
|
||||
|
||||
--locale locale
|
||||
--locale LOCALE
|
||||
|
||||
Run Tux Paint in one of the support languages. See the
|
||||
"Choosing a Different Language" section below for the locale
|
||||
|
|
@ -971,6 +1027,12 @@ Setting Your Environment's Locale
|
|||
with the Tux Paint download, and are available separately. (See the
|
||||
table above, under the "Choosing a Different Language" section.)
|
||||
|
||||
Note: As of version 0.9.18, Tux Paint uses the "SDL_Pango" library,
|
||||
which utilizes the "Pango" library to render text in the user
|
||||
interface, rather than using "SDL_ttf" directly. Unless your copy of
|
||||
Tux Paint was built without Pango support, special fonts should no
|
||||
longer be necessary.
|
||||
|
||||
When running Tux Paint in a language that requires its own font,
|
||||
Tux Paint will try to load the font file from its system-wide "fonts"
|
||||
directory (under a "locale" subdirectory). The name of the file
|
||||
|
|
@ -990,3 +1052,5 @@ Setting Your Environment's Locale
|
|||
|
||||
Under Unix and Linux, you can use the Makefile that comes with the
|
||||
font to install the font in the appropriate location.
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
|
|
|
|||
120
docs/README.txt
120
docs/README.txt
|
|
@ -9,7 +9,7 @@
|
|||
bill@newbreedsoftware.com
|
||||
http://www.tuxpaint.org/
|
||||
|
||||
June 14, 2002 - June 27, 2007
|
||||
June 14, 2002 - August 2, 2007
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
|
|
@ -329,104 +329,13 @@ Available Tools
|
|||
|
||||
The 'Magic' tool is actually a set of special
|
||||
tools. Select one of the "magic" effects from
|
||||
the selector on the right, and then click and
|
||||
drag around the picture to apply the effect.
|
||||
the selector on the right. Then, depending on
|
||||
the tool, either click and drag around the
|
||||
picture, or simply click the picture once, to
|
||||
apply the effect.
|
||||
|
||||
Fill
|
||||
This floods the picture with a color.
|
||||
It lets you quickly fill parts of the
|
||||
picture, as if it were a coloring
|
||||
book.
|
||||
|
||||
Grass
|
||||
This paints grass on the image. The
|
||||
higher up the canvas, the smaller the
|
||||
grass is drawn, giving an illusion of
|
||||
perspective. The grass can be tinted
|
||||
various greenish hues by selecting
|
||||
different colors in the color
|
||||
palette.
|
||||
|
||||
Bricks (Large and Small)
|
||||
These two tools intelligently paint
|
||||
large and small brick patterns on the
|
||||
canvas. The bricks can be tinted
|
||||
various redish hues by selecting
|
||||
different colors in the color
|
||||
palette.
|
||||
|
||||
Rainbow
|
||||
This is similar to the paint brush,
|
||||
but as you move the mouse around, it
|
||||
cycles through a spectrum of bright
|
||||
colors.
|
||||
|
||||
Sparkles
|
||||
This draws glowing sparkles on the
|
||||
canvas, in the currently-selected
|
||||
color.
|
||||
|
||||
Blur
|
||||
This makes the picture fuzzy wherever
|
||||
you drag the mouse.
|
||||
|
||||
Smudge
|
||||
This pushes the colors around under
|
||||
the mouse, like finger painting with
|
||||
wet paint.
|
||||
|
||||
Lighten
|
||||
This fades the colors wherever you
|
||||
drag the mouse. (Do it to the same
|
||||
spot many times, and it will
|
||||
eventually become white.)
|
||||
|
||||
Darken
|
||||
This dakrens the colors wherever you
|
||||
drag the mouse. (Do it to the same
|
||||
spot many times, and it will
|
||||
eventually become black.)
|
||||
|
||||
Chalk
|
||||
This makes parts of the picture
|
||||
(where you move the mouse) look like
|
||||
a chalk drawing.
|
||||
|
||||
Blocks
|
||||
This makes the picture blocky looking
|
||||
("pixelated") wherever you drag the
|
||||
mouse.
|
||||
|
||||
Negative
|
||||
This inverts the colors wherever you
|
||||
drag the mouse. (e.g., white becomes
|
||||
black, and vice versa.)
|
||||
|
||||
Tint
|
||||
This changes the parts of the picture
|
||||
to the selected color.
|
||||
|
||||
Drip
|
||||
This makes the paint "drip" wherever
|
||||
you move the mouse.
|
||||
|
||||
Cartoon
|
||||
This makes the picture look like a
|
||||
cartoon -- with thick outlines and
|
||||
bright, solid colors -- wherever you
|
||||
move the mouse.
|
||||
|
||||
Mirror
|
||||
When you click the mouse in your
|
||||
picture with the "Mirror" magic
|
||||
effect selected, the entire image
|
||||
will be reversed, turning it into a
|
||||
mirror image.
|
||||
|
||||
Flip
|
||||
Similar to "Mirror." Click and the
|
||||
entire image will be turned
|
||||
upside-down.
|
||||
Each 'Magic' tool's instructions are contained
|
||||
within the "magic-docs" folder.
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
|
|
@ -902,15 +811,18 @@ Doing it Manually
|
|||
Other documentation included with Tux Paint (in the "docs"
|
||||
folder/directory) include:
|
||||
|
||||
* "Magic" Tool Documentation ("magic-docs")
|
||||
Documentation for each of the currently-installed
|
||||
"Magic" tools.
|
||||
* AUTHORS.txt
|
||||
List of authors and contributors
|
||||
List of authors and contributors.
|
||||
* CHANGES.txt
|
||||
Summary of changed between releases
|
||||
Summary of changed between releases.
|
||||
* COPYING.txt
|
||||
Copying license (The GNU General Public License)
|
||||
Copying license (The GNU General Public License).
|
||||
* INSTALL.txt
|
||||
Instructions for compiling/installing, when
|
||||
applicable
|
||||
applicable.
|
||||
* EXTENDING.html
|
||||
Detailed instructions on creating brushes, stamps and
|
||||
starters, and adding fonts, to extend Tux Paint.
|
||||
|
|
@ -920,10 +832,10 @@ Doing it Manually
|
|||
to use Tux Paint Config.
|
||||
* PNG.txt
|
||||
Notes on creating PNG format bitmapped images for use
|
||||
in Tux Paint
|
||||
in Tux Paint.
|
||||
* SVG.txt
|
||||
Notes on creating SVG format vector images for use in
|
||||
Tux Paint
|
||||
Tux Paint.
|
||||
|
||||
--------------------------------------------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ New Breed Software</p>
|
|||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
|
||||
|
||||
|
||||
<p>July 4, 2007</p>
|
||||
<p>August 2, 2007</p>
|
||||
|
||||
|
||||
</center>
|
||||
|
|
@ -90,7 +90,7 @@ New Breed Software</p>
|
|||
</blockquote>
|
||||
</blockquote>
|
||||
|
||||
<hr size=2 noshade><p>
|
||||
<hr size=2 noshade>
|
||||
|
||||
<h1>Available Options</h1>
|
||||
<blockquote>
|
||||
|
|
@ -215,7 +215,7 @@ New Breed Software</p>
|
|||
|
||||
<dt><code><b>printcfg=yes</b></code></dt>
|
||||
<dd>
|
||||
<p><i>(Windows only)</i></p>
|
||||
<p><i>(Windows and Mac OS X only)</i></p>
|
||||
|
||||
<p>Tux Paint will use a printer configuration file when printing.
|
||||
Push the <b>[Alt]</b> key while clicking the 'Print' button in
|
||||
|
|
@ -399,21 +399,80 @@ New Breed Software</p>
|
|||
|
||||
<dt><code><b>savedir=<i>DIRECTORY</i></b></code></dt>
|
||||
<dd>
|
||||
<p>Use this option to change where Tux Paint saves pictures.
|
||||
By default, this is "<code>~/.tuxpaint/saved/</code>" under Linux
|
||||
and Unix, and "<code>userdata\</code>" under Windows.</p>
|
||||
<p>Use this option to change where Tux Paint's "<code>saved</code>"
|
||||
directory/folder is located, which is where Tux Paint saves and opens
|
||||
pictures.</p>
|
||||
|
||||
<p>This can be useful in a Windows lab, where Tux Paint is
|
||||
installed on a server, and children run it from workstations.
|
||||
You can set <code>savedir</code> to be a folder in their home
|
||||
directory. (e.g., "<code>H:\tuxpaint\</code>")</p>
|
||||
<p>If you do not override it, the <b><i>default</i></b> location is:
|
||||
<ul>
|
||||
<li>Linux & Unix — Under a hidden directory named
|
||||
"<code>.tuxpaint</code>" in your home directory (aka "<code>~</code>"
|
||||
or "<code>$HOME</code>")<br>
|
||||
Example: "<code>/home/<i>username</i>/.tuxpaint/saved/</code>"<br>
|
||||
<br>
|
||||
|
||||
<li>Windows — Inside a folder named "<code>TuxPaint</code>"
|
||||
in your "<code>Application Data</code>" folder.<br>
|
||||
Example: "<code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\saved\</code>"<br>
|
||||
<br>
|
||||
|
||||
<li>Mac OS X — Inside a folder named "<code>TuxPaint</code>" in your
|
||||
"<code>Application Support</code>" folder.<br>
|
||||
Example: "<code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/saved/</code>"<br>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<p><b>Note:</b> When specifying a Windows drive (e.g.,
|
||||
"<code>H:\</code>"), you must also specify a subdirectory.</p>
|
||||
|
||||
<p><b>Note:</b> Prior to version 0.9.18, Tux Paint would also use
|
||||
the setting or default for "<code>savedir</code>" as the place to
|
||||
search for personal data files (brushes, stamps, starters and fonts).
|
||||
As of version 0.9.18, they may be specified separately
|
||||
(see the "<code>datadir</code>" option, below).</p>
|
||||
|
||||
<p><b>Example:</b> <code>savedir=Z:\tuxpaint\</code></p>
|
||||
</dd>
|
||||
|
||||
<dt><code><b>datadir=<i>DIRECTORY</i></b></code></dt>
|
||||
<dd>
|
||||
<p>Use this option to change where Tux Paint looks for personal
|
||||
data files (brushes, stamps, starters and fonts specific to the
|
||||
current user).</p>
|
||||
|
||||
<p>Tux Paint will search for subdirectories/subfolders named
|
||||
"<code>brushes</code>", "<code>stamps</code>", "<code>starters</code>"
|
||||
and "<code>fonts</code>" under the data directory.</p>
|
||||
|
||||
<p>If you do not override it, the <b><i>default</i></b> location is:
|
||||
<ul>
|
||||
<li>Linux & Unix — Under a hidden directory named
|
||||
"<code>.tuxpaint</code>" in your home directory (aka "<code>~</code>"
|
||||
or "<code>$HOME</code>")<br>
|
||||
Example: "<code>/home/<i>username</i>/.tuxpaint/brushes/</code>"<br>
|
||||
<br>
|
||||
|
||||
<li>Windows — Inside a folder named "<code>TuxPaint</code>"
|
||||
in your "<code>Application Data</code>" folder.<br>
|
||||
Example: "<code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code>"<br>
|
||||
<br>
|
||||
|
||||
<li>Mac OS X — Inside a folder named "<code>TuxPaint</code>" in your
|
||||
"<code>Application Support</code>" folder.<br>
|
||||
Example: "<code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code>"<br>
|
||||
</ul>
|
||||
</p>
|
||||
|
||||
<p><b>Note:</b> Prior to version 0.9.18, Tux Paint would use the
|
||||
same setting or default as for "<code>savedir</code>" to search for
|
||||
data files. As of version 0.9.18, they may be specified separately.</p>
|
||||
|
||||
<p><b>Note:</b> When specifying a Windows drive (e.g.,
|
||||
"<code>H:\</code>"), you must also specify a subdirectory.</p>
|
||||
|
||||
<p><b>Example:</b> <code>datadir=/home/johnny/tuxpaint-data/</code></p>
|
||||
</dd>
|
||||
|
||||
<dt><code><b>saveover=yes</b></code></dt>
|
||||
<dd>
|
||||
This disables the "<i>Save over the old version...?</i>" prompt when
|
||||
|
|
@ -445,12 +504,12 @@ New Breed Software</p>
|
|||
</dd>
|
||||
|
||||
<dt><code><b>autosave=yes</b></code></dt>
|
||||
<dt>
|
||||
<dd>
|
||||
This prevents Tux Paint from asking whether you want to save
|
||||
the current picture when quitting, and assumes you do.
|
||||
</dt>
|
||||
</dd>
|
||||
|
||||
<dt><code><b>startblank=yes</b></code</dt>
|
||||
<dt><code><b>startblank=yes</b></code></dt>
|
||||
<dd>
|
||||
This causes Tux Paint to display a blank canvas when it first
|
||||
starts up, rather than loading the last image that was being edited.
|
||||
|
|
@ -916,6 +975,8 @@ New Breed Software</p>
|
|||
--noprint<br>
|
||||
--printdelay=<i>SECONDS</i><br>
|
||||
--printcfg<br>
|
||||
--altprintnever<br>
|
||||
--altprintalways<br>
|
||||
--papersize=<i>PAPERSIZE</i><br>
|
||||
--simpleshapes<br>
|
||||
--uppercase<br>
|
||||
|
|
@ -932,11 +993,13 @@ New Breed Software</p>
|
|||
--mirrorstamps<br>
|
||||
--keyboard<br>
|
||||
--savedir <i>DIRECTORY</i><br>
|
||||
--datadir <i>DIRECTORY</i><br>
|
||||
--saveover<br>
|
||||
--saveovernew<br>
|
||||
--nosave<br>
|
||||
--autosave<br>
|
||||
--lang <i>LANGUAGE</i><br>
|
||||
--colorfile <i>FILE</i><br>
|
||||
</b></code></dt>
|
||||
<dd>
|
||||
These enable or correspond to the configuration file options
|
||||
|
|
@ -954,6 +1017,7 @@ New Breed Software</p>
|
|||
--print<br>
|
||||
--printdelay=0<br>
|
||||
--noprintcfg<br>
|
||||
--altprintmod<br>
|
||||
--complexshapes<br>
|
||||
--mixedcase<br>
|
||||
--dontgrab<br>
|
||||
|
|
@ -980,7 +1044,7 @@ New Breed Software</p>
|
|||
</dd>
|
||||
|
||||
|
||||
<dt><code><b><a name="locale">--locale locale</a></b></code></dt>
|
||||
<dt><code><b><a name="locale">--locale LOCALE</a></b></code></dt>
|
||||
<dd>
|
||||
<p>Run Tux Paint in one of the support languages.
|
||||
See the "<i><a href="#different_language">Choosing a Different
|
||||
|
|
@ -1652,40 +1716,47 @@ New Breed Software</p>
|
|||
|
||||
<h3><a name="special_fonts">Special Fonts</a></h3>
|
||||
<blockquote>
|
||||
Some languages require special fonts be installed. These font
|
||||
<p>Some languages require special fonts be installed. These font
|
||||
files (which are in TrueType format (TTF)), are much too large to
|
||||
include with the Tux Paint download, and are available
|
||||
separately. (See the table above, under the
|
||||
"<a href="#different_language"><i>Choosing a Different Language</i></a>"
|
||||
section.)<p>
|
||||
section.)</p>
|
||||
|
||||
When running Tux Paint in a language that requires its own font,
|
||||
<p><b>Note:</b> As of version 0.9.18, Tux Paint uses the "SDL_Pango"
|
||||
library, which utilizes the "Pango" library to render text in the user
|
||||
interface, rather than using "SDL_ttf" directly. Unless your copy of
|
||||
Tux Paint was built without Pango support, special fonts should
|
||||
<b><i>no longer be necessary</i></b>.</p>
|
||||
|
||||
<p>When running Tux Paint in a language that requires its own font,
|
||||
Tux Paint will try to load the font file from its system-wide
|
||||
"<code><b>fonts</b></code>" directory (under a
|
||||
"<code><b>locale</b></code>" subdirectory). The name of the file
|
||||
corresponds to the first two letters in the 'locale' code of the
|
||||
language (e.g., "ko" for Korean, "ja" for Japanese,
|
||||
"zh_tw" for Traditional Chinese).<p>
|
||||
"zh_tw" for Traditional Chinese).</p>
|
||||
|
||||
For example, under Linux or Unix, when Tux Paint is run in Korean
|
||||
<p>For example, under Linux or Unix, when Tux Paint is run in Korean
|
||||
(e.g., with the option "<code>--lang korean</code>"),
|
||||
Tux Paint will attempt to load the following font file:<p>
|
||||
Tux Paint will attempt to load the following font file:</p>
|
||||
|
||||
<blockquote>
|
||||
<code>/usr/share/tuxpaint/fonts/locale/<b>ko.ttf</b></code>
|
||||
</blockquote><p>
|
||||
<p><code>/usr/share/tuxpaint/fonts/locale/<b>ko.ttf</b></code></p>
|
||||
</blockquote>
|
||||
|
||||
You can download fonts for supported languages from Tux Paint's
|
||||
<p>You can download fonts for supported languages from Tux Paint's
|
||||
website,
|
||||
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>.
|
||||
(Look in the 'Fonts' section under 'Download.')<p>
|
||||
(Look in the 'Fonts' section under 'Download.')</p>
|
||||
|
||||
Under Unix and Linux, you can use the <code>Makefile</code> that comes
|
||||
with the font to install the font in the appropriate location.<p>
|
||||
<p>Under Unix and Linux, you can use the <code>Makefile</code> that comes
|
||||
with the font to install the font in the appropriate location.</p>
|
||||
</blockquote>
|
||||
|
||||
</blockquote>
|
||||
|
||||
<hr noshade>
|
||||
|
||||
</body></html>
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ New Breed Software</p>
|
|||
|
||||
<p>June 14, 2002 -
|
||||
|
||||
June 27, 2007</p>
|
||||
August 2, 2007</p>
|
||||
|
||||
</center>
|
||||
|
||||
|
|
@ -456,118 +456,14 @@ New Breed Software</p>
|
|||
<img src="images/tool_magic.png" width=48 height=48 alt="" align=right>
|
||||
|
||||
<p>The 'Magic' tool is actually a set of special tools. Select one of
|
||||
the "magic" effects from the selector on the right, and then
|
||||
click and drag around the picture to apply the effect.</p>
|
||||
the "magic" effects from the selector on the right. Then, depending
|
||||
on the tool, either click and drag around the picture, or simply
|
||||
click the picture once, to apply the effect.</p>
|
||||
|
||||
<br clear=all>
|
||||
|
||||
<dl>
|
||||
<dt><b>Fill</b></dt>
|
||||
<dd>
|
||||
This floods the picture with a color. It lets you quickly
|
||||
fill parts of the picture, as if it were a coloring book.
|
||||
</dd>
|
||||
|
||||
<dt><b>Grass</b></dt>
|
||||
<dd>
|
||||
This paints grass on the image. The higher up the canvas,
|
||||
the smaller the grass is drawn, giving an illusion of perspective.
|
||||
The grass can be tinted various greenish hues by selecting
|
||||
different colors in the color palette.
|
||||
</dd>
|
||||
|
||||
<dt><b>Bricks</b> (Large and Small)</dt>
|
||||
<dd>
|
||||
These two tools intelligently paint large and small brick
|
||||
patterns on the canvas. The bricks can be tinted various redish
|
||||
hues by selecting different colors in the color palette.
|
||||
</dd>
|
||||
|
||||
<dt><b>Rainbow</b></dt>
|
||||
<dd>
|
||||
This is similar to the paint brush, but as you move the mouse
|
||||
around, it cycles through a spectrum of bright colors.
|
||||
</dd>
|
||||
|
||||
<dt><b>Sparkles</b></dt>
|
||||
<dd>
|
||||
This draws glowing sparkles on the canvas, in the currently-selected
|
||||
color.
|
||||
</dd>
|
||||
|
||||
<dt><b>Blur</b></dt>
|
||||
<dd>
|
||||
This makes the picture fuzzy wherever you drag the mouse.
|
||||
</dd>
|
||||
|
||||
<dt><b>Smudge</b></dt>
|
||||
<dd>
|
||||
This pushes the colors around under the mouse, like finger painting
|
||||
with wet paint.
|
||||
</dd>
|
||||
|
||||
<dt><b>Lighten</b></dt>
|
||||
<dd>
|
||||
This fades the colors wherever you drag the mouse.
|
||||
(Do it to the same spot many times, and it will eventually become
|
||||
white.)
|
||||
</dd>
|
||||
|
||||
<dt><b>Darken</b></dt>
|
||||
<dd>
|
||||
This dakrens the colors wherever you drag the mouse.
|
||||
(Do it to the same spot many times, and it will eventually become
|
||||
black.)
|
||||
</dd>
|
||||
|
||||
<dt><b>Chalk</b></dt>
|
||||
<dd>
|
||||
This makes parts of the picture (where you move the mouse)
|
||||
look like a chalk drawing.
|
||||
</dd>
|
||||
|
||||
<dt><b>Blocks</b></dt>
|
||||
<dd>
|
||||
This makes the picture blocky looking ("pixelated") wherever
|
||||
you drag the mouse.
|
||||
</dd>
|
||||
|
||||
<dt><b>Negative</b></dt>
|
||||
<dd>
|
||||
This inverts the colors wherever you drag the mouse.
|
||||
(e.g., white becomes black, and vice versa.)
|
||||
</dd>
|
||||
|
||||
<dt><b>Tint</b></dt>
|
||||
<dd>
|
||||
This changes the parts of the picture to the selected color.
|
||||
</dd>
|
||||
|
||||
<dt><b>Drip</b></dt>
|
||||
<dd>
|
||||
This makes the paint "drip" wherever you move the mouse.
|
||||
</dd>
|
||||
|
||||
<dt><b>Cartoon</b></dt>
|
||||
<dd>
|
||||
This makes the picture look like a cartoon — with thick
|
||||
outlines and bright, solid colors — wherever you move the mouse.
|
||||
</dd>
|
||||
|
||||
<dt><b>Mirror</b></dt>
|
||||
<dd>
|
||||
When you click the mouse in your picture with the "Mirror"
|
||||
magic effect selected, the entire image will be reversed,
|
||||
turning it into a mirror image.
|
||||
</dd>
|
||||
|
||||
<dt><b>Flip</b></dt>
|
||||
<dd>
|
||||
Similar to "Mirror." Click and the entire image will be turned
|
||||
upside-down.
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
<p>Each 'Magic' tool's instructions are contained within the
|
||||
"<a href="../magic-docs/html/">magic-docs</a>" folder.</p>
|
||||
|
||||
<hr size=1>
|
||||
</dd>
|
||||
|
|
@ -1120,17 +1016,21 @@ New Breed Software</p>
|
|||
folder/directory) include:
|
||||
|
||||
<ul>
|
||||
<li><a href="../magic-docs/html/">"Magic" Tool Documentation
|
||||
("magic-docs")</a><br>
|
||||
Documentation for each of the currently-installed "Magic" tools.
|
||||
|
||||
<li><a href="../AUTHORS.txt">AUTHORS.txt</a><br>
|
||||
List of authors and contributors
|
||||
List of authors and contributors.
|
||||
|
||||
<li><a href="../CHANGES.txt">CHANGES.txt</a><br>
|
||||
Summary of changed between releases
|
||||
Summary of changed between releases.
|
||||
|
||||
<li><a href="../COPYING.txt">COPYING.txt</a><br>
|
||||
Copying license (The GNU General Public License)
|
||||
Copying license (The GNU General Public License).
|
||||
|
||||
<li><a href="../INSTALL.txt">INSTALL.txt</a><br>
|
||||
Instructions for compiling/installing, when applicable
|
||||
Instructions for compiling/installing, when applicable.
|
||||
|
||||
<li><a href="EXTENDING.html">EXTENDING.html</a><br>
|
||||
Detailed instructions on creating brushes, stamps and starters,
|
||||
|
|
@ -1141,10 +1041,10 @@ New Breed Software</p>
|
|||
for those who don't want to use Tux Paint Config.
|
||||
|
||||
<li><a href="../PNG.txt">PNG.txt</a><br>
|
||||
Notes on creating PNG format bitmapped images for use in Tux Paint
|
||||
Notes on creating PNG format bitmapped images for use in Tux Paint.
|
||||
|
||||
<li><a href="../SVG.txt">SVG.txt</a><br>
|
||||
Notes on creating SVG format vector images for use in Tux Paint
|
||||
Notes on creating SVG format vector images for use in Tux Paint.
|
||||
|
||||
</ul>
|
||||
</blockquote>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue