Sync MAGIC-API; sync OPTIONS for "nomagicsizes"
This commit is contained in:
parent
7bdb19ff0f
commit
9b74f2a25e
20 changed files with 124 additions and 10 deletions
|
|
@ -191,7 +191,7 @@ Magic Tool Plugin API Documentation
|
||||||
features relevant to Magic tools which have been disabled in this
|
features relevant to Magic tools which have been disabled in this
|
||||||
session. Test using the C bitwise 'and' operator, '&'. The
|
session. Test using the C bitwise 'and' operator, '&'. The
|
||||||
features are defined in tp_magic_api.h:
|
features are defined in tp_magic_api.h:
|
||||||
* MAGIC_FEATURE_SIZE: Magic tool size (Magic tool size)
|
* MAGIC_FEATURE_SIZE: Magic tool size (--nomagicsizes)
|
||||||
Your Magic tool(s) may wish to react differently depending on
|
Your Magic tool(s) may wish to react differently depending on
|
||||||
whether one or more features have been disabled. (For example, the
|
whether one or more features have been disabled. (For example, the
|
||||||
"Brick" Magic tool always offered two tool variations: large and
|
"Brick" Magic tool always offered two tool variations: large and
|
||||||
|
|
|
||||||
|
|
@ -435,6 +435,18 @@ Simplification
|
||||||
"nomagiccontrols=no" or "magiccontrols=yes". In both cases, may be
|
"nomagiccontrols=no" or "magiccontrols=yes". In both cases, may be
|
||||||
overridden by the command-line option "--magiccontrols".
|
overridden by the command-line option "--magiccontrols".
|
||||||
|
|
||||||
|
nomagicsizes=yes
|
||||||
|
|
||||||
|
Some Magic tools offer various size settings. This option disables
|
||||||
|
the sizing control, and only provides the tools' default sizes.
|
||||||
|
(Some plugins may offer additional variations of a Magic tool, to
|
||||||
|
make a few sizes possible, e.g. "Bricks" and "Googly Eyes".
|
||||||
|
|
||||||
|
⚙ Note: If used in a system-wide configuration file, may be
|
||||||
|
overridden by the user's configuration file using
|
||||||
|
"nomagicsizes=no" or "magicsizes=yes". In both cases, may be
|
||||||
|
overridden by the command-line option "--magicsizes".
|
||||||
|
|
||||||
noshapecontrols=yes
|
noshapecontrols=yes
|
||||||
|
|
||||||
Disable the control buttons shown when using the Shapes tool that
|
Disable the control buttons shown when using the Shapes tool that
|
||||||
|
|
|
||||||
|
|
@ -290,7 +290,7 @@
|
||||||
<p>
|
<p>
|
||||||
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
||||||
<li>
|
<li>
|
||||||
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (Magic tool size) </li>
|
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (<code>--nomagicsizes</code>) </li>
|
||||||
</ul>
|
</ul>
|
||||||
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
||||||
|
|
@ -665,6 +665,17 @@
|
||||||
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
|
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nomagicsizes=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Some <b>Magic</b> tools offer various size settings. This option disables the sizing control, and only provides the tools' default sizes. (Some plugins may offer additional variations of a Magic tool, to make a few sizes possible, e.g. "Bricks" and "Googly Eyes". </p>
|
||||||
|
<p class="note">
|
||||||
|
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagicsizes=no</code>" or "<code>magicsizes=yes</code>". In both cases, may be overridden by the command-line option "<code>--magicsizes</code>". </p>
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
<code><b>noshapecontrols=yes</b></code>
|
<code><b>noshapecontrols=yes</b></code>
|
||||||
</dt>
|
</dt>
|
||||||
|
|
|
||||||
|
|
@ -191,7 +191,7 @@ Magic Tool Plugin API Documentation
|
||||||
features relevant to Magic tools which have been disabled in this
|
features relevant to Magic tools which have been disabled in this
|
||||||
session. Test using the C bitwise 'and' operator, '&'. The
|
session. Test using the C bitwise 'and' operator, '&'. The
|
||||||
features are defined in tp_magic_api.h:
|
features are defined in tp_magic_api.h:
|
||||||
* MAGIC_FEATURE_SIZE: Magic tool size (Magic tool size)
|
* MAGIC_FEATURE_SIZE: Magic tool size (--nomagicsizes)
|
||||||
Your Magic tool(s) may wish to react differently depending on
|
Your Magic tool(s) may wish to react differently depending on
|
||||||
whether one or more features have been disabled. (For example, the
|
whether one or more features have been disabled. (For example, the
|
||||||
"Brick" Magic tool always offered two tool variations: large and
|
"Brick" Magic tool always offered two tool variations: large and
|
||||||
|
|
|
||||||
|
|
@ -435,6 +435,18 @@ Simplification
|
||||||
"nomagiccontrols=no" or "magiccontrols=yes". In both cases, may be
|
"nomagiccontrols=no" or "magiccontrols=yes". In both cases, may be
|
||||||
overridden by the command-line option "--magiccontrols".
|
overridden by the command-line option "--magiccontrols".
|
||||||
|
|
||||||
|
nomagicsizes=yes
|
||||||
|
|
||||||
|
Some Magic tools offer various size settings. This option disables
|
||||||
|
the sizing control, and only provides the tools' default sizes.
|
||||||
|
(Some plugins may offer additional variations of a Magic tool, to
|
||||||
|
make a few sizes possible, e.g. "Bricks" and "Googly Eyes".
|
||||||
|
|
||||||
|
⚙ Note: If used in a system-wide configuration file, may be
|
||||||
|
overridden by the user's configuration file using
|
||||||
|
"nomagicsizes=no" or "magicsizes=yes". In both cases, may be
|
||||||
|
overridden by the command-line option "--magicsizes".
|
||||||
|
|
||||||
noshapecontrols=yes
|
noshapecontrols=yes
|
||||||
|
|
||||||
Disable the control buttons shown when using the Shapes tool that
|
Disable the control buttons shown when using the Shapes tool that
|
||||||
|
|
|
||||||
|
|
@ -290,7 +290,7 @@
|
||||||
<p>
|
<p>
|
||||||
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
||||||
<li>
|
<li>
|
||||||
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (Magic tool size) </li>
|
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (<code>--nomagicsizes</code>) </li>
|
||||||
</ul>
|
</ul>
|
||||||
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
||||||
|
|
@ -665,6 +665,17 @@
|
||||||
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
|
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nomagicsizes=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Some <b>Magic</b> tools offer various size settings. This option disables the sizing control, and only provides the tools' default sizes. (Some plugins may offer additional variations of a Magic tool, to make a few sizes possible, e.g. "Bricks" and "Googly Eyes". </p>
|
||||||
|
<p class="note">
|
||||||
|
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagicsizes=no</code>" or "<code>magicsizes=yes</code>". In both cases, may be overridden by the command-line option "<code>--magicsizes</code>". </p>
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
<code><b>noshapecontrols=yes</b></code>
|
<code><b>noshapecontrols=yes</b></code>
|
||||||
</dt>
|
</dt>
|
||||||
|
|
|
||||||
|
|
@ -191,7 +191,7 @@ Magic Tool Plugin API Documentation
|
||||||
features relevant to Magic tools which have been disabled in this
|
features relevant to Magic tools which have been disabled in this
|
||||||
session. Test using the C bitwise 'and' operator, '&'. The
|
session. Test using the C bitwise 'and' operator, '&'. The
|
||||||
features are defined in tp_magic_api.h:
|
features are defined in tp_magic_api.h:
|
||||||
* MAGIC_FEATURE_SIZE: Magic tool size (Magic tool size)
|
* MAGIC_FEATURE_SIZE: Magic tool size (--nomagicsizes)
|
||||||
Your Magic tool(s) may wish to react differently depending on
|
Your Magic tool(s) may wish to react differently depending on
|
||||||
whether one or more features have been disabled. (For example, the
|
whether one or more features have been disabled. (For example, the
|
||||||
"Brick" Magic tool always offered two tool variations: large and
|
"Brick" Magic tool always offered two tool variations: large and
|
||||||
|
|
|
||||||
|
|
@ -454,6 +454,18 @@ Simplification
|
||||||
"nomagiccontrols=no" or "magiccontrols=yes". In both cases, may be
|
"nomagiccontrols=no" or "magiccontrols=yes". In both cases, may be
|
||||||
overridden by the command-line option "--magiccontrols".
|
overridden by the command-line option "--magiccontrols".
|
||||||
|
|
||||||
|
nomagicsizes=yes
|
||||||
|
|
||||||
|
Some Magic tools offer various size settings. This option disables
|
||||||
|
the sizing control, and only provides the tools' default sizes.
|
||||||
|
(Some plugins may offer additional variations of a Magic tool, to
|
||||||
|
make a few sizes possible, e.g. "Bricks" and "Googly Eyes".
|
||||||
|
|
||||||
|
⚙ Note: If used in a system-wide configuration file, may be
|
||||||
|
overridden by the user's configuration file using
|
||||||
|
"nomagicsizes=no" or "magicsizes=yes". In both cases, may be
|
||||||
|
overridden by the command-line option "--magicsizes".
|
||||||
|
|
||||||
noshapecontrols=yes
|
noshapecontrols=yes
|
||||||
|
|
||||||
Désactive les boutons de contrôle affichés lors de l'utilisation
|
Désactive les boutons de contrôle affichés lors de l'utilisation
|
||||||
|
|
|
||||||
|
|
@ -290,7 +290,7 @@
|
||||||
<p>
|
<p>
|
||||||
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
||||||
<li>
|
<li>
|
||||||
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (Magic tool size) </li>
|
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (<code>--nomagicsizes</code>) </li>
|
||||||
</ul>
|
</ul>
|
||||||
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
||||||
|
|
@ -665,6 +665,17 @@
|
||||||
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
|
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nomagicsizes=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Some <b>Magic</b> tools offer various size settings. This option disables the sizing control, and only provides the tools' default sizes. (Some plugins may offer additional variations of a Magic tool, to make a few sizes possible, e.g. "Bricks" and "Googly Eyes". </p>
|
||||||
|
<p class="note">
|
||||||
|
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagicsizes=no</code>" or "<code>magicsizes=yes</code>". In both cases, may be overridden by the command-line option "<code>--magicsizes</code>". </p>
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
<code><b>noshapecontrols=yes</b></code>
|
<code><b>noshapecontrols=yes</b></code>
|
||||||
</dt>
|
</dt>
|
||||||
|
|
|
||||||
|
|
@ -191,7 +191,7 @@ Magic Tool Plugin API Documentation
|
||||||
features relevant to Magic tools which have been disabled in this
|
features relevant to Magic tools which have been disabled in this
|
||||||
session. Test using the C bitwise 'and' operator, '&'. The
|
session. Test using the C bitwise 'and' operator, '&'. The
|
||||||
features are defined in tp_magic_api.h:
|
features are defined in tp_magic_api.h:
|
||||||
* MAGIC_FEATURE_SIZE: Magic tool size (Magic tool size)
|
* MAGIC_FEATURE_SIZE: Magic tool size (--nomagicsizes)
|
||||||
Your Magic tool(s) may wish to react differently depending on
|
Your Magic tool(s) may wish to react differently depending on
|
||||||
whether one or more features have been disabled. (For example, the
|
whether one or more features have been disabled. (For example, the
|
||||||
"Brick" Magic tool always offered two tool variations: large and
|
"Brick" Magic tool always offered two tool variations: large and
|
||||||
|
|
|
||||||
|
|
@ -447,6 +447,18 @@ Simplificación
|
||||||
"nomagiccontrols=no" or "magiccontrols=yes". In both cases, may be
|
"nomagiccontrols=no" or "magiccontrols=yes". In both cases, may be
|
||||||
overridden by the command-line option "--magiccontrols".
|
overridden by the command-line option "--magiccontrols".
|
||||||
|
|
||||||
|
nomagicsizes=yes
|
||||||
|
|
||||||
|
Some Magic tools offer various size settings. This option disables
|
||||||
|
the sizing control, and only provides the tools' default sizes.
|
||||||
|
(Some plugins may offer additional variations of a Magic tool, to
|
||||||
|
make a few sizes possible, e.g. "Bricks" and "Googly Eyes".
|
||||||
|
|
||||||
|
⚙ Note: If used in a system-wide configuration file, may be
|
||||||
|
overridden by the user's configuration file using
|
||||||
|
"nomagicsizes=no" or "magicsizes=yes". In both cases, may be
|
||||||
|
overridden by the command-line option "--magicsizes".
|
||||||
|
|
||||||
noshapecontrols=yes
|
noshapecontrols=yes
|
||||||
|
|
||||||
Desactivar os botóns de control que se amosan cando se usa a
|
Desactivar os botóns de control que se amosan cando se usa a
|
||||||
|
|
|
||||||
|
|
@ -290,7 +290,7 @@
|
||||||
<p>
|
<p>
|
||||||
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
||||||
<li>
|
<li>
|
||||||
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (Magic tool size) </li>
|
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (<code>--nomagicsizes</code>) </li>
|
||||||
</ul>
|
</ul>
|
||||||
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
||||||
|
|
@ -665,6 +665,17 @@
|
||||||
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
|
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagiccontrols=no</code>" or "<code>magiccontrols=yes</code>". In both cases, may be overridden by the command-line option "<code>--magiccontrols</code>". </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nomagicsizes=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Some <b>Magic</b> tools offer various size settings. This option disables the sizing control, and only provides the tools' default sizes. (Some plugins may offer additional variations of a Magic tool, to make a few sizes possible, e.g. "Bricks" and "Googly Eyes". </p>
|
||||||
|
<p class="note">
|
||||||
|
<span title="Configuration option">⚙</span> <strong>Note:</strong> If used in a system-wide configuration file, may be overridden by the user's configuration file using "<code>nomagicsizes=no</code>" or "<code>magicsizes=yes</code>". In both cases, may be overridden by the command-line option "<code>--magicsizes</code>". </p>
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
<code><b>noshapecontrols=yes</b></code>
|
<code><b>noshapecontrols=yes</b></code>
|
||||||
</dt>
|
</dt>
|
||||||
|
|
|
||||||
|
|
@ -191,7 +191,7 @@ Magic Tool Plugin API Documentation
|
||||||
features relevant to Magic tools which have been disabled in this
|
features relevant to Magic tools which have been disabled in this
|
||||||
session. Test using the C bitwise 'and' operator, '&'. The
|
session. Test using the C bitwise 'and' operator, '&'. The
|
||||||
features are defined in tp_magic_api.h:
|
features are defined in tp_magic_api.h:
|
||||||
* MAGIC_FEATURE_SIZE: Magic tool size (Magic tool size)
|
* MAGIC_FEATURE_SIZE: Magic tool size (--nomagicsizes)
|
||||||
Your Magic tool(s) may wish to react differently depending on
|
Your Magic tool(s) may wish to react differently depending on
|
||||||
whether one or more features have been disabled. (For example, the
|
whether one or more features have been disabled. (For example, the
|
||||||
"Brick" Magic tool always offered two tool variations: large and
|
"Brick" Magic tool always offered two tool variations: large and
|
||||||
|
|
|
||||||
|
|
@ -350,6 +350,17 @@ Windows のユーザー
|
||||||
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "--magiccontrols"
|
を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "--magiccontrols"
|
||||||
で変更できます。
|
で変更できます。
|
||||||
|
|
||||||
|
nomagicsizes=yes
|
||||||
|
|
||||||
|
Some Magic tools offer various size settings. This option disables
|
||||||
|
the sizing control, and only provides the tools' default sizes.
|
||||||
|
(Some plugins may offer additional variations of a Magic tool, to
|
||||||
|
make a few sizes possible, e.g. "Bricks" and "Googly Eyes".
|
||||||
|
|
||||||
|
⚙ 注: システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "nomagicsizes=no" または
|
||||||
|
"magicsizes=yes" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの
|
||||||
|
"--magicsizes" で変更できます。
|
||||||
|
|
||||||
noshapecontrols=yes
|
noshapecontrols=yes
|
||||||
|
|
||||||
「かたち」ツールでの2つの動作モード-マウスをクリックした箇所を中心として図形を拡大するか、マウスをクリックした箇所をコーナーとして図形を拡大するか-を選択するボタンを無効にします。
|
「かたち」ツールでの2つの動作モード-マウスをクリックした箇所を中心として図形を拡大するか、マウスをクリックした箇所をコーナーとして図形を拡大するか-を選択するボタンを無効にします。
|
||||||
|
|
|
||||||
|
|
@ -290,7 +290,7 @@
|
||||||
<p>
|
<p>
|
||||||
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
The <code>disabled_features</code> value contains bits set for any Tux Paint features relevant to Magic tools which have been disabled in this session. Test using the C bitwise 'and' operator, '<code>&</code>'. The features are defined in <code>tp_magic_api.h</code>: <ul>
|
||||||
<li>
|
<li>
|
||||||
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (Magic tool size) </li>
|
<code>MAGIC_FEATURE_SIZE</code>: Magic tool size (<code>--nomagicsizes</code>) </li>
|
||||||
</ul>
|
</ul>
|
||||||
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
Your Magic tool(s) may wish to react differently depending on whether one or more features have been disabled. (For example, the "Brick" Magic tool always offered two tool variations: large and small. With the addition of the size feature, only one tool is necessary. However, with the size option disabled, the plugin is able to revert back to providing two separate tools.) </p>
|
||||||
<p>
|
<p>
|
||||||
|
|
|
||||||
|
|
@ -665,6 +665,17 @@
|
||||||
<span title="Configuration option">⚙</span> <strong>注:</strong> システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nomagiccontrols=no</code>" または "<code>magiccontrols=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--magiccontrols</code>" で変更できます。 </p>
|
<span title="Configuration option">⚙</span> <strong>注:</strong> システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nomagiccontrols=no</code>" または "<code>magiccontrols=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--magiccontrols</code>" で変更できます。 </p>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
|
<dt>
|
||||||
|
<code><b>nomagicsizes=yes</b></code>
|
||||||
|
</dt>
|
||||||
|
|
||||||
|
<dd>
|
||||||
|
<p>
|
||||||
|
Some <b>Magic</b> tools offer various size settings. This option disables the sizing control, and only provides the tools' default sizes. (Some plugins may offer additional variations of a Magic tool, to make a few sizes possible, e.g. "Bricks" and "Googly Eyes". </p>
|
||||||
|
<p class="note">
|
||||||
|
<span title="Configuration option">⚙</span> <strong>注:</strong> システム全体の設定ファイルで設定されている場合は、ユーザーの設定ファイルで "<code>nomagicsizes=no</code>" または "<code>magicsizes=yes</code>" を設定すると上書きされることがあります。また、どちらの設定も、コマンドラインオプションの "<code>--magicsizes</code>" で変更できます。 </p>
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt>
|
<dt>
|
||||||
<code><b>noshapecontrols=yes</b></code>
|
<code><b>noshapecontrols=yes</b></code>
|
||||||
</dt>
|
</dt>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue