~ubuntu-branches/ubuntu/maverick/grafx2/maverick

« back to all changes in this revision

Viewing changes to helpfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Gürkan Sengün
  • Date: 2010-03-22 12:07:47 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100322120747-g0jel6vf6mjkc53s
Tags: 2.2-1
* New upstream version, fixes FTBFS with binutils-gold. (Closes: #554742)
* Bump standards version to 3.8.4.
* debian/control: Add liblua5.1-0-dev and pkg-config to build depends.
* debian/rules: Drop dh_desktop call.
* debian/copyright: Update years.
* Switch to dpkg-source format version 3.0 (quilt).
* debian/watch: Added.
* Added patch to fix spelling errors in source code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  Grafx2 - The Ultimate 256-color bitmap paint program
2
 
 
3
 
    Copyright 2008 Yves Rizoud
4
 
    Copyright 2009 Franck Charlet
5
 
    Copyright 1996-2001 Sunset Design (Guillaume Dorme & Karl Maritaud)
6
 
 
7
 
    Grafx2 is free software; you can redistribute it and/or
8
 
    modify it under the terms of the GNU General Public License
9
 
    as published by the Free Software Foundation; version 2
10
 
    of the License.
11
 
 
12
 
    Grafx2 is distributed in the hope that it will be useful,
13
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
    GNU General Public License for more details.
16
 
 
17
 
    You should have received a copy of the GNU General Public License
18
 
    along with Grafx2; if not, see <http://www.gnu.org/licenses/>
19
 
*/
20
 
 
21
 
//////////////////////////////////////////////////////////////////////////////
22
 
///@file helpfile.h
23
 
/// This is all the text that appears in contextual help and credits.
24
 
///
25
 
/// Note: The source code is kept on a public website, so keep this in mind
26
 
/// if you're thinking of putting an e-mail address in there. At least, use
27
 
/// "\100" instead of @, to help against the most basic email address harvesters.
28
 
//////////////////////////////////////////////////////////////////////////////
29
 
 
30
 
#include "const.h" // Uses enumerations BUTTON_NUMBERS and SPECIAL_ACTIONS
31
 
 
32
 
// Some magic formulas:
33
 
 
34
 
#define HELP_TEXT(x) {'N', x, 0},
35
 
// Generates a 'N' line (Normal)
36
 
 
37
 
#define HELP_LINK(x,y) {'K', x, y},
38
 
// Generates a 'K' line (Key)
39
 
 
40
 
#define HELP_BOLD(x) {'S', x, 0},
41
 
// Generates a 'S' line (BOLD)
42
 
 
43
 
#define HELP_TITLE(x) {'T', x, 0}, {'-', x, 0},
44
 
// Generates a 'T' line (Title, upper half)
45
 
// and a second '-' line (Title, lower half),  with the same text.
46
 
 
47
 
static const T_Help_table helptable_about[] =
48
 
/*
49
 
  Do not exceed 44 characters for normal lines:
50
 
  HELP_TEXT ("--------------------------------------------")
51
 
  Do not exceed 22 characters for title lines:
52
 
  HELP_TITLE("======================")
53
 
*/
54
 
{
55
 
  HELP_TEXT ("") // Leave enough room for a hard-coded logo, eventually.
56
 
  HELP_TEXT ("")
57
 
  HELP_TEXT ("")
58
 
  HELP_TEXT ("")
59
 
  HELP_TITLE("        GRAFX 2   ")
60
 
  HELP_BOLD ("           \"Summer Sunset\" Edition")
61
 
  HELP_BOLD ("  THE ULTIMATE MULTI-RESOLUTION GFX EDITOR")
62
 
  HELP_TEXT ("       http://grafx2.googlecode.com")
63
 
  HELP_TEXT ("")
64
 
  HELP_TEXT ("  Copyright 2007 by the Grafx2 project team")
65
 
  HELP_TEXT ("    Copyright 1996-2001 by SUNSET DESIGN")
66
 
};
67
 
static const T_Help_table helptable_licence[] =
68
 
{
69
 
  HELP_TITLE("       LICENSE")
70
 
  HELP_TEXT ("")
71
 
  HELP_TEXT ("Grafx2 is FREE SOFTWARE, you can")
72
 
  HELP_TEXT ("redistribute it and/or modify it under the")
73
 
  HELP_TEXT ("terms of the GNU General Public License as")
74
 
  HELP_TEXT ("published by the Free Software Foundation;")
75
 
  HELP_TEXT ("version 2 of the License.")
76
 
  HELP_TEXT ("")
77
 
  HELP_TEXT ("Grafx2 is distributed in the hope that it")
78
 
  HELP_TEXT ("will be useful, but WITHOUT ANY WARRANTY;")
79
 
  HELP_TEXT ("without even the implied warranty of")
80
 
  HELP_TEXT ("MERCHANTABILITY or FITNESS FOR A PARTICULAR")
81
 
  HELP_TEXT ("PURPOSE.  See the GNU General Public License")
82
 
  HELP_TEXT ("for more details.")
83
 
  HELP_TEXT ("")
84
 
  HELP_TEXT ("You should have received a copy of the GNU")
85
 
  HELP_TEXT ("General Public License along with Grafx2;")
86
 
  HELP_TEXT ("if not, see http://www.gnu.org/licenses/ or")
87
 
  HELP_TEXT ("write to the Free Software Foundation, Inc.")
88
 
  HELP_TEXT (" 59 Temple Place - Suite 330, Boston,")
89
 
  HELP_TEXT (" MA  02111-1307, USA.")
90
 
 
91
 
};
92
 
static const T_Help_table helptable_help[] =
93
 
{
94
 
  HELP_TITLE("         HELP")
95
 
  HELP_TEXT ("")
96
 
  HELP_TEXT ("  Contextual help is available by pressing")
97
 
  HELP_LINK ("  the %s key",0x100+BUTTON_HELP)
98
 
  HELP_TEXT ("  You can do it while hovering a menu icon,")
99
 
  HELP_TEXT ("  or while a window is open.")
100
 
  HELP_TEXT ("  When a keyboard shortcut is displayed it's")
101
 
  HELP_TEXT ("  your current configuration and you can")
102
 
  HELP_TEXT ("  change it by clicking it.")
103
 
  HELP_TEXT ("")
104
 
  HELP_TITLE("  KEYBOARD SHORTCUTS")
105
 
  HELP_TEXT ("")
106
 
  HELP_TEXT ("Scroll visible area")
107
 
  HELP_LINK ("  up:                %s",   SPECIAL_SCROLL_UP)
108
 
  HELP_LINK ("  down:              %s",   SPECIAL_SCROLL_DOWN)
109
 
  HELP_LINK ("  left:              %s",   SPECIAL_SCROLL_LEFT)
110
 
  HELP_LINK ("  right:             %s",   SPECIAL_SCROLL_RIGHT)
111
 
  HELP_LINK ("  up faster:         %s",   SPECIAL_SCROLL_UP_FAST)
112
 
  HELP_LINK ("  down faster:       %s",   SPECIAL_SCROLL_DOWN_FAST)
113
 
  HELP_LINK ("  left faster:       %s",   SPECIAL_SCROLL_LEFT_FAST)
114
 
  HELP_LINK ("  right faster:      %s",   SPECIAL_SCROLL_RIGHT_FAST)
115
 
  HELP_LINK ("  up slower:         %s",   SPECIAL_SCROLL_UP_SLOW)
116
 
  HELP_LINK ("  down slower:       %s",   SPECIAL_SCROLL_DOWN_SLOW)
117
 
  HELP_LINK ("  left slower:       %s",   SPECIAL_SCROLL_LEFT_SLOW)
118
 
  HELP_LINK ("  right slower:      %s",   SPECIAL_SCROLL_RIGHT_SLOW)
119
 
  HELP_TEXT ("Emulate mouse")
120
 
  HELP_LINK ("  Up:                %s",   SPECIAL_MOUSE_UP)
121
 
  HELP_LINK ("  Down:              %s",   SPECIAL_MOUSE_DOWN)
122
 
  HELP_LINK ("  Left:              %s",   SPECIAL_MOUSE_LEFT)
123
 
  HELP_LINK ("  Right:             %s",   SPECIAL_MOUSE_RIGHT)
124
 
  HELP_LINK ("  Left click:        %s",   SPECIAL_CLICK_LEFT)
125
 
  HELP_LINK ("  Right click:       %s",   SPECIAL_CLICK_RIGHT)
126
 
  HELP_LINK ("Show / Hide menu:    %s",   0x100+BUTTON_HIDE)
127
 
  HELP_LINK ("Show / Hide cursor:  %s",   SPECIAL_SHOW_HIDE_CURSOR)
128
 
  HELP_LINK ("Paintbrush = \".\":    %s",   SPECIAL_DOT_PAINTBRUSH)
129
 
  HELP_LINK ("Paintbrush choice:   %s",   0x100+BUTTON_PAINTBRUSHES)
130
 
  HELP_LINK ("Monochrome brush:    %s",   0x200+BUTTON_PAINTBRUSHES)
131
 
  HELP_LINK ("Freehand drawing:    %s",   0x100+BUTTON_DRAW)
132
 
  HELP_TEXT ("Switch freehand")
133
 
  HELP_LINK ("  drawing mode:      %s",   0x200+BUTTON_DRAW)
134
 
  HELP_TEXT ("Continuous freehand")
135
 
  HELP_LINK ("  drawing:           %s",   SPECIAL_CONTINUOUS_DRAW)
136
 
  HELP_LINK ("Line:                %s",   0x100+BUTTON_LINES)
137
 
  HELP_LINK ("Knotted lines:       %s",   0x200+BUTTON_LINES)
138
 
  HELP_LINK ("Spray:               %s",   0x100+BUTTON_AIRBRUSH)
139
 
  HELP_LINK ("Spray menu:          %s",   0x200+BUTTON_AIRBRUSH)
140
 
  HELP_LINK ("Floodfill:           %s",   0x100+BUTTON_FLOODFILL)
141
 
  HELP_LINK ("Replace color:       %s",   0x200+BUTTON_FLOODFILL)
142
 
  HELP_LINK ("Bezier's curves:     %s",   0x100+BUTTON_CURVES)
143
 
  HELP_TEXT ("Bezier's curve with")
144
 
  HELP_LINK ("  3 or 4 points      %s",   0x200+BUTTON_CURVES)
145
 
  HELP_LINK ("Empty rectangle:     %s",   0x100+BUTTON_RECTANGLES)
146
 
  HELP_LINK ("Filled rectangle:    %s",   0x100+BUTTON_FILLRECT)
147
 
  HELP_LINK ("Empty circle:        %s",   0x100+BUTTON_CIRCLES)
148
 
  HELP_LINK ("Empty ellipse:       %s",   0x200+BUTTON_CIRCLES)
149
 
  HELP_LINK ("Filled circle:       %s",   0x100+BUTTON_FILLCIRC)
150
 
  HELP_LINK ("Filled ellipse:      %s",   0x200+BUTTON_FILLCIRC)
151
 
  HELP_LINK ("Empty polygon:       %s",   0x100+BUTTON_POLYGONS)
152
 
  HELP_LINK ("Empty polyform:      %s",   0x200+BUTTON_POLYGONS)
153
 
  HELP_LINK ("Polyfill:            %s",   0x100+BUTTON_POLYFILL)
154
 
  HELP_LINK ("Filled polyform:     %s",   0x200+BUTTON_POLYFILL)
155
 
  HELP_LINK ("Gradient rectangle:  %s",   0x100+BUTTON_GRADRECT)
156
 
  HELP_LINK ("Gradation menu:      %s",   0x200+BUTTON_GRADRECT)
157
 
  HELP_LINK ("Spheres:             %s",   0x100+BUTTON_SPHERES)
158
 
  HELP_LINK ("Gradient ellipses:   %s",   0x200+BUTTON_SPHERES)
159
 
  HELP_LINK ("Adjust picture:      %s",   0x100+BUTTON_ADJUST)
160
 
  HELP_LINK ("Flip picture menu:   %s",   0x200+BUTTON_ADJUST)
161
 
  HELP_LINK ("Effects menu:        %s",   0x100+BUTTON_EFFECTS)
162
 
  HELP_LINK ("Effects all off      %s",   SPECIAL_EFFECTS_OFF)
163
 
  HELP_LINK ("Shade mode:          %s",   SPECIAL_SHADE_MODE)
164
 
  HELP_LINK ("Shade menu:          %s",   SPECIAL_SHADE_MENU)
165
 
  HELP_LINK ("Quick-shade mode:    %s",   SPECIAL_QUICK_SHADE_MODE)
166
 
  HELP_LINK ("Quick-shade menu:    %s",   SPECIAL_QUICK_SHADE_MENU)
167
 
  HELP_LINK ("Stencil mode:        %s",   SPECIAL_STENCIL_MODE)
168
 
  HELP_LINK ("Stencil menu:        %s",   SPECIAL_STENCIL_MENU)
169
 
  HELP_LINK ("Mask mode:           %s",   SPECIAL_MASK_MODE)
170
 
  HELP_LINK ("Mask menu:           %s",   SPECIAL_MASK_MENU)
171
 
  HELP_LINK ("Grid mode:           %s",   SPECIAL_GRID_MODE)
172
 
  HELP_LINK ("Grid menu:           %s",   SPECIAL_GRID_MENU)
173
 
  HELP_LINK ("Grid view:           %s",   SPECIAL_SHOW_GRID)
174
 
  HELP_LINK ("Sieve mode:          %s",   SPECIAL_SIEVE_MODE)
175
 
  HELP_LINK ("Sieve menu:          %s",   SPECIAL_SIEVE_MENU)
176
 
  HELP_LINK ("Invert Sieve:        %s",   SPECIAL_INVERT_SIEVE)
177
 
  HELP_LINK ("Colorize mode:       %s",   SPECIAL_COLORIZE_MODE)
178
 
  HELP_LINK ("  At opacity  10%%:  %s",   SPECIAL_TRANSPARENCY_1)
179
 
  HELP_LINK ("  At opacity  20%%:  %s",   SPECIAL_TRANSPARENCY_2)
180
 
  HELP_LINK ("  At opacity  30%%:  %s",   SPECIAL_TRANSPARENCY_3)
181
 
  HELP_LINK ("  At opacity  40%%:  %s",   SPECIAL_TRANSPARENCY_4)
182
 
  HELP_LINK ("  At opacity  50%%:  %s",   SPECIAL_TRANSPARENCY_5)
183
 
  HELP_LINK ("  At opacity  60%%:  %s",   SPECIAL_TRANSPARENCY_6)
184
 
  HELP_LINK ("  At opacity  70%%:  %s",   SPECIAL_TRANSPARENCY_7)
185
 
  HELP_LINK ("  At opacity  80%%:  %s",   SPECIAL_TRANSPARENCY_8)
186
 
  HELP_LINK ("  At opacity  90%%:  %s",   SPECIAL_TRANSPARENCY_9)
187
 
  HELP_LINK ("  At opacity 100%%:  %s",   SPECIAL_TRANSPARENCY_0)
188
 
  HELP_LINK ("Colorize menu:       %s",   SPECIAL_COLORIZE_MENU)
189
 
  HELP_LINK ("Smooth mode:         %s",   SPECIAL_SMOOTH_MODE)
190
 
  HELP_LINK ("Smooth menu:         %s",   SPECIAL_SMOOTH_MENU)
191
 
  HELP_LINK ("Smear mode:          %s",   SPECIAL_SMEAR_MODE)
192
 
  HELP_LINK ("Tiling mode:         %s",   SPECIAL_TILING_MODE)
193
 
  HELP_LINK ("Tiling menu:         %s",   SPECIAL_TILING_MENU)
194
 
  HELP_LINK ("Pick brush:          %s",   0x100+BUTTON_BRUSH)
195
 
  HELP_LINK ("Pick polyform brush: %s",   0x100+BUTTON_POLYBRUSH)
196
 
  HELP_LINK ("Restore brush:       %s",   0x200+BUTTON_BRUSH)
197
 
  HELP_LINK ("Flip brush X:        %s",   SPECIAL_FLIP_X)
198
 
  HELP_LINK ("Flip brush Y:        %s",   SPECIAL_FLIP_Y)
199
 
  HELP_LINK ("90� brush rotation:  %s",   SPECIAL_ROTATE_90)
200
 
  HELP_LINK ("180� brush rotation: %s",   SPECIAL_ROTATE_180)
201
 
  HELP_LINK ("Stretch brush:       %s",   SPECIAL_STRETCH)
202
 
  HELP_LINK ("Distort brush:       %s",   SPECIAL_DISTORT)
203
 
  HELP_LINK ("Outline brush:       %s",   SPECIAL_OUTLINE)
204
 
  HELP_LINK ("Nibble brush:        %s",   SPECIAL_NIBBLE)
205
 
  HELP_LINK ("Get brush colors:    %s",   SPECIAL_GET_BRUSH_COLORS)
206
 
  HELP_LINK ("Recolorize brush:    %s",   SPECIAL_RECOLORIZE_BRUSH)
207
 
  HELP_LINK ("Rotate brush:        %s",   SPECIAL_ROTATE_ANY_ANGLE)
208
 
  HELP_LINK ("Pipette:             %s",   0x100+BUTTON_COLORPICKER)
209
 
  HELP_LINK ("Swap fore/back color:%s",   0x200+BUTTON_COLORPICKER)
210
 
  HELP_TEXT ("Magnifier mode")
211
 
  HELP_LINK ("  Toggle:            %s",   0x100+BUTTON_MAGNIFIER)
212
 
  HELP_LINK ("  Zoom factor menu:  %s",   0x200+BUTTON_MAGNIFIER)
213
 
  HELP_LINK ("  Zoom in:           %s",   SPECIAL_ZOOM_IN)
214
 
  HELP_LINK ("  Zoom out:          %s",   SPECIAL_ZOOM_OUT)
215
 
  HELP_LINK ("  1:1 (off)          %s",   SPECIAL_ZOOM_1)
216
 
  HELP_LINK ("  2:1                %s",   SPECIAL_ZOOM_2)
217
 
  HELP_LINK ("  3:1                %s",   SPECIAL_ZOOM_3)
218
 
  HELP_LINK ("  4:1                %s",   SPECIAL_ZOOM_4)
219
 
  HELP_LINK ("  5:1                %s",   SPECIAL_ZOOM_5)
220
 
  HELP_LINK ("  6:1                %s",   SPECIAL_ZOOM_6)
221
 
  HELP_LINK ("  8:1                %s",   SPECIAL_ZOOM_8)
222
 
  HELP_LINK ("  10:1               %s",   SPECIAL_ZOOM_10)
223
 
  HELP_LINK ("  12:1               %s",   SPECIAL_ZOOM_12)
224
 
  HELP_LINK ("  14:1               %s",   SPECIAL_ZOOM_14)
225
 
  HELP_LINK ("  16:1               %s",   SPECIAL_ZOOM_16)
226
 
  HELP_LINK ("  18:1               %s",   SPECIAL_ZOOM_18)
227
 
  HELP_LINK ("  20:1               %s",   SPECIAL_ZOOM_20)
228
 
  HELP_LINK ("Brush effects menu:  %s",   0x100+BUTTON_BRUSH_EFFECTS)
229
 
  HELP_LINK ("Text:                %s",   0x100+BUTTON_TEXT)
230
 
  HELP_LINK ("Resolution menu:     %s",   0x100+BUTTON_RESOL)
231
 
  HELP_LINK ("Safety resolution:   %s",   0x200+BUTTON_RESOL)
232
 
  HELP_LINK ("Help:                %s",   0x100+BUTTON_HELP)
233
 
  HELP_LINK ("Statistics:          %s",   0x200+BUTTON_HELP)
234
 
  HELP_LINK ("Go to spare page:    %s",   0x100+BUTTON_PAGE)
235
 
  HELP_LINK ("Copy to spare page:  %s",   0x200+BUTTON_PAGE)
236
 
  HELP_LINK ("Save as:             %s",   0x100+BUTTON_SAVE)
237
 
  HELP_LINK ("Save:                %s",   0x200+BUTTON_SAVE)
238
 
  HELP_LINK ("Load:                %s",   0x100+BUTTON_LOAD)
239
 
  HELP_LINK ("Re-load:             %s",   0x200+BUTTON_LOAD)
240
 
  HELP_LINK ("Save brush:          %s",   SPECIAL_SAVE_BRUSH)
241
 
  HELP_LINK ("Load brush:          %s",   SPECIAL_LOAD_BRUSH)
242
 
  HELP_LINK ("Larger brush size:   %s",   SPECIAL_BIGGER_PAINTBRUSH)
243
 
  HELP_LINK ("Smaller brush size:  %s",   SPECIAL_SMALLER_PAINTBRUSH)
244
 
  HELP_LINK ("Settings:            %s",   0x100+BUTTON_SETTINGS)
245
 
  HELP_LINK ("Undo:                %s",   0x100+BUTTON_UNDO)
246
 
  HELP_LINK ("Redo:                %s",   0x200+BUTTON_UNDO)
247
 
  HELP_LINK ("Kill page:           %s",   0x100+BUTTON_KILL)
248
 
  HELP_LINK ("Clear:               %s",   0x100+BUTTON_CLEAR)
249
 
  HELP_LINK ("Clear with BG color: %s",   0x200+BUTTON_CLEAR)
250
 
  HELP_LINK ("Quit:                %s",   0x100+BUTTON_QUIT)
251
 
  HELP_LINK ("Palette menu:        %s",   0x100+BUTTON_PALETTE)
252
 
  HELP_LINK ("2nd Palette menu:    %s",   0x200+BUTTON_PALETTE)
253
 
  HELP_LINK ("Exclude colors menu: %s",   SPECIAL_EXCLUDE_COLORS_MENU)
254
 
  HELP_TEXT ("")
255
 
  HELP_TEXT ("Scroll palette")
256
 
  HELP_LINK ("  Back:           %s",   0x100+BUTTON_PAL_LEFT)
257
 
  HELP_LINK ("  Forward:        %s",   0x100+BUTTON_PAL_RIGHT)
258
 
  HELP_LINK ("  Back faster:    %s",   0x200+BUTTON_PAL_LEFT)
259
 
  HELP_LINK ("  Forward faster: %s",   0x200+BUTTON_PAL_RIGHT)
260
 
  HELP_TEXT ("")
261
 
  HELP_TEXT ("Change brush attachement")
262
 
  HELP_LINK ("  Center      : %s",   SPECIAL_CENTER_ATTACHMENT)
263
 
  HELP_LINK ("  Top-left    : %s",   SPECIAL_TOP_LEFT_ATTACHMENT)
264
 
  HELP_LINK ("  Top-right   : %s",   SPECIAL_TOP_RIGHT_ATTACHMENT)
265
 
  HELP_LINK ("  Bottom-left : %s",   SPECIAL_BOTTOM_LEFT_ATTACHMENT)
266
 
  HELP_LINK ("  Bottom-right: %s",   SPECIAL_BOTTOM_RIGHT_ATTACHMENT)
267
 
  HELP_TEXT ("")
268
 
  HELP_TEXT ("Select foreground color")
269
 
  HELP_TEXT ("")
270
 
  HELP_LINK ("  Next    : %s",   SPECIAL_NEXT_FORECOLOR)
271
 
  HELP_LINK ("  Previous: %s",   SPECIAL_PREVIOUS_FORECOLOR)
272
 
  HELP_TEXT ("")
273
 
  HELP_TEXT ("Select background color")
274
 
  HELP_LINK ("  Next    : %s",   SPECIAL_NEXT_BACKCOLOR)
275
 
  HELP_LINK ("  Previous: %s",   SPECIAL_PREVIOUS_BACKCOLOR)
276
 
  HELP_TEXT ("")
277
 
  HELP_TEXT ("Select user-defined foreground color")
278
 
  HELP_TEXT ("")
279
 
  HELP_LINK ("  Next    : %s",   SPECIAL_NEXT_USER_FORECOLOR)
280
 
  HELP_LINK ("  Previous: %s",   SPECIAL_PREVIOUS_USER_FORECOLOR)
281
 
  HELP_TEXT ("")
282
 
  HELP_TEXT ("Select user-defined background color")
283
 
  HELP_LINK ("  Next    : %s",   SPECIAL_NEXT_USER_BACKCOLOR)
284
 
  HELP_LINK ("  Previous: %s",   SPECIAL_PREVIOUS_USER_BACKCOLOR)
285
 
  HELP_TEXT ("")
286
 
};
287
 
static const T_Help_table helptable_credits[] =
288
 
{
289
 
//HELP_TEXT ("0----5----0----5----0----5----0----5----0--X")
290
 
  HELP_TITLE(" GRAFX2 IS CREATED BY")
291
 
  HELP_TEXT ("")
292
 
  HELP_BOLD ("          THE GRAFX2 PROJECT TEAM")
293
 
  HELP_TEXT ("")
294
 
  HELP_TEXT ("  Adrien Destugues (pulkomandy)")
295
 
  HELP_TEXT ("  Yves Rizoud (yrizoud)")
296
 
  HELP_TEXT ("")
297
 
  HELP_TEXT ("  Got the source back to life in 2006")
298
 
  HELP_TEXT ("")
299
 
  HELP_BOLD ("               SUNSET DESIGN")
300
 
  HELP_BOLD ("       AUTHORS OF GRAFX2.0 BETA 96.5%")
301
 
  HELP_TEXT ("")
302
 
  HELP_TEXT ("  Guillaume Dorme alias \"Robinson\" (code)")
303
 
  HELP_TEXT ("  Karl Maritaud   alias \"X-Man\" (code&gfx)")
304
 
//HELP_TEXT ("0----5----0----5----0----5----0----5----0--X")
305
 
  HELP_TEXT ("")
306
 
  HELP_TEXT ("  Re-licensed GrafX2 under the GPL in 2001")
307
 
  HELP_TEXT ("  Huge thanks to them for their work !")
308
 
  HELP_TEXT ("")
309
 
  HELP_BOLD ("         OTHER CODE CONTRIBUTORS")
310
 
  HELP_TEXT ("")
311
 
  HELP_TEXT ("  Karl Bartel")
312
 
  HELP_TEXT ("     SFont: bitmap fonts rendering")
313
 
  HELP_TEXT ("")
314
 
  HELP_TEXT ("  Petter Lindquist")
315
 
  HELP_TEXT ("     C64 file and image formats")
316
 
  HELP_TEXT ("")
317
 
  HELP_TEXT ("")
318
 
  HELP_TITLE("         ART")
319
 
  HELP_TEXT ("")
320
 
  HELP_TEXT ("  Made (www.m4de.com)")
321
 
  HELP_TEXT ("     Logo (classic)")
322
 
  HELP_TEXT ("")
323
 
  HELP_TEXT ("  X-Man")
324
 
  HELP_TEXT ("     Buttons and fonts (classic)")
325
 
  HELP_TEXT ("")
326
 
  HELP_TEXT ("  iLKke (ilkke.blogspot.com)")
327
 
  HELP_TEXT ("     Buttons and logo (modern), extra fonts")
328
 
  HELP_TEXT ("")
329
 
  HELP_TEXT ("")
330
 
  HELP_TEXT ("               ...Pixelled all the graphics")
331
 
  HELP_TEXT ("")
332
 
  HELP_TITLE(" OTHER MACHINES PORTS")
333
 
  HELP_TEXT ("")
334
 
  HELP_BOLD ("              AMIGA OS 3 PORT")
335
 
  HELP_TEXT ("")
336
 
  HELP_TEXT ("  Artur Jarosik")
337
 
  HELP_TEXT ("")
338
 
  HELP_BOLD ("              AMIGA OS 4 PORT")
339
 
  HELP_TEXT ("")
340
 
  HELP_TEXT ("  Peter Gordon (www.petergordon.org.uk)")
341
 
  HELP_TEXT ("")
342
 
  HELP_BOLD ("                 AROS PORT")
343
 
  HELP_TEXT ("")
344
 
  HELP_TEXT ("  Fernando Mastandrea (masta.uy)")
345
 
  HELP_TEXT ("  Markus Weiss")
346
 
  HELP_TEXT ("")
347
 
  HELP_BOLD ("                FREEBSD PORT")
348
 
  HELP_TEXT ("")
349
 
  HELP_TEXT ("  Jean-Baptiste Berlioz (Tobe)")
350
 
  HELP_TEXT ("")
351
 
  HELP_BOLD ("           HAIKU OS AND BEOS PORT")
352
 
  HELP_TEXT ("")
353
 
  HELP_TEXT ("  Luc Schrijvers (Begasus)")
354
 
  HELP_TEXT ("")
355
 
  HELP_BOLD ("           LINUX BINARIES")
356
 
  HELP_TEXT ("")
357
 
  HELP_TEXT ("  Gentoo : Matteo 'Peach' Pescarin")
358
 
  HELP_TEXT ("  Debian : G�rkan Seng�n")
359
 
  HELP_TEXT ("")
360
 
  HELP_BOLD ("               MAC OS X PORT")
361
 
  HELP_TEXT ("")
362
 
  HELP_TEXT ("  Franck Charlet (hitchhikr)")
363
 
  HELP_TEXT ("  Per Olofsson (MagerValp)")
364
 
  HELP_TEXT ("")
365
 
  HELP_BOLD ("                MORPHOS PORT")
366
 
  HELP_TEXT ("")
367
 
  HELP_TEXT ("  Rusback")
368
 
  HELP_TEXT ("")
369
 
  HELP_BOLD ("                 SKYOS PORT")
370
 
  HELP_TEXT ("")
371
 
  HELP_TEXT ("  Luc Schrijvers (Begasus)")
372
 
  HELP_TEXT ("")
373
 
  HELP_TEXT ("")
374
 
  HELP_TEXT ("  ... made it work on your favourite toaster")
375
 
  HELP_TEXT ("")
376
 
  HELP_TITLE(" BUGFINDERS")
377
 
  HELP_TEXT ("")
378
 
//HELP_TEXT ("0----5----0----5----0----5----0----5----0--X")
379
 
  HELP_TEXT ("  blumunkee     BDCIron        Ced          ")
380
 
  HELP_TEXT ("  El Topo       fallenblood    Frost        ")
381
 
  HELP_TEXT ("  Grimmy        G�rkan Seng�n  Hatch        ")
382
 
  HELP_TEXT ("  HoraK-FDF     iLKke          Iw2evk       ")
383
 
  HELP_TEXT ("  Jamon         keito          kusma        ")
384
 
  HELP_TEXT ("  Lord Graga    MagerValp      mind         ")
385
 
  HELP_TEXT ("  MooZ          the Peach      petter       ")
386
 
  HELP_TEXT ("  richienyhus   tape.wyrm      TeeEmCee     ")
387
 
  HELP_TEXT ("  tempest       Timo Kurrpa    titus^Rab    ")
388
 
  HELP_TEXT ("  Tob�          00ai99")
389
 
  HELP_TEXT ("")
390
 
  HELP_TEXT ("")
391
 
  HELP_TEXT ("  ... posted the annoying bug reports.")
392
 
  HELP_TEXT ("")
393
 
  HELP_TITLE(" FILE FORMATS CREDITS")
394
 
  HELP_TEXT ("")
395
 
  HELP_TEXT ("  BMP : Microsoft")
396
 
  HELP_TEXT ("  CEL,KCF : K.O.S. (KISekae Set system)")
397
 
  HELP_TEXT ("  GIF : Compuserve")
398
 
  HELP_TEXT ("  IMG : Bivas (W. Wiedmann?)")
399
 
  HELP_TEXT ("  LBM : Electronic Arts")
400
 
  HELP_TEXT ("  PAL : ermmh... nobody (?)")
401
 
  HELP_TEXT ("  PCX : Z-Soft")
402
 
  HELP_TEXT ("  PI1,PC1 : Degas Elite")
403
 
  HELP_TEXT ("  PKM : Sunset Design")
404
 
  HELP_TEXT ("  PNG : W3C")
405
 
  HELP_TEXT ("  SCx : Colorix (?)")
406
 
  HELP_TEXT ("")
407
 
  HELP_TEXT ("")
408
 
  HELP_TITLE(" OUR HOMEPAGE")
409
 
  HELP_TEXT ("")
410
 
  HELP_BOLD ("  http://grafx2.codegoogle.com")
411
 
  HELP_TEXT ("")
412
 
  HELP_TEXT ("  Please report any bug you may find there")
413
 
  HELP_TEXT ("")
414
 
  HELP_TEXT ("")
415
 
  HELP_TITLE(" GREETINGS")
416
 
  HELP_TEXT ("")
417
 
  HELP_BOLD ("Pulkomandy:")
418
 
  HELP_TEXT ("")
419
 
  HELP_TEXT ("  To the Pouet.net BBS posters, the #CPC")
420
 
  HELP_TEXT ("  trolls and the bitfellas")
421
 
  HELP_TEXT ("  To every people who makes the scene alive!")
422
 
  HELP_TEXT ("  To all guys making nice pixelled pictures")
423
 
  HELP_TEXT ("  (with or without GrafX2)")
424
 
  HELP_TEXT ("")
425
 
  HELP_BOLD ("Sunset Designs:")
426
 
  HELP_TEXT ("")
427
 
  HELP_TEXT ("  We send our best regards to...")
428
 
  HELP_TEXT ("")
429
 
  HELP_TEXT ("  Access        Filter        Pink")
430
 
  HELP_TEXT ("  Ace           Fiver         Pixel")
431
 
  HELP_TEXT ("  AcidJam       Flan          Profil")
432
 
  HELP_TEXT ("  Acryl         Fred          Prowler")
433
 
  HELP_TEXT ("  Alexel        FreddyV       Puznik")
434
 
  HELP_TEXT ("  Alias         Frost         Quick")
435
 
  HELP_TEXT ("  Amiral        Ga�l(GDC)     Ra")
436
 
  HELP_TEXT ("  Arrakis       GainX         Raster")
437
 
  HELP_TEXT ("  Avocado       Gandalf       Ravian")
438
 
  HELP_TEXT ("  Baloo         Goblin        RedBug")
439
 
  HELP_TEXT ("  Barti         Greenpix7     Rem")
440
 
  HELP_TEXT ("  Bat           Grid          Rez")
441
 
  HELP_TEXT ("  Biro          GrosQuick     Roudoudou")
442
 
  HELP_TEXT ("  Bisounours    HackerCroll   Sacrilege")
443
 
  HELP_TEXT ("  BlackAxe      Haplo         Sam")
444
 
  HELP_TEXT ("  Bonnie        Hof           SandMan")
445
 
  HELP_TEXT ("  Boo           Hornet        Scape")
446
 
  HELP_TEXT ("  Boz           Hulud         S�bastien")
447
 
  HELP_TEXT ("  Carine        Java          Shodan")
448
 
  HELP_TEXT ("  Chandra       JBT           Skal")
449
 
  HELP_TEXT ("  Cheetah       J�r�me        Skyfire")
450
 
  HELP_TEXT ("  Chill         Julien(JCA)   Sphair")
451
 
  HELP_TEXT ("  Cougar        KalMinDo      Sprocket")
452
 
  HELP_TEXT ("  Cremax        KaneWood      Stef")
453
 
  HELP_TEXT ("  Cyclone       Karma         Stony")
454
 
  HELP_TEXT ("  Dake          Keith303      Sumaleth")
455
 
  HELP_TEXT ("  Danny         Lazur         Sunday")
456
 
  HELP_TEXT ("  Danube        LightShow     Suny")
457
 
  HELP_TEXT ("  Darjul        Lluvia        Sybaris")
458
 
  HELP_TEXT ("  Darwin        Louie         TBF")
459
 
  HELP_TEXT ("  DarkAngel     Luk           Tempest")
460
 
  HELP_TEXT ("  Das           Made          Thor")
461
 
  HELP_TEXT ("  Decker        Mamos         TMK")
462
 
  HELP_TEXT ("  DerPiipo      Mandrixx      TwoFace")
463
 
  HELP_TEXT ("  Destop        Mangue        Underking")
464
 
  HELP_TEXT ("  Diabolo       Mars          Unreal")
465
 
  HELP_TEXT ("  DineS         Mephisto      VaeVictis")
466
 
  HELP_TEXT ("  Drac          Mercure       Vastator")
467
 
  HELP_TEXT ("  DrYes         Mirec         Vatin")
468
 
  HELP_TEXT ("  Edyx          Moa           Veckman")
469
 
  HELP_TEXT ("  Eller         Moxica        Wain")
470
 
  HELP_TEXT ("  Ellyn         MRK           Wally")
471
 
  HELP_TEXT ("  EOF           Nitch         WillBe")
472
 
  HELP_TEXT ("  Fall          Noal          Xoomie")
473
 
  HELP_TEXT ("  Fame          Nytrik        Xtrm")
474
 
  HELP_TEXT ("  Fantom        Optic         YannSulu")
475
 
  HELP_TEXT ("  Fear          Orome         Z")
476
 
  HELP_TEXT ("  Feather       Pahladin      Zeb")
477
 
  HELP_TEXT ("  Fennec        Phar          Zebig")
478
 
  HELP_TEXT ("")
479
 
  HELP_TEXT ("  and all #pixel, #demofr and #coders.")
480
 
  HELP_TEXT ("")
481
 
  HELP_TEXT ("")
482
 
  HELP_TEXT ("  Some information taken from several docs")
483
 
  HELP_TEXT ("  (PCGPE, Intervue, PC Interdit...)")
484
 
  HELP_TEXT ("  gave us an invaluable help.")
485
 
  HELP_TEXT ("")
486
 
  HELP_TEXT ("  Thanks to Shawn Hargreaves for his filled")
487
 
  HELP_TEXT ("  polygon routine from Allegro v2.2.")
488
 
  HELP_TEXT ("")
489
 
  HELP_TEXT ("  Thanks to Carlos \"Made\" Pardo for his")
490
 
  HELP_TEXT ("  great GrafX2 logo.")
491
 
  HELP_TEXT ("")
492
 
  HELP_TEXT ("  This is our very first program compiled")
493
 
  HELP_TEXT ("  with the Gnu C Compiler.")
494
 
  HELP_TEXT ("  A thousand thanks to the authors of")
495
 
  HELP_TEXT ("  this compiler.")
496
 
  HELP_TEXT ("")
497
 
  HELP_TEXT ("  We also would like to thank all the")
498
 
  HELP_TEXT ("  people who gave us ideas to improve")
499
 
  HELP_TEXT ("  GrafX2.")
500
 
  HELP_TEXT ("")
501
 
  HELP_TITLE (" SNAIL MAIL")
502
 
  HELP_TEXT ("")
503
 
//HELP_TEXT ("0----5----0----5----0----5----0----5----0--X")
504
 
  HELP_TEXT ("  ADRIEN DESTUGUES (PulkoMandy)")
505
 
  HELP_TEXT ("  3, rue Lapouble")
506
 
  HELP_TEXT ("  64000 PAU")
507
 
  HELP_TEXT ("  (Send emails! Welcome in 21th century!)")
508
 
  HELP_TEXT ("")
509
 
  HELP_TEXT ("  GUILLAUME DORME (Robinson)")
510
 
  HELP_TEXT ("  15, rue de l'observatoire")
511
 
  HELP_TEXT ("  87000 LIMOGES (FRANCE)")
512
 
  HELP_TEXT ("  (May take some years to get an answer)")
513
 
  HELP_TEXT ("")
514
 
  HELP_TEXT ("")
515
 
  HELP_TEXT ("  KARL MARITAUD (X-Man)")
516
 
  HELP_TEXT ("  10, rue de la Brasserie")
517
 
  HELP_TEXT ("  87000 LIMOGES (FRANCE)")
518
 
  HELP_TEXT ("  (From 2001, current status: unknown)")
519
 
  HELP_TEXT ("")
520
 
  HELP_TEXT ("")
521
 
};
522
 
static const T_Help_table helptable_paintbrush[] =
523
 
{
524
 
  HELP_TITLE("PAINTBRUSHES")
525
 
  HELP_TEXT ("")
526
 
  HELP_BOLD ("    LEFT CLICK")
527
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_PAINTBRUSHES)
528
 
  HELP_TEXT ("")
529
 
  HELP_TEXT ("Displays a menu where you can choose the")
530
 
  HELP_TEXT ("shape of your paintbrush.")
531
 
  HELP_TEXT ("")
532
 
  HELP_TEXT ("Paintbrushes are sorted by family. You can")
533
 
  HELP_TEXT ("see some paintbrushes of the same family but")
534
 
  HELP_TEXT ("with different sizes. There is at least one")
535
 
  HELP_TEXT ("paint-brush from each family displayed in")
536
 
  HELP_TEXT ("this menu.")
537
 
  HELP_TEXT ("Here is the list of all the different")
538
 
  HELP_TEXT ("paintbrush families:")
539
 
  HELP_TEXT ("")
540
 
  HELP_TEXT ("*******      ***      * * * *      * *   ")
541
 
  HELP_TEXT ("*******     *****      * * *      * * *  ")
542
 
  HELP_TEXT ("*******    *******    * * * *    * * * * ")
543
 
  HELP_TEXT ("*******    *******     * * *      * * *  ")
544
 
  HELP_TEXT ("*******    *******    * * * *    * * * * ")
545
 
  HELP_TEXT ("*******     *****      * * *      * * *  ")
546
 
  HELP_TEXT ("*******      ***      * * * *      * *   ")
547
 
  HELP_TEXT ("")
548
 
  HELP_TEXT ("Square      Disc       Sieve      Sieve  ")
549
 
  HELP_TEXT ("                      square      disc   ")
550
 
  HELP_TEXT ("                                         ")
551
 
  HELP_TEXT ("   *           *                    *    ")
552
 
  HELP_TEXT ("  ***       *    *                  *    ")
553
 
  HELP_TEXT (" *****        *                     *    ")
554
 
  HELP_TEXT ("*******               *******       *    ")
555
 
  HELP_TEXT (" *****     *  *  *                  *    ")
556
 
  HELP_TEXT ("  ***                               *    ")
557
 
  HELP_TEXT ("   *         *  *                   *    ")
558
 
  HELP_TEXT ("                                         ")
559
 
  HELP_TEXT ("Diamond    Random      Horiz.    Vertical")
560
 
  HELP_TEXT ("                        bar        bar   ")
561
 
  HELP_TEXT ("")
562
 
  HELP_TEXT ("")
563
 
  HELP_TEXT ("      *    *          *     *       *")
564
 
  HELP_TEXT ("     *      *          *   *        *")
565
 
  HELP_TEXT ("    *        *          * *         *")
566
 
  HELP_TEXT ("   *          *          *       *******")
567
 
  HELP_TEXT ("  *            *        * *         *")
568
 
  HELP_TEXT (" *              *      *   *        *")
569
 
  HELP_TEXT ("*                *    *     *       *")
570
 
  HELP_TEXT ("")
571
 
  HELP_TEXT (" Slash      Back-     Cross X    Cross +")
572
 
  HELP_TEXT ("            slash")
573
 
  HELP_TEXT ("")
574
 
  HELP_TEXT ("When using one of these, you can change the")
575
 
  HELP_TEXT ("brush size by using the keys:")
576
 
  HELP_LINK ("Reduce   : %s",   SPECIAL_SMALLER_PAINTBRUSH)
577
 
  HELP_LINK ("Increase : %s",   SPECIAL_BIGGER_PAINTBRUSH)
578
 
  HELP_TEXT ("The last 3 paintbrushes in the menu belong")
579
 
  HELP_TEXT ("to the \"miscellaneous\" family and their size")
580
 
  HELP_TEXT ("cannot be modified.")
581
 
  HELP_TEXT ("")
582
 
  HELP_BOLD ("BRUSH CONTAINER")
583
 
  HELP_TEXT ("")
584
 
  HELP_TEXT ("The bottom row, initially showing empty")
585
 
  HELP_TEXT ("buttons, is the brush container. You can")
586
 
  HELP_TEXT ("right-click a button to store the current")
587
 
  HELP_TEXT ("brush in it, and then whenever you need the")
588
 
  HELP_TEXT ("brush back, open this menu again and")
589
 
  HELP_TEXT ("left-click the button.")
590
 
  HELP_TEXT ("The container can memorize resizable brushes")
591
 
  HELP_TEXT ("as well as brushes grabbed from the image.")
592
 
  HELP_TEXT ("Brushes are lost when you exit the program.")
593
 
  HELP_TEXT ("")
594
 
  HELP_BOLD ("    RIGHT CLICK     ")
595
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_PAINTBRUSHES)
596
 
  HELP_TEXT ("")
597
 
  HELP_TEXT ("Transforms your current user-defined brush")
598
 
  HELP_TEXT ("into a paintbrush. This is actually a")
599
 
  HELP_TEXT ("\"monochromisation\" of your user-defined")
600
 
  HELP_TEXT ("brush. This means that every color of the")
601
 
  HELP_TEXT ("brush that aren't the Back-color will be")
602
 
  HELP_TEXT ("set to the Fore-color. But this option")
603
 
  HELP_TEXT ("doesn't alter the brush: you'll just have")
604
 
  HELP_TEXT ("to right-click on the \"Get brush\" buttons")
605
 
  HELP_TEXT ("to get your brush back.")
606
 
  HELP_TEXT ("")
607
 
  HELP_TEXT ("Note: When you press (not in the menu) the")
608
 
  HELP_LINK ("key %s, the current",SPECIAL_DOT_PAINTBRUSH)
609
 
  HELP_TEXT ("paintbrush becomes the smallest member of")
610
 
  HELP_TEXT ("the \"Disc\" family: i.e one pixel.")
611
 
 
612
 
};
613
 
static const T_Help_table helptable_adjust[] =
614
 
{
615
 
  HELP_TITLE("ADJUST OR TRANSFORM")
616
 
  HELP_TITLE("    PICTURE")
617
 
  HELP_TEXT ("")
618
 
  HELP_BOLD ("    LEFT CLICK")
619
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_ADJUST)
620
 
  HELP_TEXT ("")
621
 
  HELP_TEXT ("Allows you to scroll the picture to")
622
 
  HELP_TEXT ("re-center your graph for example.")
623
 
  HELP_TEXT ("")
624
 
  HELP_TEXT ("Any part of the picture that goes out of")
625
 
  HELP_TEXT ("the image by a side comes back by the")
626
 
  HELP_TEXT ("opposite one.")
627
 
  HELP_TEXT ("")
628
 
  HELP_TEXT ("It is assimilated to the drawing tools")
629
 
  HELP_TEXT ("family.")
630
 
  HELP_TEXT ("")
631
 
  HELP_TEXT ("")
632
 
  HELP_BOLD ("    RIGHT CLICK")
633
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_ADJUST)
634
 
  HELP_TEXT ("")
635
 
  HELP_TEXT ("Opens the Picture Transform menu.")
636
 
  HELP_TEXT ("")
637
 
  HELP_TEXT ("")
638
 
  HELP_TITLE("PICTURE TRANSFORM")
639
 
  HELP_TEXT ("")
640
 
  HELP_BOLD ("RESCALE")
641
 
  HELP_TEXT ("")
642
 
  HELP_TEXT ("Allows you to change the image's size,")
643
 
  HELP_TEXT ("rescaling it accordingly. Enter new size")
644
 
  HELP_TEXT ("and press RESIZE to confirm.")
645
 
  HELP_TEXT ("")
646
 
  HELP_TEXT ("")
647
 
  HELP_TEXT ("When 'Lock proportions' is checked and you")
648
 
  HELP_TEXT ("change one dimension, the other one is")
649
 
  HELP_TEXT ("automatically adjusted to preserve the")
650
 
  HELP_TEXT ("proportions of the original image.")
651
 
  HELP_TEXT ("")
652
 
  HELP_TEXT ("You can use the dropdown button to choose")
653
 
  HELP_TEXT ("between three ways to enter the dimensions:")
654
 
  HELP_TEXT ("")
655
 
  HELP_TEXT ("In 'Pixels' mode, the column 'old' shows")
656
 
  HELP_TEXT ("the original dimensions, and you can set")
657
 
  HELP_TEXT ("the new size in pixels.")
658
 
  HELP_TEXT ("")
659
 
  HELP_TEXT ("In 'Percent' mode, you set a percentage")
660
 
  HELP_TEXT ("compared to the original image.")
661
 
  HELP_TEXT ("")
662
 
  HELP_TEXT ("In 'Ratio' mode, you can set 2 numbers for")
663
 
  HELP_TEXT ("each dimension, and the resizing factor will")
664
 
  HELP_TEXT ("be of 'new'�'old'. For example you can use")
665
 
  HELP_TEXT ("1:3 to divide the image by three, 2:1 to")
666
 
  HELP_TEXT ("double it, and any fraction like 15:16.")
667
 
  HELP_TEXT ("")
668
 
  HELP_TEXT ("Be careful that moving from one mode to the")
669
 
  HELP_TEXT ("next can lose precision, if the selected")
670
 
  HELP_TEXT ("dimensions cannot be represented exactly in")
671
 
  HELP_TEXT ("the new mode.")
672
 
  HELP_TEXT ("")
673
 
  HELP_BOLD ("MIRROR")
674
 
  HELP_TEXT ("")
675
 
  HELP_TEXT ("- X: Flip the picture horizontally.")
676
 
  HELP_TEXT ("")
677
 
  HELP_TEXT ("- Y: Flip the picture vertically.")
678
 
  HELP_TEXT ("")
679
 
  HELP_BOLD ("ROTATE")
680
 
  HELP_TEXT ("")
681
 
  HELP_TEXT ("-90�: Rotates the image by 90�")
682
 
  HELP_TEXT ("      clockwise.")
683
 
  HELP_TEXT ("")
684
 
  HELP_TEXT ("+90�: Rotates the image by 90�")
685
 
  HELP_TEXT ("      counter-clockwise.")
686
 
  HELP_TEXT ("180�: Rotates the image by 180�")
687
 
  HELP_TEXT ("")
688
 
  HELP_TEXT ("")
689
 
};
690
 
static const T_Help_table helptable_draw[] =
691
 
{
692
 
  HELP_TITLE("HAND-DRAWING")
693
 
  HELP_TEXT ("")
694
 
  HELP_BOLD ("    LEFT CLICK")
695
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_DRAW)
696
 
  HELP_TEXT ("")
697
 
  HELP_TEXT ("Selects the current hand-drawing mode as the")
698
 
  HELP_TEXT ("active drawing tool. There are 4")
699
 
  HELP_TEXT ("hand-drawing modes:")
700
 
  HELP_TEXT ("")
701
 
  HELP_TEXT ("Continuous hand-drawing: as you move the")
702
 
  HELP_TEXT ("mouse, the paintbrush is regularily pasted")
703
 
  HELP_TEXT ("on the picture. This drawing tool allows to")
704
 
  HELP_TEXT ("change the fore and back colors when being")
705
 
  HELP_TEXT ("in use.")
706
 
  HELP_TEXT ("")
707
 
  HELP_TEXT ("Discontinuous hand-drawing: as you move the")
708
 
  HELP_TEXT ("mouse, the paintbrush is pasted on the")
709
 
  HELP_TEXT ("picture every time a delay is passed")
710
 
  HELP_TEXT ("(actually, the delay is 1 VBL")
711
 
  HELP_TEXT ("(vertical blanking)). This drawing tool")
712
 
  HELP_TEXT ("allows to change the fore and back colors")
713
 
  HELP_TEXT ("when being in use.")
714
 
  HELP_TEXT ("")
715
 
  HELP_TEXT ("Dot by dot hand-drawing: the paintbrush is")
716
 
  HELP_TEXT ("only pasted at the position where you first")
717
 
  HELP_TEXT ("clicked.")
718
 
  HELP_TEXT ("")
719
 
  HELP_TEXT ("Contour fill: Draws pixels like continuous")
720
 
  HELP_TEXT ("mode, but when you release the button Grafx2")
721
 
  HELP_TEXT ("draws a line back to your starting position,")
722
 
  HELP_TEXT ("and fills the area. This tool doesn't use the")
723
 
  HELP_TEXT ("current brush, but single pixels.")
724
 
  HELP_TEXT ("")
725
 
  HELP_BOLD ("    RIGHT CLICK")
726
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_DRAW)
727
 
  HELP_TEXT ("")
728
 
  HELP_TEXT ("Toggles the different hand-drawing modes")
729
 
  HELP_TEXT ("and activates, at the same time, the")
730
 
  HELP_TEXT ("hand-drawing tool.")
731
 
};
732
 
static const T_Help_table helptable_curves[] =
733
 
{
734
 
  HELP_TITLE("SPLINES")
735
 
  HELP_TEXT ("")
736
 
  HELP_BOLD ("LEFT CLICK")
737
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_CURVES)
738
 
  HELP_TEXT ("")
739
 
  HELP_TEXT ("Selects the current curve-drawing mode as")
740
 
  HELP_TEXT ("the active drawing tool. There are 2")
741
 
  HELP_TEXT ("different curve-drawing modes:")
742
 
  HELP_TEXT ("")
743
 
  HELP_TEXT ("* 4 control points curves: define the basic")
744
 
  HELP_TEXT ("line like a classical line, then move, with")
745
 
  HELP_TEXT ("the left mouse button, the inner control")
746
 
  HELP_TEXT ("points to choose the shape of your curve.")
747
 
  HELP_TEXT ("When the curve has the shape you want, click")
748
 
  HELP_TEXT ("with the right mouse button to draw it")
749
 
  HELP_TEXT ("definitively.")
750
 
  HELP_TEXT ("")
751
 
  HELP_TEXT ("* 3 control points curves: the same as")
752
 
  HELP_TEXT ("above, but you'll have only one inner")
753
 
  HELP_TEXT ("control point to place. Moreover, the spline")
754
 
  HELP_TEXT ("will be traced just after placing this")
755
 
  HELP_TEXT ("point.")
756
 
  HELP_TEXT ("")
757
 
  HELP_BOLD ("RIGHT CLICK")
758
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_CURVES)
759
 
  HELP_TEXT ("")
760
 
  HELP_TEXT ("Toggles the different curve-drawing modes")
761
 
  HELP_TEXT ("and activates, at the same time, the")
762
 
  HELP_TEXT ("curve-drawing tool.")
763
 
};
764
 
static const T_Help_table helptable_lines[] =
765
 
{
766
 
  HELP_TITLE("LINES")
767
 
  HELP_TEXT ("")
768
 
  HELP_BOLD ("LEFT CLICK")
769
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_LINES)
770
 
  HELP_TEXT ("")
771
 
  HELP_TEXT ("Selects the current line-drawing mode as the")
772
 
  HELP_TEXT ("active drawing tool. There are 3")
773
 
  HELP_TEXT ("line-drawing modes:")
774
 
  HELP_TEXT ("")
775
 
  HELP_TEXT ("* Classical lines: when first clicking on")
776
 
  HELP_TEXT ("the picture, you'll define the start of the")
777
 
  HELP_TEXT ("line. Maintain your click to choose the end")
778
 
  HELP_TEXT ("of the line and release the mouse button to")
779
 
  HELP_TEXT ("set it.")
780
 
  HELP_TEXT ("If you hold SHIFT when drawing, the line")
781
 
  HELP_TEXT ("will be constrained to horizonal, vertical")
782
 
  HELP_TEXT ("or diagonal.")
783
 
  HELP_TEXT ("")
784
 
  HELP_TEXT ("* Knotted lines: works like classical lines,")
785
 
  HELP_TEXT ("but the end of your line will automatically")
786
 
  HELP_TEXT ("become the start of the next one. When you")
787
 
  HELP_TEXT ("want to stop chaining lines, use the")
788
 
  HELP_TEXT ("opposite mouse button. \"The opposite button\"")
789
 
  HELP_TEXT ("means that if you started to draw lignes")
790
 
  HELP_TEXT ("with the left button (Fore-color), you'll")
791
 
  HELP_TEXT ("have to stop the procedure with the right")
792
 
  HELP_TEXT ("button; and conversely.")
793
 
  HELP_TEXT ("")
794
 
  HELP_TEXT ("* Concentric lines: when first clicking on")
795
 
  HELP_TEXT ("the picture, you'll define center of the")
796
 
  HELP_TEXT ("lines. In fact, the center is defined by the")
797
 
  HELP_TEXT ("the position of the mouse when you release")
798
 
  HELP_TEXT ("the mouse button. Then you can draw lines")
799
 
  HELP_TEXT ("from the center to the current mouse")
800
 
  HELP_TEXT ("position by clicking. To stop drawing")
801
 
  HELP_TEXT ("concentric lines, use the opposite mouse")
802
 
  HELP_TEXT ("button. This drawing tool allows to change")
803
 
  HELP_TEXT ("the fore and back colors when being in use.")
804
 
  HELP_TEXT ("")
805
 
  HELP_BOLD ("RIGHT CLICK")
806
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_LINES)
807
 
  HELP_TEXT ("")
808
 
  HELP_TEXT ("Toggles the different line-drawing modes and")
809
 
  HELP_TEXT ("activates, at the same time, the")
810
 
  HELP_TEXT ("line-drawing tool.")
811
 
 
812
 
};
813
 
static const T_Help_table helptable_airbrush[] =
814
 
{
815
 
  HELP_TITLE("SPRAY")
816
 
  HELP_TEXT ("")
817
 
  HELP_BOLD ("LEFT CLICK")
818
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_AIRBRUSH)
819
 
  HELP_TEXT ("")
820
 
  HELP_TEXT ("Selects the spray as the active drawing")
821
 
  HELP_TEXT ("tool. This drawing tool allows to change the")
822
 
  HELP_TEXT ("fore and back colors when being in use.")
823
 
  HELP_TEXT ("")
824
 
  HELP_BOLD ("RIGHT CLICK")
825
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_AIRBRUSH)
826
 
  HELP_TEXT ("")
827
 
  HELP_TEXT ("Displays a menu where you can configure the")
828
 
  HELP_TEXT ("spray:")
829
 
  HELP_TEXT ("")
830
 
  HELP_TEXT ("- Size: Defines the diameter of the circle")
831
 
  HELP_TEXT ("in which will effectively fit the spray.")
832
 
  HELP_TEXT ("")
833
 
  HELP_TEXT ("- Delay: Defines the number of VBLs that")
834
 
  HELP_TEXT ("will be waited for between two flows of")
835
 
  HELP_TEXT ("spray.")
836
 
  HELP_TEXT ("")
837
 
  HELP_TEXT ("- Mode: Defines whether you want to use a")
838
 
  HELP_TEXT ("monochrome spray or a multi- colored one.")
839
 
  HELP_TEXT ("")
840
 
  HELP_TEXT ("- Mono-flow: Defines the number of")
841
 
  HELP_TEXT ("paintbrushes that will be pasted in the")
842
 
  HELP_TEXT ("circle of the spray at each cycle.")
843
 
  HELP_TEXT ("")
844
 
  HELP_TEXT ("- Palette: Left-click on a color of the")
845
 
  HELP_TEXT ("palette to see how much it will be used in")
846
 
  HELP_TEXT ("the multicolored flow, and modify it by")
847
 
  HELP_TEXT ("using the gauge on the right. If the flow of")
848
 
  HELP_TEXT ("this color was equal to 0, then the \"Init\"")
849
 
  HELP_TEXT ("value will be applied. Or set the flow of a")
850
 
  HELP_TEXT ("color to 0 by clicking on it with the right")
851
 
  HELP_TEXT ("mouse button.")
852
 
  HELP_TEXT ("")
853
 
  HELP_TEXT ("- Clear: Removes all the colors from the")
854
 
  HELP_TEXT ("multicolored flow. Actually, this puts a 0")
855
 
  HELP_TEXT ("value in the use of each color.")
856
 
  HELP_TEXT ("")
857
 
  HELP_TEXT ("- Init: Allows you to define a value that")
858
 
  HELP_TEXT ("will be set to the color you click on in the")
859
 
  HELP_TEXT ("palette if its value is equal to 0. This")
860
 
  HELP_TEXT ("permits to tag a set of colors more quickly.")
861
 
  HELP_TEXT ("")
862
 
  HELP_TEXT ("- +1,-1,x2,/2: Modify the values of all the")
863
 
  HELP_TEXT ("tagged colors (and only them).")
864
 
  HELP_TEXT ("")
865
 
  HELP_TEXT ("")
866
 
  HELP_TEXT ("Tip: If you often use the Shade mode, and")
867
 
  HELP_TEXT ("are bored to click many times on a color to")
868
 
  HELP_TEXT ("reach the color you want, you can define a")
869
 
  HELP_TEXT ("spray with \"Size\"=1, \"Mono-flow\"=1, and")
870
 
  HELP_TEXT ("\"Delay\"=2 (or more, according to your")
871
 
  HELP_TEXT ("reflexes). And then, you'll just have to")
872
 
  HELP_TEXT ("click a few hundredths of second to modify a")
873
 
  HELP_TEXT ("color.")
874
 
};
875
 
static const T_Help_table helptable_floodfill[] =
876
 
{
877
 
  HELP_TITLE("FLOODFILL")
878
 
  HELP_TEXT ("")
879
 
  HELP_BOLD ("LEFT CLICK")
880
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_FLOODFILL)
881
 
  HELP_TEXT ("")
882
 
  HELP_TEXT ("Selects the filler as the active drawing")
883
 
  HELP_TEXT ("tool. The filler, as any drawing tool, will")
884
 
  HELP_TEXT ("be affected by all the effects!")
885
 
  HELP_TEXT ("")
886
 
  HELP_TEXT ("Note that only the visible part of the")
887
 
  HELP_TEXT ("picture will be filled (as every other")
888
 
  HELP_TEXT ("drawing tools, the floodfill only alters the")
889
 
  HELP_TEXT ("visible part of the picture; this avoids")
890
 
  HELP_TEXT ("unwanted effects that wouldn't be controlled")
891
 
  HELP_TEXT ("by the user).")
892
 
  HELP_TEXT ("")
893
 
  HELP_BOLD ("RIGHT CLICK")
894
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_FLOODFILL)
895
 
  HELP_TEXT ("")
896
 
  HELP_TEXT ("Selects the color replacement as the active")
897
 
  HELP_TEXT ("drawing tool.")
898
 
  HELP_TEXT ("")
899
 
  HELP_TEXT ("Any rule has its exceptions and this one")
900
 
  HELP_TEXT ("doesn't depart from that. Indeed, this tool")
901
 
  HELP_TEXT ("is the only one to be affected by no effect")
902
 
  HELP_TEXT ("(except Stencil) and to be able to modify")
903
 
  HELP_TEXT ("non visible parts of the picture.")
904
 
  HELP_TEXT ("The function of this tool being replacing")
905
 
  HELP_TEXT ("all the occurences of a color in the picture")
906
 
  HELP_TEXT ("by another, if would have been a shame to")
907
 
  HELP_TEXT ("limit modifications only to the visible part")
908
 
  HELP_TEXT ("of the picture.")
909
 
};
910
 
static const T_Help_table helptable_polygons[] =
911
 
{
912
 
  HELP_TITLE("POLYGONS")
913
 
  HELP_TITLE("POLYFORMS")
914
 
  HELP_BOLD ("LEFT CLICK")
915
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_POLYGONS)
916
 
  HELP_TEXT ("")
917
 
  HELP_TEXT ("Selects the polygons as the active drawing")
918
 
  HELP_TEXT ("tool.")
919
 
  HELP_TEXT ("")
920
 
  HELP_TEXT ("This works just like knotted-lines but loops")
921
 
  HELP_TEXT ("the extremities when you're finished.")
922
 
  HELP_TEXT ("")
923
 
  HELP_BOLD ("RIGHT CLICK")
924
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_POLYGONS)
925
 
  HELP_TEXT ("")
926
 
  HELP_TEXT ("Selects the polyforms as the active drawing")
927
 
  HELP_TEXT ("tool.")
928
 
  HELP_TEXT ("")
929
 
  HELP_TEXT ("This works like a combination of free-hand")
930
 
  HELP_TEXT ("drawing and knotted-lines. If you keep the")
931
 
  HELP_TEXT ("mouse button pressed, you'll draw as if you")
932
 
  HELP_TEXT ("were in free-hand drawing mode. And, if you")
933
 
  HELP_TEXT ("release the mouse button, it will work like")
934
 
  HELP_TEXT ("knotted lines.")
935
 
  HELP_TEXT ("")
936
 
  HELP_TEXT ("Click on the opposite mouse button (i.e.:")
937
 
  HELP_TEXT ("click right if you started to draw with the")
938
 
  HELP_TEXT ("left mouse button, and vice versa) to")
939
 
  HELP_TEXT ("terminate the operation. The two extremities")
940
 
  HELP_TEXT ("will be linked automatically.")
941
 
};
942
 
static const T_Help_table helptable_polyfill[] =
943
 
{
944
 
  HELP_TITLE("FILLED POLY")
945
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_POLYFILL)
946
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_POLYFILL)
947
 
  HELP_TEXT (" Work exactly the same way as the polygons")
948
 
  HELP_TEXT ("et polyforms above, but fill in the interior")
949
 
  HELP_TEXT ("of the drawn shapes.")
950
 
};
951
 
static const T_Help_table helptable_rectangles[] =
952
 
{
953
 
  HELP_TITLE("RECTANGLES")
954
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_RECTANGLES)
955
 
  HELP_TEXT ("")
956
 
  HELP_TEXT ("Selects the empty rectangles as the active")
957
 
  HELP_TEXT ("drawing tool.")
958
 
  HELP_TEXT ("")
959
 
  HELP_TEXT ("Set a corner of a rectangle. Maintain the")
960
 
  HELP_TEXT ("click to move the opposite corner and")
961
 
  HELP_TEXT ("release the mouse button to set it")
962
 
  HELP_TEXT ("definitively.")
963
 
};
964
 
static const T_Help_table helptable_filled_rectangles[] =
965
 
{
966
 
  HELP_TITLE("FILLED RECT")
967
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_FILLRECT)
968
 
  HELP_TEXT ("")
969
 
  HELP_TEXT ("Selects the filled rectangles as the active")
970
 
  HELP_TEXT ("drawing tool.")
971
 
  HELP_TEXT ("")
972
 
  HELP_TEXT ("Works like an empty rectangle.")
973
 
};
974
 
static const T_Help_table helptable_circles[] =
975
 
{
976
 
  HELP_TITLE("CIRCLES")
977
 
  HELP_TITLE("ELLIPSES")
978
 
  HELP_TEXT ("")
979
 
  HELP_BOLD ("LEFT CLICK")
980
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_CIRCLES)
981
 
  HELP_TEXT ("")
982
 
  HELP_TEXT ("Selects the empty circles as the active")
983
 
  HELP_TEXT ("drawing tool.")
984
 
  HELP_TEXT ("")
985
 
  HELP_TEXT ("Position the center of the cercle and")
986
 
  HELP_TEXT ("maintain the mouse button to select its")
987
 
  HELP_TEXT ("radius.")
988
 
  HELP_TEXT ("")
989
 
  HELP_BOLD ("RIGHT CLICK")
990
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_CIRCLES)
991
 
  HELP_TEXT ("")
992
 
  HELP_TEXT ("Selects the empty ellipses as the active")
993
 
  HELP_TEXT ("drawing tool.")
994
 
  HELP_TEXT ("")
995
 
  HELP_TEXT ("Position the center of the cercle and")
996
 
  HELP_TEXT ("maintain the mouse button to select its")
997
 
  HELP_TEXT ("dimensions.")
998
 
};
999
 
static const T_Help_table helptable_filled_circles[] =
1000
 
{
1001
 
  HELP_TITLE("FILLED CIRCLES")
1002
 
  HELP_TITLE(" AND ELLIPSES")
1003
 
  HELP_TEXT ("")
1004
 
  HELP_BOLD ("FILLED CIRCLES")
1005
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_CIRCLES)
1006
 
  HELP_TEXT ("")
1007
 
  HELP_TEXT ("Works like empty circles.")
1008
 
  HELP_TEXT ("")
1009
 
  HELP_BOLD ("FILLED ELLIPSES")
1010
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_CIRCLES)
1011
 
  HELP_TEXT ("")
1012
 
  HELP_TEXT ("Works like empty ellipses.")
1013
 
};
1014
 
static const T_Help_table helptable_grad_rect[] =
1015
 
{
1016
 
  HELP_TITLE("GRAD RECTANGLE")
1017
 
  HELP_TEXT ("")
1018
 
  HELP_BOLD ("LEFT CLICK")
1019
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_GRADRECT)
1020
 
  HELP_TEXT ("")
1021
 
  HELP_TEXT ("Selects the rectangle with gradations as")
1022
 
  HELP_TEXT ("the active drawing tool.")
1023
 
  HELP_TEXT ("")
1024
 
  HELP_TEXT ("Set a corner of a rectangle. Maintain the")
1025
 
  HELP_TEXT ("click to move the opposite corner and")
1026
 
  HELP_TEXT ("release the mouse button to set it")
1027
 
  HELP_TEXT ("definitively.")
1028
 
  HELP_TEXT ("")
1029
 
  HELP_TEXT ("If you don't like what you have done and")
1030
 
  HELP_TEXT ("want to restart, you can use the right")
1031
 
  HELP_TEXT ("click to cancel everything at this point.")
1032
 
  HELP_TEXT (" If you think it's nice, then click and hold")
1033
 
  HELP_TEXT ("the mouse in a point you want to have the")
1034
 
  HELP_TEXT ("starting color, drag to a point where you")
1035
 
  HELP_TEXT ("want the ending color, and release the")
1036
 
  HELP_TEXT ("button. You can press SHIFT to enforce your")
1037
 
  HELP_TEXT ("line to be vertical, horizontal, or")
1038
 
  HELP_TEXT ("diagonal.")
1039
 
  HELP_TEXT ("")
1040
 
  HELP_TEXT ("")
1041
 
  HELP_BOLD ("RIGHT CLICK")
1042
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_GRADRECT)
1043
 
  HELP_TEXT ("")
1044
 
  HELP_TEXT ("Opens a window where you can define the way")
1045
 
  HELP_TEXT ("gradations are processed. The different")
1046
 
  HELP_TEXT ("sections of this menu are:")
1047
 
  HELP_TEXT ("")
1048
 
  HELP_TEXT ("- Direction (arrow): Switches the direction")
1049
 
  HELP_TEXT ("of the gradation.")
1050
 
  HELP_TEXT ("")
1051
 
  HELP_TEXT ("- Dithering method: Toggles the 3 following")
1052
 
  HELP_TEXT ("methods:")
1053
 
  HELP_TEXT ("  - No dithering")
1054
 
  HELP_TEXT ("  - Basical dithering")
1055
 
  HELP_TEXT ("  - Enhanced dithering")
1056
 
  HELP_TEXT ("")
1057
 
  HELP_TEXT ("- Mix: Mixes the gradation with a more or")
1058
 
  HELP_TEXT ("less random factor.")
1059
 
  HELP_TEXT ("")
1060
 
  HELP_TEXT ("- Palette: Select a color range to build a")
1061
 
  HELP_TEXT ("gradation.")
1062
 
  HELP_TEXT ("")
1063
 
  HELP_TEXT ("- Index scroller: Defines the current")
1064
 
  HELP_TEXT ("gradation among a set of 16 that will be")
1065
 
  HELP_TEXT ("memorised.")
1066
 
};
1067
 
static const T_Help_table helptable_spheres[] =
1068
 
{
1069
 
  HELP_TITLE("GRAD SPHERE")
1070
 
  HELP_BOLD ("LEFT CLICK")
1071
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_SPHERES)
1072
 
  HELP_TEXT ("")
1073
 
  HELP_TEXT ("Selects the spheres as the active drawing")
1074
 
  HELP_TEXT ("tool.")
1075
 
  HELP_TEXT ("")
1076
 
  HELP_TEXT ("Position the center of the sphere and")
1077
 
  HELP_TEXT ("maintain the mouse button to select its")
1078
 
  HELP_TEXT ("radius. Then place the spot-light.")
1079
 
  HELP_TEXT ("")
1080
 
  HELP_BOLD ("RIGHT CLICK")
1081
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_SPHERES)
1082
 
  HELP_TEXT ("")
1083
 
  HELP_TEXT ("Selects the ellipses with gradation as the")
1084
 
  HELP_TEXT ("active drawing tool.")
1085
 
  HELP_TEXT ("")
1086
 
  HELP_TEXT ("Draw the shape like a normal ellipse, and")
1087
 
  HELP_TEXT ("then position the spot-light and click the")
1088
 
  HELP_TEXT ("left mouse button to finish the shape.")
1089
 
  HELP_TEXT ("")
1090
 
  HELP_TEXT ("")
1091
 
  HELP_TEXT ("If you trace a sphere or an ellipse with")
1092
 
  HELP_TEXT ("gradation with the right mouse button, the")
1093
 
  HELP_TEXT ("result will be the same figure filled with")
1094
 
  HELP_TEXT ("the Back-color.")
1095
 
};
1096
 
static const T_Help_table helptable_brush[] =
1097
 
{
1098
 
  HELP_TITLE("GRAB BRUSH")
1099
 
  HELP_BOLD ("  OR RESTORE BRUSH")
1100
 
  HELP_TEXT ("")
1101
 
  HELP_BOLD ("LEFT CLICK")
1102
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_BRUSH)
1103
 
  HELP_TEXT ("")
1104
 
  HELP_TEXT ("Engages a brush grabbing.")
1105
 
  HELP_TEXT ("")
1106
 
  HELP_TEXT ("Click on a corner of the rectangle")
1107
 
  HELP_TEXT ("containing the brush then maintain the click")
1108
 
  HELP_TEXT ("to define the opposite corner of the")
1109
 
  HELP_TEXT ("rectangle. Release the mouse button to grab")
1110
 
  HELP_TEXT ("the brush. Performing this operation with")
1111
 
  HELP_TEXT ("the right mouse button will erase the area")
1112
 
  HELP_TEXT ("where the brush was grabbed with the")
1113
 
  HELP_TEXT ("Back-color.")
1114
 
  HELP_TEXT ("")
1115
 
  HELP_BOLD ("RIGHT CLICK")
1116
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_BRUSH)
1117
 
  HELP_TEXT ("")
1118
 
  HELP_TEXT ("Restores the old brush.")
1119
 
};
1120
 
static const T_Help_table helptable_polybrush[] =
1121
 
{
1122
 
  HELP_TITLE("POLY GRAB")
1123
 
  HELP_TEXT ("")
1124
 
  HELP_BOLD ("LEFT CLICK")
1125
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_POLYBRUSH)
1126
 
  HELP_TEXT ("")
1127
 
  HELP_TEXT ("Grabs a brush of any shape by defining a")
1128
 
  HELP_TEXT ("polyform (please refer to section 8 for more")
1129
 
  HELP_TEXT ("explanations).")
1130
 
  HELP_TEXT ("")
1131
 
  HELP_BOLD ("RIGHT CLICK")
1132
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_BRUSH)
1133
 
  HELP_TEXT ("")
1134
 
  HELP_TEXT ("Restores the old brush (same as above).")
1135
 
};
1136
 
static const T_Help_table helptable_brush_fx[] =
1137
 
{
1138
 
  HELP_TITLE("BRUSH FX")
1139
 
  HELP_TEXT ("")
1140
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_BRUSH_EFFECTS)
1141
 
  HELP_TEXT ("")
1142
 
  HELP_TEXT ("Displays a menu where the following options")
1143
 
  HELP_TEXT ("are available:")
1144
 
  HELP_TEXT ("")
1145
 
  HELP_LINK ("- X: (Key:%s)",SPECIAL_FLIP_X)
1146
 
  HELP_TEXT ("Flip horizontally.")
1147
 
  HELP_TEXT ("")
1148
 
  HELP_LINK ("- Y: (Key:%s)",SPECIAL_FLIP_Y)
1149
 
  HELP_TEXT ("Flip vertically.")
1150
 
  HELP_TEXT ("")
1151
 
  HELP_LINK ("- Rotate by 90�: (Key:%s)",SPECIAL_ROTATE_90)
1152
 
  HELP_TEXT ("Rotates the brush by an angle of 90 degrees.")
1153
 
  HELP_TEXT ("")
1154
 
  HELP_LINK ("- Rotate by 180�: (Key:%s)",SPECIAL_ROTATE_180)
1155
 
  HELP_TEXT ("Rotates the brush by an angle of 180")
1156
 
  HELP_TEXT ("degrees.")
1157
 
  HELP_TEXT ("")
1158
 
  HELP_TEXT ("- Rotate by any angle:")
1159
 
  HELP_LINK ("(Key:%s)",SPECIAL_ROTATE_ANY_ANGLE)
1160
 
  HELP_TEXT ("Triggers an interactive operation that")
1161
 
  HELP_TEXT ("allows you to rotate the brush. For this,")
1162
 
  HELP_TEXT ("start by placing the center or rotation with")
1163
 
  HELP_TEXT ("the left mouse button (if, at this moment,")
1164
 
  HELP_TEXT ("you press the right button, the operation")
1165
 
  HELP_TEXT ("with be cancelled). After that, you can")
1166
 
  HELP_TEXT ("define the angle of rotation as many times")
1167
 
  HELP_TEXT ("as you want by moving the mouse and")
1168
 
  HELP_TEXT ("left-clicking. Then validate with the right")
1169
 
  HELP_TEXT ("button when you are satisfied. Meanwhile,")
1170
 
  HELP_TEXT ("you can press on the 8 outer digits of the")
1171
 
  HELP_TEXT ("numeric pad for defining angles multiple of")
1172
 
  HELP_TEXT ("45 degrees:")
1173
 
  HELP_TEXT ("")
1174
 
  HELP_TEXT ("             135     90      45")
1175
 
  HELP_TEXT ("                \\     |     /")
1176
 
  HELP_TEXT ("                 '7' '8' '9'")
1177
 
  HELP_TEXT ("           180  -'4'     '6'- 0")
1178
 
  HELP_TEXT ("                 '1' '2' '3'")
1179
 
  HELP_TEXT ("                /     |     \\")
1180
 
  HELP_TEXT ("             225     270    315")
1181
 
  HELP_TEXT ("")
1182
 
  HELP_LINK ("- Stretch: (Key:%s)",SPECIAL_STRETCH)
1183
 
  HELP_TEXT ("Triggers an interactive operation")
1184
 
  HELP_TEXT ("that enables you to stretch the brush. For")
1185
 
  HELP_TEXT ("this, start by placing the upper-left")
1186
 
  HELP_TEXT ("cornerof the brush with the left mouse")
1187
 
  HELP_TEXT ("button (if, at this moment, you press the")
1188
 
  HELP_TEXT ("right button, the operation will be")
1189
 
  HELP_TEXT ("cancelled). after that, you can place the")
1190
 
  HELP_TEXT ("opposite corner as many times as you need,")
1191
 
  HELP_TEXT ("then validate with the right mouse button")
1192
 
  HELP_TEXT ("when you are satisfied. If you place this")
1193
 
  HELP_TEXT ("point at coordinates inferior to the ones of")
1194
 
  HELP_TEXT ("the first point, the brush will be inverted.")
1195
 
  HELP_TEXT ("Meanwhile, you can press the following keys")
1196
 
  HELP_TEXT ("whose effects are:   'D'      : double the")
1197
 
  HELP_TEXT ("brush in X and Y   'H'      : reduce the")
1198
 
  HELP_TEXT ("brush by half in X and Y   'X'      : double")
1199
 
  HELP_TEXT ("the brush in X   'Shift+X': reduce the brush")
1200
 
  HELP_TEXT ("by half in X   'Y'      : double the brush")
1201
 
  HELP_TEXT ("in Y   'Shift+Y': reduce the brush by half")
1202
 
  HELP_TEXT ("in Y   'N'      : restore the normal size of")
1203
 
  HELP_TEXT ("the brush (can be useful")
1204
 
  HELP_TEXT ("because it's the only way for cancelling)")
1205
 
  HELP_TEXT ("")
1206
 
  HELP_LINK ("- Distort: (Key:%s)",SPECIAL_DISTORT)
1207
 
  HELP_TEXT ("Triggers an interactive operation")
1208
 
  HELP_TEXT ("that allows you to distort your brush.")
1209
 
  HELP_TEXT ("Start by placing the brush somewhere on the")
1210
 
  HELP_TEXT ("screen and left-click. The brush will")
1211
 
  HELP_TEXT ("appear, with a little peg at each corner.")
1212
 
  HELP_TEXT ("Use the left mouse button to displace the")
1213
 
  HELP_TEXT ("corners, which will deform the brush.")
1214
 
  HELP_TEXT ("When you're done, click the right mouse")
1215
 
  HELP_TEXT ("button.")
1216
 
  HELP_TEXT ("")
1217
 
  HELP_LINK ("- Outline: (Key:%s)",SPECIAL_OUTLINE)
1218
 
  HELP_TEXT ("This option permits to draw the")
1219
 
  HELP_TEXT ("outlines of the brush with the Fore- color.")
1220
 
  HELP_TEXT ("")
1221
 
  HELP_LINK ("- Nibble: (Key:%s)",SPECIAL_NIBBLE)
1222
 
  HELP_TEXT ("This option \"nibbles\" the outlines")
1223
 
  HELP_TEXT ("of the brush. It's in some way the opposite")
1224
 
  HELP_TEXT ("effect of the Outline option.")
1225
 
  HELP_TEXT ("")
1226
 
  HELP_LINK ("- Recolorize: (Key:%s)",SPECIAL_RECOLORIZE_BRUSH)
1227
 
  HELP_TEXT ("Remaps the brush so that it")
1228
 
  HELP_TEXT ("looks like it would in the spare page, using")
1229
 
  HELP_TEXT ("the current palette.")
1230
 
  HELP_TEXT ("")
1231
 
  HELP_LINK ("- Get brush colors: (Key:%s)",SPECIAL_GET_BRUSH_COLORS)
1232
 
  HELP_TEXT ("Transfers the spare")
1233
 
  HELP_TEXT ("page's colors used by the brush to the")
1234
 
  HELP_TEXT ("current palette.")
1235
 
  HELP_TEXT ("")
1236
 
  HELP_TEXT ("- Brush handle:")
1237
 
  HELP_TEXT ("Allows you to choose where to place the")
1238
 
  HELP_TEXT ("handle of the brush. Shortcuts are :")
1239
 
  HELP_LINK ("  Center      : %s",   SPECIAL_CENTER_ATTACHMENT)
1240
 
  HELP_LINK ("  Top-left    : %s",   SPECIAL_TOP_LEFT_ATTACHMENT)
1241
 
  HELP_LINK ("  Top-right   : %s",   SPECIAL_TOP_RIGHT_ATTACHMENT)
1242
 
  HELP_LINK ("  Bottom-left : %s",   SPECIAL_BOTTOM_LEFT_ATTACHMENT)
1243
 
  HELP_LINK ("  Bottom-right: %s",   SPECIAL_BOTTOM_RIGHT_ATTACHMENT)
1244
 
  HELP_TEXT ("")
1245
 
  HELP_LINK ("- Load : (Key:%s)",SPECIAL_LOAD_BRUSH)
1246
 
  HELP_TEXT ("Load a brush from disk.")
1247
 
  HELP_TEXT ("")
1248
 
  HELP_LINK ("- Save : (Key:%s)",SPECIAL_SAVE_BRUSH)
1249
 
  HELP_TEXT ("Save a brush to disk.")
1250
 
};
1251
 
static const T_Help_table helptable_effects[] =
1252
 
{
1253
 
  HELP_TITLE("DRAW MODES")
1254
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_EFFECTS)
1255
 
  HELP_TEXT ("")
1256
 
  HELP_TEXT (" This button opens a menu where you can")
1257
 
  HELP_TEXT ("switch on or off the different   drawing")
1258
 
  HELP_TEXT ("modes.")
1259
 
  HELP_TEXT (" In this menu, the \"All off\" button switches")
1260
 
  HELP_TEXT ("all the drawing modes off.   The [Del] key")
1261
 
  HELP_TEXT ("is the keyboard shortcut for this button.")
1262
 
  HELP_TEXT (" The \"Feedback\" button is only used in")
1263
 
  HELP_TEXT ("\"Shade\", \"Quick-shade, \"Transparency\"")
1264
 
  HELP_TEXT ("and \"Smooth\" modes. When it is set, it means")
1265
 
  HELP_TEXT ("that the _current_   state of the picture")
1266
 
  HELP_TEXT ("has to be taken into account for the effect")
1267
 
  HELP_TEXT ("instead   of the state in which the image")
1268
 
  HELP_TEXT ("was when you started to click for drawing.")
1269
 
  HELP_TEXT ("The best, as often, is that you try by")
1270
 
  HELP_TEXT ("yourself with and without Feedback   to see")
1271
 
  HELP_TEXT ("the difference.")
1272
 
  HELP_TEXT ("   The other buttons are the following:")
1273
 
  HELP_TEXT ("")
1274
 
  HELP_TITLE("SHADE")
1275
 
  HELP_TEXT (" It consists in increasing or decreasing the")
1276
 
  HELP_TEXT ("color number within a user-defined range.")
1277
 
  HELP_TEXT ("This shows its real dimension when used with")
1278
 
  HELP_TEXT ("a range of colors that shade off. Then,")
1279
 
  HELP_TEXT ("you can work on a part of your picture where")
1280
 
  HELP_TEXT ("colors belong to the same range without")
1281
 
  HELP_TEXT ("having to change your brush color all the")
1282
 
  HELP_TEXT ("time. You can choose the incrementation or")
1283
 
  HELP_TEXT ("decrementation of the color by pressing")
1284
 
  HELP_TEXT ("the left or right mouse button while")
1285
 
  HELP_TEXT ("drawing. If you click on a color that does")
1286
 
  HELP_TEXT ("not belong to the range, it will remain")
1287
 
  HELP_TEXT ("unchanged.")
1288
 
  HELP_BOLD ("LEFT CLICK")
1289
 
  HELP_LINK ("(Key : %s)",   SPECIAL_SHADE_MODE)
1290
 
  HELP_TEXT ("")
1291
 
  HELP_TEXT ("Switches the Shade mode.")
1292
 
  HELP_TEXT ("")
1293
 
  HELP_BOLD ("RIGHT CLICK")
1294
 
  HELP_LINK ("(Key: %s)",   SPECIAL_SHADE_MENU)
1295
 
  HELP_TEXT ("")
1296
 
  HELP_TEXT ("Opens a menu where you can define one table")
1297
 
  HELP_TEXT ("of shades within a range of 8 memorised by")
1298
 
  HELP_TEXT ("the program. The different sections of this")
1299
 
  HELP_TEXT ("menu are:")
1300
 
  HELP_TEXT ("")
1301
 
  HELP_TEXT ("- Palette: You can define in it the color")
1302
 
  HELP_TEXT ("blocks that will be inserted")
1303
 
  HELP_TEXT ("into the table of shades.")
1304
 
  HELP_TEXT ("")
1305
 
  HELP_TEXT ("- Scroller: Used to change flick through the")
1306
 
  HELP_TEXT ("tables of shades.")
1307
 
  HELP_TEXT ("")
1308
 
  HELP_TEXT ("- Table of shades definition area: The 512")
1309
 
  HELP_TEXT ("squares should be widely")
1310
 
  HELP_TEXT ("sufficient to define the different shades")
1311
 
  HELP_TEXT ("since every 256 colors of")
1312
 
  HELP_TEXT ("the palette cannot be present more than once")
1313
 
  HELP_TEXT ("in each table.")
1314
 
  HELP_TEXT ("")
1315
 
  HELP_TEXT ("- A window (on the top-right side) permits")
1316
 
  HELP_TEXT ("to visualize the different")
1317
 
  HELP_TEXT ("shades defined in he current table.")
1318
 
  HELP_TEXT ("")
1319
 
  HELP_TEXT ("- Copy: Copy the contents of the table in a")
1320
 
  HELP_TEXT ("buffer.")
1321
 
  HELP_TEXT ("(Each time you open this menu, the current")
1322
 
  HELP_TEXT ("table is automatically")
1323
 
  HELP_TEXT ("transfered into this buffer).")
1324
 
  HELP_TEXT ("")
1325
 
  HELP_TEXT ("- Paste: Copy the contents of the buffer")
1326
 
  HELP_TEXT ("above in the current table.")
1327
 
  HELP_TEXT ("")
1328
 
  HELP_TEXT ("- Clear: Reset the \"shades\" table.")
1329
 
  HELP_TEXT ("")
1330
 
  HELP_TEXT ("- Insert: Used to insert the block selected")
1331
 
  HELP_TEXT ("in the palette at the")
1332
 
  HELP_TEXT ("cursor's position in the table of shades.")
1333
 
  HELP_TEXT ("IF you click with the left mouse button on")
1334
 
  HELP_TEXT ("this button THEN IF a block of more than one")
1335
 
  HELP_TEXT ("color is selected in the table THEN   It is")
1336
 
  HELP_TEXT ("deleted and the block defined in the palette")
1337
 
  HELP_TEXT ("is inserted. ELSE   The block defined in the")
1338
 
  HELP_TEXT ("palette is inserted at the postion just")
1339
 
  HELP_TEXT ("before the selected square. END IF")
1340
 
  HELP_TEXT ("ELSE The block defined in the palette is")
1341
 
  HELP_TEXT ("inserted by erasing the colors following the")
1342
 
  HELP_TEXT ("beginning of the bloc selected in the table.")
1343
 
  HELP_TEXT ("END IF")
1344
 
  HELP_TEXT ("")
1345
 
  HELP_TEXT ("- Delete: Delete the block selected in the")
1346
 
  HELP_TEXT ("table.")
1347
 
  HELP_TEXT ("")
1348
 
  HELP_TEXT ("- Blank: Follows this algorithm:")
1349
 
  HELP_TEXT ("IF you click with the left mouse button on")
1350
 
  HELP_TEXT ("this button THEN Replace the block selected")
1351
 
  HELP_TEXT ("in the table by blank squares.")
1352
 
  HELP_TEXT ("ELSE IF a block of more than one color is")
1353
 
  HELP_TEXT ("selected in the table THEN   Insert blank")
1354
 
  HELP_TEXT ("squares to the left and to the right of the")
1355
 
  HELP_TEXT ("block.   (this is useful for isolating a")
1356
 
  HELP_TEXT ("shade quickly) ELSE   Insert blank squares")
1357
 
  HELP_TEXT ("to the left of the selected square. END IF")
1358
 
  HELP_TEXT ("END IF")
1359
 
  HELP_TEXT ("")
1360
 
  HELP_TEXT ("- Invert: Invert the order of the block")
1361
 
  HELP_TEXT ("selected in the table.")
1362
 
  HELP_TEXT ("")
1363
 
  HELP_TEXT ("- Swap: Allows you you move a block (this")
1364
 
  HELP_TEXT ("exchanges it with what is")
1365
 
  HELP_TEXT ("where you want to move it).")
1366
 
  HELP_TEXT ("")
1367
 
  HELP_TEXT ("- Undo: Cancel the last modification of the")
1368
 
  HELP_TEXT ("table.")
1369
 
  HELP_TEXT ("")
1370
 
  HELP_TEXT ("- The 2 numbers displayed on the right of")
1371
 
  HELP_TEXT ("these buttons are: (above) - the number of")
1372
 
  HELP_TEXT ("the color selected in the palette if only")
1373
 
  HELP_TEXT ("one color is selected. (below) - the number")
1374
 
  HELP_TEXT ("of the color contained in a square in the")
1375
 
  HELP_TEXT ("shades table if this square is the only one")
1376
 
  HELP_TEXT ("selected.")
1377
 
  HELP_TEXT ("")
1378
 
  HELP_TEXT ("- The \"mode\" button displays 3 different")
1379
 
  HELP_TEXT ("modes:")
1380
 
  HELP_TEXT ("\"Normal\": Shades in the range and saturates")
1381
 
  HELP_TEXT ("to its boundaries.")
1382
 
  HELP_TEXT ("\"Loop\": Shades in the range and loops if")
1383
 
  HELP_TEXT ("boundaries are passed.")
1384
 
  HELP_TEXT ("\"No saturation\": Shades in the range and")
1385
 
  HELP_TEXT ("doesn't saturate if boundaries are passed.")
1386
 
  HELP_TEXT ("If the Step (see below) is set to 1, this")
1387
 
  HELP_TEXT ("option does exactly the same as the Normal")
1388
 
  HELP_TEXT ("mode.")
1389
 
  HELP_TEXT ("")
1390
 
  HELP_TEXT ("- Set/Disable: If you want to define several")
1391
 
  HELP_TEXT ("shades in the same table")
1392
 
  HELP_TEXT ("but you'd like these shades not to be")
1393
 
  HELP_TEXT ("effective at the same time, you")
1394
 
  HELP_TEXT ("can mask (disable) some parts of the table")
1395
 
  HELP_TEXT ("so that they will be")
1396
 
  HELP_TEXT ("interpreted a blank squares.")
1397
 
  HELP_TEXT ("To do that, select a block in the table of")
1398
 
  HELP_TEXT ("shades and click on \"Set\".")
1399
 
  HELP_TEXT ("The block will be underlined with a white")
1400
 
  HELP_TEXT ("line; this means that it is")
1401
 
  HELP_TEXT ("disabled.")
1402
 
  HELP_TEXT ("")
1403
 
  HELP_TEXT ("- Clear/Enable: This does exactly the")
1404
 
  HELP_TEXT ("opposite as the button above.")
1405
 
  HELP_TEXT ("")
1406
 
  HELP_TEXT ("- Step: Defines the step of incrementation")
1407
 
  HELP_TEXT ("of the shade. The bigger,")
1408
 
  HELP_TEXT ("the faster you run through the colors of the")
1409
 
  HELP_TEXT ("shade.")
1410
 
  HELP_TEXT ("For example: if the step is 2 and that you")
1411
 
  HELP_TEXT ("have defined a shade with")
1412
 
  HELP_TEXT ("the colors 0,1,4,5,9 and that you click on a")
1413
 
  HELP_TEXT ("pixel of color 1, it will")
1414
 
  HELP_TEXT ("take the value 5 which is 2 positions next")
1415
 
  HELP_TEXT ("in the la table.")
1416
 
  HELP_TEXT ("")
1417
 
  HELP_TEXT ("(We are sorry for these technical")
1418
 
  HELP_TEXT ("considerations quite far from a purely")
1419
 
  HELP_TEXT ("artistic point of view; but know that this")
1420
 
  HELP_TEXT ("effect is really very useful and it is")
1421
 
  HELP_TEXT ("preferable that you understand its whole")
1422
 
  HELP_TEXT ("functionment if you want to fully take")
1423
 
  HELP_TEXT ("advantage of it).")
1424
 
  HELP_TEXT ("")
1425
 
  HELP_TEXT ("")
1426
 
  HELP_TITLE("QUICK SHADE")
1427
 
  HELP_TEXT (" This drawing mode has about the same effect")
1428
 
  HELP_TEXT ("as Shade mode's except that   it is faster")
1429
 
  HELP_TEXT ("to configurate but a little bit less")
1430
 
  HELP_TEXT ("powerful. When you draw on a color of the")
1431
 
  HELP_TEXT ("image which is between the fore- and the")
1432
 
  HELP_TEXT ("back-color in the palette, the color tends")
1433
 
  HELP_TEXT ("towards the fore-color   (according to the")
1434
 
  HELP_TEXT ("step defined) if you draw with the left")
1435
 
  HELP_TEXT ("mouse button, or   it tends towards the")
1436
 
  HELP_TEXT ("back-color if you are using the right mouse")
1437
 
  HELP_TEXT ("button.")
1438
 
  HELP_BOLD ("LEFT CLICK")
1439
 
  HELP_LINK ("(Key: %s)",   SPECIAL_QUICK_SHADE_MODE)
1440
 
  HELP_TEXT ("")
1441
 
  HELP_TEXT ("Switches the Quick-shade mode.")
1442
 
  HELP_TEXT ("")
1443
 
  HELP_BOLD ("RIGHT CLICK")
1444
 
  HELP_LINK ("(Key: %s)",   SPECIAL_QUICK_SHADE_MENU)
1445
 
  HELP_TEXT ("")
1446
 
  HELP_TEXT ("Opens a menu with a few parameters that mean")
1447
 
  HELP_TEXT ("exactly the same as in the menu of Shade")
1448
 
  HELP_TEXT ("mode. These parameters are the step and the")
1449
 
  HELP_TEXT ("loop/satu- ration mode (normal, loop, no")
1450
 
  HELP_TEXT ("saturation).")
1451
 
  HELP_TEXT ("")
1452
 
  HELP_TEXT ("")
1453
 
  HELP_TITLE("STENCIL")
1454
 
  HELP_TEXT (" It is used to prevent some colors from")
1455
 
  HELP_TEXT ("being modified if you draw on   them. The")
1456
 
  HELP_TEXT ("main application of the stencil is when you")
1457
 
  HELP_TEXT ("want to change one   color or more into")
1458
 
  HELP_TEXT ("another.")
1459
 
  HELP_BOLD ("LEFT CLICK")
1460
 
  HELP_LINK ("(Key: %s)",   SPECIAL_STENCIL_MODE)
1461
 
  HELP_TEXT ("")
1462
 
  HELP_TEXT ("Switches the Stencil mode.")
1463
 
  HELP_TEXT ("")
1464
 
  HELP_BOLD ("RIGHT CLICK")
1465
 
  HELP_LINK ("(Key: %s)",   SPECIAL_STENCIL_MENU)
1466
 
  HELP_TEXT ("")
1467
 
  HELP_TEXT ("Opens a menu where you can define a stencil.")
1468
 
  HELP_TEXT ("The different sections of this menu are:")
1469
 
  HELP_TEXT ("")
1470
 
  HELP_TEXT ("- Clear: No color is protected.")
1471
 
  HELP_TEXT ("")
1472
 
  HELP_TEXT ("- Invert: Colors that were protected are")
1473
 
  HELP_TEXT ("unprotected and vice versa.")
1474
 
  HELP_TEXT ("")
1475
 
  HELP_TEXT ("- Palette: Select colors that should be")
1476
 
  HELP_TEXT ("protected with the left mouse button or")
1477
 
  HELP_TEXT ("unprotect colors with the right mouse")
1478
 
  HELP_TEXT ("button.")
1479
 
  HELP_TEXT ("")
1480
 
  HELP_TEXT ("")
1481
 
  HELP_TITLE("MASK")
1482
 
  HELP_TEXT (" This effect could have been called \"True")
1483
 
  HELP_TEXT ("stencil\" because it protects   some parts of")
1484
 
  HELP_TEXT ("the picture instead of some colors. The")
1485
 
  HELP_TEXT ("colors you tag   represent the pixels in the")
1486
 
  HELP_TEXT ("spare page, corresponding to the pixels in")
1487
 
  HELP_TEXT ("the   current page, that you don't want to")
1488
 
  HELP_TEXT ("alter. For example, draw a simple white")
1489
 
  HELP_TEXT ("figure on a black background in the   spare")
1490
 
  HELP_TEXT ("page. Then, tag the black color in the menu")
1491
 
  HELP_TEXT ("of the Mask mode. When   you'll draw in the")
1492
 
  HELP_TEXT ("current page, only the pixels corresponding")
1493
 
  HELP_TEXT ("to the   white (non-black) ones in the spare")
1494
 
  HELP_TEXT ("page will be modified.")
1495
 
  HELP_BOLD ("LEFT CLICK")
1496
 
  HELP_LINK ("(Key: %s)",   SPECIAL_MASK_MODE)
1497
 
  HELP_TEXT ("")
1498
 
  HELP_TEXT ("Switches the Mask mode.")
1499
 
  HELP_TEXT ("")
1500
 
  HELP_BOLD ("RIGHT CLICK")
1501
 
  HELP_LINK ("(Key: %s)",   SPECIAL_MASK_MENU)
1502
 
  HELP_TEXT ("")
1503
 
  HELP_TEXT ("Opens a menu where you can set the colors of")
1504
 
  HELP_TEXT ("the Mask.")
1505
 
  HELP_TEXT ("This menu works the same way as the one of")
1506
 
  HELP_TEXT ("the Stencil, so please refer to the Stencil")
1507
 
  HELP_TEXT ("paragraph to know how to use it.")
1508
 
  HELP_TEXT ("")
1509
 
  HELP_TEXT ("")
1510
 
  HELP_TITLE("GRID")
1511
 
  HELP_TEXT (" This is useful to snap the cursor to the")
1512
 
  HELP_TEXT ("cross-points of a grid. It's   generally")
1513
 
  HELP_TEXT ("used to draw a grid before drawing sprites")
1514
 
  HELP_TEXT ("of the same size such   as a font or tiles,")
1515
 
  HELP_TEXT ("or for drawing figures or grabbing brushes")
1516
 
  HELP_TEXT ("with their   dimensions multiple of the step")
1517
 
  HELP_TEXT ("of the grid.")
1518
 
  HELP_BOLD ("LEFT CLICK")
1519
 
  HELP_LINK ("(Key: %s)",   SPECIAL_GRID_MODE)
1520
 
  HELP_TEXT ("")
1521
 
  HELP_TEXT ("Switches the Snap-to-grid mode.")
1522
 
  HELP_TEXT ("")
1523
 
  HELP_BOLD ("RIGHT CLICK")
1524
 
  HELP_LINK ("(Key: %s)",   SPECIAL_GRID_MENU)
1525
 
  HELP_TEXT ("")
1526
 
  HELP_TEXT ("Opens a menu where you can define the grid")
1527
 
  HELP_TEXT ("parameters. These parameters are:")
1528
 
  HELP_TEXT ("")
1529
 
  HELP_TEXT ("- X,Y: Steps of the grid.")
1530
 
  HELP_TEXT ("")
1531
 
  HELP_TEXT ("- dX,dY: Offsets of the grid.")
1532
 
  HELP_TEXT ("")
1533
 
  HELP_TEXT ("")
1534
 
  HELP_TEXT ("The following shortcut hides or shows the")
1535
 
  HELP_TEXT ("grid in the magnified view:")
1536
 
  HELP_LINK ("%s", SPECIAL_SHOW_GRID)
1537
 
  HELP_TEXT ("The grid size will be according to your")
1538
 
  HELP_TEXT ("snap-to-grid settings.")
1539
 
  HELP_TEXT ("")
1540
 
  HELP_TEXT ("")
1541
 
  HELP_TITLE("SIEVE")
1542
 
  HELP_TEXT (" This effect allows you, by defining a")
1543
 
  HELP_TEXT ("pattern, to draw only on   particular points")
1544
 
  HELP_TEXT ("of the picture. If you are a Manga drawer,")
1545
 
  HELP_TEXT ("you might find this useful to make patterned")
1546
 
  HELP_TEXT ("shades or color transitions.")
1547
 
  HELP_BOLD ("LEFT CLICK")
1548
 
  HELP_LINK ("(Key: %s)",   SPECIAL_SIEVE_MODE)
1549
 
  HELP_TEXT ("")
1550
 
  HELP_TEXT ("Switches the Sieve mode.")
1551
 
  HELP_TEXT ("")
1552
 
  HELP_BOLD ("RIGHT CLICK")
1553
 
  HELP_LINK ("(Key: %s)",   SPECIAL_SIEVE_MENU)
1554
 
  HELP_TEXT ("")
1555
 
  HELP_TEXT ("Opens a menu where you can define the Sieve")
1556
 
  HELP_TEXT ("parameters. This menu consists in:")
1557
 
  HELP_TEXT ("")
1558
 
  HELP_TEXT ("- 16x16 drawing area: You can define a")
1559
 
  HELP_TEXT ("pattern in it (left click => white pixel /")
1560
 
  HELP_TEXT ("right click => black pixel). All the white")
1561
 
  HELP_TEXT ("pixels indicate that, when you'll draw,")
1562
 
  HELP_TEXT ("pixels will be applied on the picture at the")
1563
 
  HELP_TEXT ("corresponding positions whereas black pixels")
1564
 
  HELP_TEXT ("won't modify the picture: whites pixels are")
1565
 
  HELP_TEXT ("the \"holes of the sieve\".")
1566
 
  HELP_TEXT ("")
1567
 
  HELP_TEXT ("- 12 default patterns: They can be copied to")
1568
 
  HELP_TEXT ("the drawing area.")
1569
 
  HELP_TEXT ("")
1570
 
  HELP_TEXT ("- \"Transfer to brush\": Copies the pattern to")
1571
 
  HELP_TEXT ("the brush (white pixels => Fore-color /")
1572
 
  HELP_TEXT ("black pixels => Back-color).")
1573
 
  HELP_TEXT ("")
1574
 
  HELP_TEXT ("- \"Get from brush\": Puts the brush into the")
1575
 
  HELP_TEXT ("drawing area (back-color => black pixels /")
1576
 
  HELP_TEXT ("others => white pixels).")
1577
 
  HELP_TEXT ("")
1578
 
  HELP_TEXT ("- Scrolling 4-arrows pad: Scrolls the")
1579
 
  HELP_TEXT ("pattern in the drawing area.")
1580
 
  HELP_TEXT ("")
1581
 
  HELP_TEXT ("- Resizing 4-arrows pad: Defines the")
1582
 
  HELP_TEXT ("dimensions of the pattern.")
1583
 
  HELP_TEXT ("")
1584
 
  HELP_TEXT ("- Default-value (black or white square):")
1585
 
  HELP_TEXT ("Indicates which value must be inserted when")
1586
 
  HELP_TEXT ("you increase the dimensions of the pattern.")
1587
 
  HELP_TEXT ("")
1588
 
  HELP_TEXT ("- \"Clear\": Sets the whole pattern with the")
1589
 
  HELP_TEXT ("default value (see above).")
1590
 
  HELP_TEXT ("")
1591
 
  HELP_TEXT ("- \"Invert\": It... inverts :) ... black and")
1592
 
  HELP_TEXT ("white pixels.")
1593
 
  HELP_LINK ("(Key: %s)",   SPECIAL_INVERT_SIEVE)
1594
 
  HELP_TEXT ("")
1595
 
  HELP_TEXT ("")
1596
 
  HELP_TITLE("TRANSPARENCY")
1597
 
  HELP_TEXT (" This allows to mix the color(s) of the")
1598
 
  HELP_TEXT ("paintbrush with the colors of the   picture.")
1599
 
  HELP_TEXT ("It's used to make transparency effects like")
1600
 
  HELP_TEXT ("with watercolors.")
1601
 
  HELP_TEXT ("")
1602
 
  HELP_TEXT ("You can also use the following shortcuts to")
1603
 
  HELP_TEXT ("activate transparency mode and assign an")
1604
 
  HELP_TEXT ("amount of opacity:")
1605
 
  HELP_LINK ("     10%% : %s", SPECIAL_TRANSPARENCY_1)
1606
 
  HELP_LINK ("     20%% : %s", SPECIAL_TRANSPARENCY_2)
1607
 
  HELP_LINK ("     30%% : %s", SPECIAL_TRANSPARENCY_3)
1608
 
  HELP_LINK ("     40%% : %s", SPECIAL_TRANSPARENCY_4)
1609
 
  HELP_LINK ("     50%% : %s", SPECIAL_TRANSPARENCY_5)
1610
 
  HELP_LINK ("     60%% : %s", SPECIAL_TRANSPARENCY_6)
1611
 
  HELP_LINK ("     70%% : %s", SPECIAL_TRANSPARENCY_7)
1612
 
  HELP_LINK ("     80%% : %s", SPECIAL_TRANSPARENCY_8)
1613
 
  HELP_LINK ("     90%% : %s", SPECIAL_TRANSPARENCY_9)
1614
 
  HELP_LINK ("    100%% : %s", SPECIAL_TRANSPARENCY_0)
1615
 
  HELP_TEXT ("If you use two of these shortcuts quickly,")
1616
 
  HELP_TEXT ("the second will set the units for finer")
1617
 
  HELP_TEXT ("control. Ie: 4 5 makes 45%, 0 9 makes 9%.")
1618
 
  HELP_TEXT ("")
1619
 
  HELP_BOLD ("LEFT CLICK")
1620
 
  HELP_LINK ("(Key: %s)",   SPECIAL_COLORIZE_MODE)
1621
 
  HELP_TEXT ("")
1622
 
  HELP_TEXT ("Switches the Transparency mode.")
1623
 
  HELP_TEXT ("")
1624
 
  HELP_BOLD ("RIGHT CLICK")
1625
 
  HELP_LINK ("(Key: %s)",   SPECIAL_COLORIZE_MENU)
1626
 
  HELP_TEXT ("")
1627
 
  HELP_TEXT ("Opens a menu where you can define the")
1628
 
  HELP_TEXT ("Transparency parameters. These parameters")
1629
 
  HELP_TEXT ("are:")
1630
 
  HELP_TEXT ("")
1631
 
  HELP_TEXT ("- Interpolation rate: Indicates the")
1632
 
  HELP_TEXT ("percentage of the applied color that will be")
1633
 
  HELP_TEXT ("considered upon the replaced color.")
1634
 
  HELP_TEXT ("")
1635
 
  HELP_TEXT ("- Interpolation method: Uses an")
1636
 
  HELP_TEXT ("interpolation algorithm to compute the")
1637
 
  HELP_TEXT ("color, according to the interpolation rate.")
1638
 
  HELP_TEXT ("")
1639
 
  HELP_TEXT ("- Additive method: Uses the lightest colors")
1640
 
  HELP_TEXT ("to choose the color to apply. For example:")
1641
 
  HELP_TEXT ("if you want to apply a color RGB:30,20,40 on")
1642
 
  HELP_TEXT ("a color RGB:10,50,20, the color applied will")
1643
 
  HELP_TEXT ("be the one, in the palette, that is the")
1644
 
  HELP_TEXT ("closest to the theoretic color RGB:30,50,40.")
1645
 
  HELP_TEXT ("")
1646
 
  HELP_TEXT ("- Subtractive method: uses the darkest")
1647
 
  HELP_TEXT ("colors to choose the color to apply. For")
1648
 
  HELP_TEXT ("example: if you want to apply a color")
1649
 
  HELP_TEXT ("RGB:30,20,40 on a color RGB:10,50,20, the")
1650
 
  HELP_TEXT ("color applied will be the one, in the")
1651
 
  HELP_TEXT ("palette, that is the closest to the")
1652
 
  HELP_TEXT ("theoretic color RGB:10,20,20.")
1653
 
  HELP_TEXT ("")
1654
 
  HELP_TEXT ("")
1655
 
  HELP_TITLE("SMOOTH")
1656
 
  HELP_TEXT (" It provides an easy but not as efficient")
1657
 
  HELP_TEXT ("anti-aliasing as any artist's   touch.")
1658
 
  HELP_TEXT ("Anyway this effect finds a better use in")
1659
 
  HELP_TEXT ("making a blurry aspect.")
1660
 
  HELP_BOLD ("LEFT CLICK")
1661
 
  HELP_LINK ("(Key: %s)",   SPECIAL_SMOOTH_MODE)
1662
 
  HELP_TEXT ("")
1663
 
  HELP_TEXT ("Switches the Smooth mode.")
1664
 
  HELP_TEXT ("")
1665
 
  HELP_BOLD ("RIGHT CLICK")
1666
 
  HELP_LINK ("(Key: %s)",   SPECIAL_SMOOTH_MENU)
1667
 
  HELP_TEXT ("")
1668
 
  HELP_TEXT ("Opens a menu where you can define the Smooth")
1669
 
  HELP_TEXT ("matrix or choose one among the 4 ones")
1670
 
  HELP_TEXT ("predefined.")
1671
 
  HELP_TEXT ("The middle square represents the pixel on")
1672
 
  HELP_TEXT ("which you draw and the 8 others represent")
1673
 
  HELP_TEXT ("the neighbour pixels. Then, the point on")
1674
 
  HELP_TEXT ("which one draw will be replaced by the")
1675
 
  HELP_TEXT ("weighted average (according to values of")
1676
 
  HELP_TEXT ("each squares) of the 9 defined points.")
1677
 
  HELP_TEXT ("")
1678
 
  HELP_TEXT ("")
1679
 
  HELP_TITLE("SMEAR")
1680
 
  HELP_TEXT (" It smears pixels in the direction you are")
1681
 
  HELP_TEXT ("moving your paintbrush, just   as if you")
1682
 
  HELP_TEXT ("wanted to spread fresh paint with your")
1683
 
  HELP_TEXT ("fingers. You can combine   this effect with")
1684
 
  HELP_TEXT ("the transparency effect.")
1685
 
  HELP_TEXT ("")
1686
 
  HELP_LINK ("(Key: %s)",   SPECIAL_SMEAR_MODE)
1687
 
  HELP_TEXT ("Switches the Smear mode.")
1688
 
  HELP_TEXT ("")
1689
 
  HELP_TEXT ("")
1690
 
  HELP_TITLE("TILING")
1691
 
  HELP_TEXT (" It consists in displaying parts of the")
1692
 
  HELP_TEXT ("brush that are adjusted on a   tiling when")
1693
 
  HELP_TEXT ("you are drawing. It's mainly used for")
1694
 
  HELP_TEXT ("quickly drawing a   background with a")
1695
 
  HELP_TEXT ("pattern, but there is a great number of")
1696
 
  HELP_TEXT ("other   possibilities.")
1697
 
  HELP_BOLD ("LEFT CLICK")
1698
 
  HELP_LINK ("(Key: %s)",   SPECIAL_TILING_MODE)
1699
 
  HELP_TEXT ("")
1700
 
  HELP_TEXT ("Switches the Tiling mode.")
1701
 
  HELP_TEXT ("")
1702
 
  HELP_BOLD ("RIGHT CLICK")
1703
 
  HELP_LINK ("(Key: %s)",   SPECIAL_TILING_MENU)
1704
 
  HELP_TEXT ("")
1705
 
  HELP_TEXT ("Opens a menu where you can define the Tiling")
1706
 
  HELP_TEXT ("parameters. These parameters are the offsets")
1707
 
  HELP_TEXT ("of the tiling.")
1708
 
};
1709
 
static const T_Help_table helptable_text[] =
1710
 
{
1711
 
  HELP_TITLE("TEXT")
1712
 
  HELP_TEXT ("")
1713
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_TEXT)
1714
 
  HELP_TEXT ("")
1715
 
  HELP_TEXT ("The text menu allows you to enter some text")
1716
 
  HELP_TEXT ("and render it as a brush.")
1717
 
  HELP_TEXT ("The current background and foreground colors")
1718
 
  HELP_TEXT ("are very important, they determine the text")
1719
 
  HELP_TEXT ("color, the transparent color, and also the")
1720
 
  HELP_TEXT ("color range to use for antialiasing.")
1721
 
  HELP_TEXT ("GrafX2 can use 'bitmap' fonts as long as")
1722
 
  HELP_TEXT ("they are in the special layout supported ")
1723
 
  HELP_TEXT ("by SFont.")
1724
 
  HELP_TEXT ("TrueType fonts can also be used if this")
1725
 
  HELP_TEXT ("version of GrafX2 was compiled with")
1726
 
  HELP_TEXT ("TrueType support.")
1727
 
  HELP_TEXT ("")
1728
 
  HELP_TEXT ("- Txt: Click and enter your text here, a")
1729
 
  HELP_TEXT ("line of up to 250 characters.")
1730
 
  HELP_TEXT ("")
1731
 
  HELP_TEXT ("- Clear txt: Empties the current text.")
1732
 
  HELP_TEXT ("When the text is empty, a standard string")
1733
 
  HELP_TEXT ("is shown instead in the preview area.")
1734
 
  HELP_TEXT ("")
1735
 
  HELP_TEXT ("- Antialias: Click to enable or disable")
1736
 
  HELP_TEXT ("Antialiasing. Only affects TrueType fonts.")
1737
 
  HELP_TEXT ("")
1738
 
  HELP_TEXT ("- Size: Determine the font height. Only")
1739
 
  HELP_TEXT ("affects TrueType fonts.")
1740
 
  HELP_TEXT ("")
1741
 
  HELP_TEXT ("- Font selector: Choose a font. You can")
1742
 
  HELP_TEXT ("use the arrow keys (up and down) to quickly")
1743
 
  HELP_TEXT ("browse your fonts.")
1744
 
  HELP_TEXT ("TrueType fonts are indicated by 'TT'.")
1745
 
  HELP_TEXT ("")
1746
 
  HELP_TEXT ("- Preview area: Shows what the brush will")
1747
 
  HELP_TEXT ("look like.")
1748
 
};
1749
 
static const T_Help_table helptable_magnifier[] =
1750
 
{
1751
 
  HELP_TITLE("MAGNIFIER")
1752
 
  HELP_TEXT ("")
1753
 
  HELP_BOLD ("LEFT CLICK")
1754
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_MAGNIFIER)
1755
 
  HELP_TEXT ("")
1756
 
  HELP_TEXT ("Engages/Disengages the choice of the zoomed")
1757
 
  HELP_TEXT ("window. If you're already in magnifier mode,")
1758
 
  HELP_TEXT ("you'll return to normal mode.")
1759
 
  HELP_LINK ("Zoom in : %s",SPECIAL_ZOOM_IN)
1760
 
  HELP_LINK ("Zoom out: %s",SPECIAL_ZOOM_OUT)
1761
 
  HELP_TEXT ("")
1762
 
  HELP_BOLD ("RIGHT CLICK")
1763
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_MAGNIFIER)
1764
 
  HELP_TEXT ("")
1765
 
  HELP_TEXT ("Displays a menu where you can choose the")
1766
 
  HELP_TEXT ("magnifying factor.")
1767
 
  HELP_TEXT ("")
1768
 
  HELP_TEXT (" Note: When you are in Zoom mode, you can")
1769
 
  HELP_TEXT ("move the \"split\" bar by   clicking on it and")
1770
 
  HELP_TEXT ("moving your mouse left or right while")
1771
 
  HELP_TEXT ("holding the mouse   button down.")
1772
 
};
1773
 
static const T_Help_table helptable_colorpicker[] =
1774
 
{
1775
 
  HELP_TITLE("PIPETTE")
1776
 
  HELP_TEXT ("")
1777
 
  HELP_BOLD ("LEFT CLICK")
1778
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_COLORPICKER)
1779
 
  HELP_TEXT ("")
1780
 
  HELP_TEXT ("Engages a color grabbing.")
1781
 
  HELP_TEXT ("")
1782
 
  HELP_TEXT ("Click on the picture to get the color of the")
1783
 
  HELP_TEXT ("pixel you're on. You can either get a new")
1784
 
  HELP_TEXT ("Fore-color or Back-color with respectively")
1785
 
  HELP_TEXT ("left or right mouse button.")
1786
 
  HELP_TEXT ("")
1787
 
  HELP_BOLD ("RIGHT CLICK")
1788
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_COLORPICKER)
1789
 
  HELP_TEXT ("")
1790
 
  HELP_TEXT ("Swap Fore-color and Back-color.")
1791
 
  HELP_TEXT ("")
1792
 
  HELP_TEXT (" The color currently pointed will be")
1793
 
  HELP_TEXT ("displayed in the tool-bar right   after the")
1794
 
  HELP_TEXT ("coordinates. If you click outside the")
1795
 
  HELP_TEXT ("picture, the color 0 will be returned.")
1796
 
};
1797
 
static const T_Help_table helptable_resolution[] =
1798
 
{
1799
 
  HELP_TITLE("RESOLUTION AND")
1800
 
  HELP_TITLE(" IMAGE SIZE")
1801
 
  HELP_TEXT ("")
1802
 
  HELP_BOLD ("LEFT CLICK")
1803
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_RESOL)
1804
 
  HELP_TEXT ("")
1805
 
  HELP_TEXT ("Displays a menu where you can define the")
1806
 
  HELP_TEXT ("size of your picture and choose the")
1807
 
  HELP_TEXT ("screen resolution.")
1808
 
  HELP_TEXT ("")
1809
 
  HELP_TEXT ("- Image size")
1810
 
  HELP_TEXT ("Click in the boxes named \"Width\" and")
1811
 
  HELP_TEXT ("\"Height\" to change the size of the image")
1812
 
  HELP_TEXT ("you're editing, up to 9999x9999.")
1813
 
  HELP_TEXT ("You can also right-click a video mode to")
1814
 
  HELP_TEXT ("copy its dimensions to the image's.")
1815
 
  HELP_TEXT ("")
1816
 
  HELP_TEXT ("- Pixel size")
1817
 
  HELP_TEXT ("If you choose any Pixel size other than")
1818
 
  HELP_TEXT ("Normal, Grafx2 will emulate a lower")
1819
 
  HELP_TEXT ("resolution by scaling up everything it")
1820
 
  HELP_TEXT ("displays, including the menus and mouse")
1821
 
  HELP_TEXT ("cursor. In Double, Triple and Quadruple")
1822
 
  HELP_TEXT ("mode, the image will appear zoomed x2, x3 or")
1823
 
  HELP_TEXT ("x4, keeping the original proportions. The")
1824
 
  HELP_TEXT ("scaling is done in software, with no linear")
1825
 
  HELP_TEXT ("interpolation, so it can't cause blur. This")
1826
 
  HELP_TEXT ("setting is especially useful if your")
1827
 
  HELP_TEXT ("hardware or drivers don't support the low")
1828
 
  HELP_TEXT ("resolutions you need, but it also allows you")
1829
 
  HELP_TEXT ("to draw in low-resolution while staying in")
1830
 
  HELP_TEXT ("window mode.")
1831
 
  HELP_TEXT ("If you choose one of the scalers called")
1832
 
  HELP_TEXT ("Wide, Tall, Wide2 and Tall2, this will")
1833
 
  HELP_TEXT ("emulate a video mode which has rectangular")
1834
 
  HELP_TEXT ("pixels (longer horizontally or vertically),")
1835
 
  HELP_TEXT ("like some video modes of the C64, Amstrad")
1836
 
  HELP_TEXT ("CPC, and Commodore Amiga.")
1837
 
  HELP_TEXT ("")
1838
 
  HELP_TEXT ("- Video mode")
1839
 
  HELP_TEXT ("Click on a video mode to select it.")
1840
 
  HELP_TEXT ("Grafx2 only lists modes that are detected")
1841
 
  HELP_TEXT ("as available on your computer. Depending on")
1842
 
  HELP_TEXT ("your video card and drivers, there can be")
1843
 
  HELP_TEXT ("a huge difference in the number of modes")
1844
 
  HELP_TEXT ("it can propose.")
1845
 
  HELP_TEXT ("The small buttons on the left-hand side of")
1846
 
  HELP_TEXT ("the lines in the list of modes have been")
1847
 
  HELP_TEXT ("designed to allow you to disable some modes")
1848
 
  HELP_TEXT ("that are not supported by your card. So, the")
1849
 
  HELP_TEXT ("modes that you will disable won't be used")
1850
 
  HELP_TEXT ("when loading pictures with \"Auto-set")
1851
 
  HELP_TEXT ("resolution\" ON.")
1852
 
  HELP_TEXT ("")
1853
 
  HELP_TEXT ("When you click on one of these buttons, its")
1854
 
  HELP_TEXT ("color changes to one of the 4 following. The")
1855
 
  HELP_TEXT ("signification for each color of these")
1856
 
  HELP_TEXT ("buttons is:")
1857
 
  HELP_TEXT ("")
1858
 
  HELP_TEXT ("- Light gray: The video mode is OK. It can")
1859
 
  HELP_TEXT ("be used by the auto-set resolution option")
1860
 
  HELP_TEXT ("when you load picture, and you can select it")
1861
 
  HELP_TEXT ("in the menu of resolutions.")
1862
 
  HELP_TEXT ("")
1863
 
  HELP_TEXT ("- White: It works exactly the same as above.")
1864
 
  HELP_TEXT ("Moreover, it allows you to tag your")
1865
 
  HELP_TEXT ("favourite modes. Indeed, the huge number of")
1866
 
  HELP_TEXT ("video modes makes it more difficult to find")
1867
 
  HELP_TEXT ("the mode your want in the list; so you can")
1868
 
  HELP_TEXT ("tag your favoutite ones in white, so that it")
1869
 
  HELP_TEXT ("will be easier to locate them. (Note: you")
1870
 
  HELP_TEXT ("cannot disable the standard windowed mode)")
1871
 
  HELP_TEXT ("")
1872
 
  HELP_TEXT ("- Dark gray: It allows you to indicate which")
1873
 
  HELP_TEXT ("modes are not really perfect (flickering,")
1874
 
  HELP_TEXT ("not centered, etc...) but which can be used")
1875
 
  HELP_TEXT ("even so. The difference with the light grey")
1876
 
  HELP_TEXT ("button is that these modes won't be used by")
1877
 
  HELP_TEXT ("the auto-set resolution option.")
1878
 
  HELP_TEXT ("")
1879
 
  HELP_TEXT ("- Black: Use it for totally unsupported")
1880
 
  HELP_TEXT ("modes. Thus, these modes won't be selected")
1881
 
  HELP_TEXT ("the \"auto-set res.\" and the program will")
1882
 
  HELP_TEXT ("not let you select them from the list of")
1883
 
  HELP_TEXT ("resolutions.")
1884
 
  HELP_TEXT ("")
1885
 
  HELP_BOLD ("RIGHT CLICK")
1886
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_RESOL)
1887
 
  HELP_TEXT ("")
1888
 
  HELP_TEXT (" Automaticaly switches to the 640x400 window")
1889
 
  HELP_TEXT ("mode.")
1890
 
};
1891
 
static const T_Help_table helptable_page[] =
1892
 
{
1893
 
  HELP_TITLE("SPARE")
1894
 
  HELP_TEXT ("")
1895
 
  HELP_BOLD ("LEFT CLICK")
1896
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_PAGE)
1897
 
  HELP_TEXT ("")
1898
 
  HELP_TEXT ("Jumps to spare page. The current page is")
1899
 
  HELP_TEXT ("then considered as the new spare page, and")
1900
 
  HELP_TEXT ("the spare page considered as the new current")
1901
 
  HELP_TEXT ("page.")
1902
 
  HELP_TEXT ("")
1903
 
  HELP_BOLD ("RIGHT CLICK")
1904
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_PAGE)
1905
 
  HELP_TEXT ("")
1906
 
  HELP_TEXT ("Opens a menu where you can choose whether")
1907
 
  HELP_TEXT ("you want to copy the whole picture (keyboard")
1908
 
  HELP_TEXT ("short-cut in this menu is [Return]), only")
1909
 
  HELP_TEXT ("the pixels, only the palette, or only some")
1910
 
  HELP_TEXT ("colors.")
1911
 
  HELP_TEXT ("In this last case, a second menu")
1912
 
  HELP_TEXT ("(stencil-like) will propose you to tag the")
1913
 
  HELP_TEXT ("colors you want to copy (they are all")
1914
 
  HELP_TEXT ("selected by default).")
1915
 
  HELP_TEXT ("Please refer to section \"Stencil\" to know")
1916
 
  HELP_TEXT ("how to use this last menu.")
1917
 
  HELP_TEXT ("The last option the menu (\"Copy palette and")
1918
 
  HELP_TEXT ("remap\"), remaps the spare page with the")
1919
 
  HELP_TEXT ("current palette and replicates this palette")
1920
 
  HELP_TEXT ("to the spare page. This option is useful to")
1921
 
  HELP_TEXT ("quickly remap a picture with the palette of")
1922
 
  HELP_TEXT ("another.")
1923
 
};
1924
 
static const T_Help_table helptable_save[] =
1925
 
{
1926
 
  HELP_TITLE("SAVE")
1927
 
  HELP_TEXT ("")
1928
 
  HELP_BOLD ("LEFT CLICK")
1929
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_SAVE)
1930
 
  HELP_TEXT ("")
1931
 
  HELP_TEXT ("Displays a fileselector where the following")
1932
 
  HELP_TEXT ("options are available:")
1933
 
  HELP_TEXT ("")
1934
 
  HELP_TEXT ("- Select drive: Allow you to change the")
1935
 
  HELP_TEXT ("current drive.or volume (depending on your")
1936
 
  HELP_TEXT ("operating system")
1937
 
  HELP_TEXT ("")
1938
 
  HELP_TEXT ("- Format: Allows you to choose the file")
1939
 
  HELP_TEXT ("format you want. (PAL and KCF file formats")
1940
 
  HELP_TEXT ("are \"palette\" files).")
1941
 
  HELP_TEXT ("")
1942
 
  HELP_TEXT ("- Filename: Allows you to give a new name to")
1943
 
  HELP_TEXT ("the picture. If no extension is given, the")
1944
 
  HELP_TEXT ("default (according to the format) will be")
1945
 
  HELP_TEXT ("used.")
1946
 
  HELP_TEXT ("")
1947
 
  HELP_TEXT ("- Bookmarks: The four dropdown buttons allow")
1948
 
  HELP_TEXT ("you to bookmark frequently used directories.")
1949
 
  HELP_TEXT ("Use right-click to open a contextual menu")
1950
 
  HELP_TEXT ("to Set it (memorize current directory),")
1951
 
  HELP_TEXT ("Rename it to change its label, and Clear it")
1952
 
  HELP_TEXT ("if you no longer need it. Use left-click to")
1953
 
  HELP_TEXT ("change to the memorized directory.")
1954
 
  HELP_TEXT ("")
1955
 
  HELP_TEXT ("- File-list: Allows you to flick through the")
1956
 
  HELP_TEXT ("disk tree or to overwrite an existing file.")
1957
 
  HELP_TEXT ("")
1958
 
  HELP_TEXT ("- Delete: Allows you to delete the item")
1959
 
  HELP_TEXT ("under the selection bar. If the item is a")
1960
 
  HELP_TEXT ("directory, it must be empty to be removed.")
1961
 
  HELP_TEXT ("")
1962
 
  HELP_TEXT ("- Save: Saves the picture with the current")
1963
 
  HELP_TEXT ("filename, with the chosen format. If the ")
1964
 
  HELP_TEXT ("current filename represents a directory,")
1965
 
  HELP_TEXT ("you'll enter it.")
1966
 
  HELP_TEXT ("")
1967
 
  HELP_TEXT ("- Comment (Txt): If you're using the PKM")
1968
 
  HELP_TEXT ("or PNG format, you can type in a comment on")
1969
 
  HELP_TEXT ("your picture. It will be memorized in the")
1970
 
  HELP_TEXT ("image.")
1971
 
  HELP_TEXT ("")
1972
 
  HELP_TEXT ("Note: The Backspace key brings you directly")
1973
 
  HELP_TEXT ("to the parent directory. You can also type")
1974
 
  HELP_TEXT ("the first letters of a filename you are")
1975
 
  HELP_TEXT ("looking for, to access it faster.")
1976
 
  HELP_TEXT ("")
1977
 
  HELP_BOLD ("RIGHT CLICK")
1978
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_SAVE)
1979
 
  HELP_TEXT ("")
1980
 
  HELP_TEXT ("Save the current picture with its current")
1981
 
  HELP_TEXT ("filename, format and comment.")
1982
 
  HELP_TEXT ("")
1983
 
  HELP_TEXT ("If the file already exists, a confirmation")
1984
 
  HELP_TEXT ("box will appear.")
1985
 
};
1986
 
static const T_Help_table helptable_load[] =
1987
 
{
1988
 
 
1989
 
  HELP_TITLE("LOAD")
1990
 
  HELP_TEXT ("")
1991
 
  HELP_BOLD ("LEFT CLICK")
1992
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_LOAD)
1993
 
  HELP_TEXT ("")
1994
 
  HELP_TEXT ("This works the same way as Save.")
1995
 
  HELP_TEXT ("")
1996
 
  HELP_TEXT ("You'll have access in the format selector to")
1997
 
  HELP_TEXT ("a \"*.*\" filter. And of course, you won't be")
1998
 
  HELP_TEXT ("able to type in any comment.")
1999
 
  HELP_TEXT ("")
2000
 
  HELP_BOLD ("RIGHT CLICK")
2001
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_LOAD)
2002
 
  HELP_TEXT ("")
2003
 
  HELP_TEXT ("Reloads the picture.")
2004
 
  HELP_TEXT ("")
2005
 
  HELP_TEXT ("If you want to load a picture and that you")
2006
 
  HELP_TEXT ("haven't saved the last modifications of the")
2007
 
  HELP_TEXT ("current picture, a confirmation box will")
2008
 
  HELP_TEXT ("appear.")
2009
 
};
2010
 
static const T_Help_table helptable_settings[] =
2011
 
{
2012
 
  HELP_TITLE("SETTINGS")
2013
 
  HELP_TEXT ("")
2014
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_SETTINGS)
2015
 
  HELP_TEXT ("")
2016
 
  HELP_TEXT ("Displays a menu where you can configure some")
2017
 
  HELP_TEXT ("miscellaneous elements of the program:")
2018
 
  HELP_TEXT ("")
2019
 
  HELP_TEXT ("- Number of UNDO pages: indicates the total")
2020
 
  HELP_TEXT ("number of pages that GrafX2 will memorize.")
2021
 
  HELP_TEXT ("Each time you modify the picture, its")
2022
 
  HELP_TEXT ("current state is memorized in one of these")
2023
 
  HELP_TEXT ("pages. To flick through these pages, use the")
2024
 
  HELP_TEXT ("\"Oops\" button (Undo/Redo).")
2025
 
  HELP_TEXT ("")
2026
 
  HELP_TEXT ("- Mouse sensibility: Modifies the speed of")
2027
 
  HELP_TEXT ("the mouse when you're in fullscreen. With")
2028
 
  HELP_TEXT ("the normal setting (slider on top), you may")
2029
 
  HELP_TEXT ("find the mouse too fast, especially in ")
2030
 
  HELP_TEXT ("video modes which are much smaller than your")
2031
 
  HELP_TEXT ("desktop. You can lower the slider to divide")
2032
 
  HELP_TEXT ("the speed by 2, 3 or 4.")
2033
 
  HELP_TEXT ("When using videomodes with native skewed")
2034
 
  HELP_TEXT ("pixels like 640x240 or 320x512, you'll")
2035
 
  HELP_TEXT ("probably want to use a stronger reduction")
2036
 
  HELP_TEXT ("on the axis which has less pixels.")
2037
 
  HELP_TEXT ("")
2038
 
  HELP_TEXT ("- Show/Hide in file list: Defines whether")
2039
 
  HELP_TEXT ("some particular files or directories must be")
2040
 
  HELP_TEXT ("displayed by the fileselectors or not.")
2041
 
  HELP_TEXT ("")
2042
 
  HELP_TEXT ("- Show/Hide picture limits: Indicates if the")
2043
 
  HELP_TEXT ("picture boundaries must be displayed when")
2044
 
  HELP_TEXT ("you are in a resolution bigger than the")
2045
 
  HELP_TEXT ("picture.")
2046
 
  HELP_TEXT ("")
2047
 
  HELP_TEXT ("- Clear palette: Indicates if loading a file")
2048
 
  HELP_TEXT ("with a palette of less than 256 colors must")
2049
 
  HELP_TEXT ("erase the rest of the current palette")
2050
 
  HELP_TEXT ("(replace by the black color).")
2051
 
  HELP_TEXT ("")
2052
 
  HELP_TEXT ("- Maximize preview: maximizes the preview of")
2053
 
  HELP_TEXT ("the pictures so that it is as big as")
2054
 
  HELP_TEXT ("possible. If you're not in the same")
2055
 
  HELP_TEXT ("resolution as the picture's one, it can try")
2056
 
  HELP_TEXT ("to correct the aspect ratio, but if the")
2057
 
  HELP_TEXT ("picture does not fill the whole screen, it")
2058
 
  HELP_TEXT ("can be worse.")
2059
 
  HELP_TEXT ("")
2060
 
  HELP_TEXT ("- Backup: when you'll save a picture over an")
2061
 
  HELP_TEXT ("existing file, the program will rename this")
2062
 
  HELP_TEXT ("file to \"*.BAK\" where * is the name of the")
2063
 
  HELP_TEXT ("picture without its extension. If the backup")
2064
 
  HELP_TEXT ("file already exists in the directory, it")
2065
 
  HELP_TEXT ("will be replaced. If you save a picture with")
2066
 
  HELP_TEXT ("the name of the backup file, no backup file")
2067
 
  HELP_TEXT ("will be created (of course!) ;).")
2068
 
  HELP_TEXT ("")
2069
 
  HELP_TEXT ("- Safety colors: Brings back the 4 default")
2070
 
  HELP_TEXT ("colors of the menus if you run an operation")
2071
 
  HELP_TEXT ("that passes the image in less than four")
2072
 
  HELP_TEXT ("colors in the palette editor.")
2073
 
  HELP_TEXT ("")
2074
 
  HELP_TEXT ("- Adjust brush pick: This option is used")
2075
 
  HELP_TEXT ("when you grab a brush in Grid (Snap) mode.")
2076
 
  HELP_TEXT ("Then, the right-most and down-most pixels")
2077
 
  HELP_TEXT ("won't be picked up with the rest of the")
2078
 
  HELP_TEXT ("brush. This option has been made because, if")
2079
 
  HELP_TEXT ("people grab brushes in Grid mode, that's")
2080
 
  HELP_TEXT ("mostly when they want to grab sprites. For")
2081
 
  HELP_TEXT ("example: if you have 16x16 sprites on your")
2082
 
  HELP_TEXT ("page, you'll set the grid mode to 16x16. But")
2083
 
  HELP_TEXT ("the cursor will snap at points like (0,0),")
2084
 
  HELP_TEXT ("(16,0), (16,16) and so on... And the problem")
2085
 
  HELP_TEXT ("is that, from (0,0) to (16,16), there are 17")
2086
 
  HELP_TEXT ("pixels! But if you keep the")
2087
 
  HELP_TEXT ("adjust-brush-pick option on, the unwanted")
2088
 
  HELP_TEXT ("pixels will be ignored. Moreover, this")
2089
 
  HELP_TEXT ("option adjusts the brush handle so that the")
2090
 
  HELP_TEXT ("brush still fits in the grid, instead of")
2091
 
  HELP_TEXT ("placing the handle in the center of the")
2092
 
  HELP_TEXT ("brush.")
2093
 
  HELP_TEXT ("")
2094
 
  HELP_TEXT ("- Separate colors: Draws a squaring around")
2095
 
  HELP_TEXT ("the colors of the tool-bar.")
2096
 
  HELP_TEXT ("")
2097
 
  HELP_TEXT ("- Auto-set resolution: sets the best")
2098
 
  HELP_TEXT ("resolution for the loaded image.")
2099
 
  HELP_TEXT ("")
2100
 
  HELP_TEXT ("- Coordinates: Choose if you want to display")
2101
 
  HELP_TEXT ("relative or absolute coordinates when using")
2102
 
  HELP_TEXT ("tools such as circles, rectangles, etc...")
2103
 
  HELP_TEXT ("for example, if you draw a circle: if coords")
2104
 
  HELP_TEXT ("are relative, the radius of the circle will")
2105
 
  HELP_TEXT ("be displayed, while in absolute coords, the")
2106
 
  HELP_TEXT ("coordinates of the cursor will be displayed.")
2107
 
  HELP_TEXT ("")
2108
 
  HELP_TEXT ("- Reload: loads the previously saved")
2109
 
  HELP_TEXT ("configuration.")
2110
 
  HELP_TEXT ("")
2111
 
  HELP_TEXT ("- Auto-save: means that the configuration")
2112
 
  HELP_TEXT ("will be automatically saved when you'll quit")
2113
 
  HELP_TEXT ("the program.")
2114
 
  HELP_TEXT ("")
2115
 
  HELP_TEXT ("- Save: saves the configuration at once.")
2116
 
  HELP_TEXT (" All modifications will be effective just")
2117
 
  HELP_TEXT ("after closing the menu.")
2118
 
  HELP_TEXT ("")
2119
 
  HELP_TITLE("SKINS")
2120
 
  HELP_TEXT ("")
2121
 
  HELP_TEXT ("This window allow you to change the look and")
2122
 
  HELP_TEXT ("feel of the program.")
2123
 
  HELP_TEXT ("")
2124
 
  HELP_TEXT ("- Font: determines whether you want to use")
2125
 
  HELP_TEXT ("GrafX2 with a classical font, or another one")
2126
 
  HELP_TEXT ("a bit funnier.")
2127
 
  HELP_TEXT ("")
2128
 
  HELP_TEXT ("- Cursor: allows you to choose whether you")
2129
 
  HELP_TEXT ("prefer a solid cursor or a transparent")
2130
 
  HELP_TEXT ("cursor.")
2131
 
  HELP_TEXT ("")
2132
 
  HELP_TEXT ("- Graphic file: you can change the whole")
2133
 
  HELP_TEXT ("interface by selecting where the sprites for")
2134
 
  HELP_TEXT ("all buttons are. Look at the files in the")
2135
 
  HELP_TEXT ("\"skin\" directory if you want to create your")
2136
 
  HELP_TEXT ("own. There are two skins available, the")
2137
 
  HELP_TEXT ("default for 2.1 is called modern. Classic is")
2138
 
  HELP_TEXT ("for nostalgics who wish to remember the old")
2139
 
  HELP_TEXT ("days of Sunset Design. If you create a good")
2140
 
  HELP_TEXT ("skin, feel free to share it with us! We may")
2141
 
  HELP_TEXT ("include it in a future release...")
2142
 
};
2143
 
static const T_Help_table helptable_clear[] =
2144
 
{
2145
 
 
2146
 
  HELP_TITLE("CLEAR")
2147
 
  HELP_TEXT ("")
2148
 
  HELP_BOLD ("LEFT CLICK")
2149
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_CLEAR)
2150
 
  HELP_TEXT ("")
2151
 
  HELP_TEXT ("Clears the picture with the color number 0.")
2152
 
  HELP_TEXT ("")
2153
 
  HELP_BOLD ("RIGHT CLICK")
2154
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_CLEAR)
2155
 
  HELP_TEXT ("")
2156
 
  HELP_TEXT ("Clears the picture with the Back-color.")
2157
 
};
2158
 
static const T_Help_table helptable_general[] =
2159
 
{
2160
 
 
2161
 
  HELP_TITLE("HELP STATS")
2162
 
  HELP_TEXT ("")
2163
 
  HELP_BOLD ("LEFT CLICK")
2164
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_HELP)
2165
 
  HELP_TEXT ("")
2166
 
  HELP_TEXT ("Displays an info window where you'll find")
2167
 
  HELP_TEXT ("some credits, help about the credits,")
2168
 
  HELP_TEXT ("different effects, greetings, registering...")
2169
 
  HELP_TEXT ("")
2170
 
  HELP_BOLD ("RIGHT CLICK")
2171
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_HELP)
2172
 
  HELP_TEXT ("")
2173
 
  HELP_TEXT ("Displays a window where you'll find")
2174
 
  HELP_TEXT ("miscellaneous informations about the system.")
2175
 
  HELP_TEXT (" Note: you should take care to keep more")
2176
 
  HELP_TEXT ("than 128 Kb in order to let the   program")
2177
 
  HELP_TEXT ("run in a proper way.")
2178
 
};
2179
 
static const T_Help_table helptable_undo[] =
2180
 
{
2181
 
 
2182
 
  HELP_TITLE("OOPS")
2183
 
  HELP_TEXT ("(UNDO/REDO)")
2184
 
  HELP_TEXT ("LEFT CLICK Allows you to undo the last")
2185
 
  HELP_TEXT ("modification on the picture.")
2186
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_UNDO)
2187
 
  HELP_TEXT ("")
2188
 
  HELP_TEXT ("RIGHT CLICK Allows you to redo the last")
2189
 
  HELP_TEXT ("modification undone on the         picture.")
2190
 
  HELP_TEXT ("The maximum number of UNDO that you can")
2191
 
  HELP_TEXT ("perform can be defined in the   settings")
2192
 
  HELP_TEXT ("menu.")
2193
 
  HELP_TEXT ("Undo/Redo aren't effective after page")
2194
 
  HELP_TEXT ("switching, picture loading and   picture")
2195
 
  HELP_TEXT ("size modifications.")
2196
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_UNDO)
2197
 
};
2198
 
static const T_Help_table helptable_kill[] =
2199
 
{
2200
 
 
2201
 
  HELP_TITLE("KILL")
2202
 
  HELP_TEXT ("KILL CURRENT PAGE")
2203
 
  HELP_TEXT ("")
2204
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_KILL)
2205
 
  HELP_TEXT ("")
2206
 
  HELP_TEXT ("Removes the current page from the list of")
2207
 
  HELP_TEXT ("\"Undo\" pages. This allows you to free some")
2208
 
  HELP_TEXT ("memory if you need it. For instance, this")
2209
 
  HELP_TEXT ("will allow you to delete the start-up page")
2210
 
  HELP_TEXT ("after having loaded an image. A message will")
2211
 
  HELP_TEXT ("appear if you've already erased all the")
2212
 
  HELP_TEXT ("pages except the last one.")
2213
 
  HELP_TEXT (" Note: Another way to free some memory is to")
2214
 
  HELP_TEXT ("decrease the number of   \"Undo\" pages. Or")
2215
 
  HELP_TEXT ("else, if you have recentlt grabbed a very")
2216
 
  HELP_TEXT ("big   brush that you don't use any more, you")
2217
 
  HELP_TEXT ("can grab a new smaller one.   The memory")
2218
 
  HELP_TEXT ("allocated by the big brush will be thus")
2219
 
  HELP_TEXT ("freed.")
2220
 
};
2221
 
static const T_Help_table helptable_quit[] =
2222
 
{
2223
 
 
2224
 
  HELP_TITLE("QUIT")
2225
 
  HELP_TEXT ("")
2226
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_QUIT)
2227
 
  HELP_TEXT ("")
2228
 
  HELP_TEXT ("Allows you to leave GrafX2. If there are")
2229
 
  HELP_TEXT ("unsaved modifications in the current or")
2230
 
  HELP_TEXT ("spare page, a confirmation box will ask you")
2231
 
  HELP_TEXT ("if you really want to quit GrafX2, if you")
2232
 
  HELP_TEXT ("want to save (Auto-save, no fileselector) or")
2233
 
  HELP_TEXT ("if you want to stay in GrafX2.")
2234
 
};
2235
 
static const T_Help_table helptable_palette[] =
2236
 
{
2237
 
 
2238
 
  HELP_TITLE("PAL MENU")
2239
 
  HELP_TEXT ("")
2240
 
  HELP_BOLD ("LEFT CLICK")
2241
 
  HELP_LINK ("(Key:%s)",0x100+BUTTON_PALETTE)
2242
 
  HELP_TEXT ("")
2243
 
  HELP_TEXT ("Displays a menu where the following options")
2244
 
  HELP_TEXT ("are available:")
2245
 
  HELP_TEXT ("")
2246
 
  HELP_TEXT ("- Palette: Allows you to choose a")
2247
 
  HELP_TEXT ("color-block to edit. If you click with the")
2248
 
  HELP_TEXT ("right mouse button, you'll choose a new")
2249
 
  HELP_TEXT ("Back-color.")
2250
 
  HELP_TEXT ("")
2251
 
  HELP_TEXT ("- Gauges: Allow you to modify the")
2252
 
  HELP_TEXT ("current selection.")
2253
 
  HELP_TEXT ("")
2254
 
  HELP_TEXT ("- \"+\" and \"-\": Allow you to lighten or")
2255
 
  HELP_TEXT ("darken the current selection.")
2256
 
  HELP_TEXT ("")
2257
 
  HELP_TEXT ("- Default: Restores the predifined GrafX2")
2258
 
  HELP_TEXT ("palette.")
2259
 
  HELP_TEXT ("")
2260
 
  HELP_TEXT ("- Gray: Transforms the current selection")
2261
 
  HELP_TEXT ("into its gray-scaled equivalent.")
2262
 
  HELP_TEXT ("")
2263
 
  HELP_TEXT ("- Negative: Transforms the current selection")
2264
 
  HELP_TEXT ("into its reverse video equivalent.")
2265
 
  HELP_TEXT ("")
2266
 
  HELP_TEXT ("- Invert: Swaps the colors of the current")
2267
 
  HELP_TEXT ("selection so that the first colors become")
2268
 
  HELP_TEXT ("the last ones.")
2269
 
  HELP_TEXT ("")
2270
 
  HELP_TEXT ("- X-Invert: Works as above but modifies the")
2271
 
  HELP_TEXT ("picture so that it looks the same.")
2272
 
  HELP_TEXT ("")
2273
 
  HELP_TEXT ("- Swap: Swaps the current selection with")
2274
 
  HELP_TEXT ("another color-block. Click on the beginning")
2275
 
  HELP_TEXT ("of the new color-block.")
2276
 
  HELP_TEXT ("")
2277
 
  HELP_TEXT ("- X-Swap: Works as above but modifies the")
2278
 
  HELP_TEXT ("picture so that it looks the same. This may")
2279
 
  HELP_TEXT ("be useful if you want to sort your palette.")
2280
 
  HELP_TEXT ("")
2281
 
  HELP_TEXT ("- Copy: Copies the current selection to")
2282
 
  HELP_TEXT ("another color-block. Click on the beginning")
2283
 
  HELP_TEXT ("of the new color-block.")
2284
 
  HELP_TEXT ("")
2285
 
  HELP_TEXT ("- Spread: Computes a gradation between two")
2286
 
  HELP_TEXT ("colors. If your selection is only made up of")
2287
 
  HELP_TEXT ("one color, select the second color in the")
2288
 
  HELP_TEXT ("palette. Otherwise, the two colors used will")
2289
 
  HELP_TEXT ("be its extremities.")
2290
 
  HELP_TEXT ("")
2291
 
  HELP_TEXT ("- Sort: sorts the palette by color ranges.")
2292
 
  HELP_TEXT ("If you click with the left mouse button, it")
2293
 
  HELP_TEXT ("will sort by H S L; and if you click with")
2294
 
  HELP_TEXT ("the right mouse button, it will sort by L")
2295
 
  HELP_TEXT ("only. Note that you can choose a range of")
2296
 
  HELP_TEXT ("colors before sorting, and instead of the")
2297
 
  HELP_TEXT ("whole palette it will sort this range.")
2298
 
  HELP_TEXT ("")
2299
 
  HELP_TEXT ("- Used: Indicates the number of colors used")
2300
 
  HELP_TEXT ("in the picture.")
2301
 
  HELP_TEXT ("")
2302
 
  HELP_TEXT ("- Zap unused: Erases the unused colors with")
2303
 
  HELP_TEXT ("copies of the current selection. (The")
2304
 
  HELP_TEXT ("keyboard shortcut for this button is <Del>).")
2305
 
  HELP_TEXT ("")
2306
 
  HELP_TEXT ("- HSL: Switches between RGB and HSL color")
2307
 
  HELP_TEXT ("spaces. In HSL mode, the three sliders")
2308
 
  HELP_TEXT ("allow you to set the Hue (tint), Saturation")
2309
 
  HELP_TEXT ("(from grayscale to pure color) and")
2310
 
  HELP_TEXT ("Lightness (from black to white).")
2311
 
  HELP_TEXT ("")
2312
 
  HELP_TEXT ("- Reduce: Allows you to reduce the palette")
2313
 
  HELP_TEXT ("to the number of colors you want (and")
2314
 
  HELP_TEXT ("modifies the picture).")
2315
 
  HELP_TEXT ("")
2316
 
  HELP_TEXT ("- Undo: Allows you to recover the last")
2317
 
  HELP_TEXT ("modifications made on the palette. If the")
2318
 
  HELP_TEXT ("last operation modified the picture, it")
2319
 
  HELP_TEXT ("won't recover them: you'll have to click on")
2320
 
  HELP_TEXT ("Cancel to do so.")
2321
 
  HELP_TEXT ("")
2322
 
  HELP_TEXT ("")
2323
 
  HELP_TEXT ("If you press <Backspace>, the program will")
2324
 
  HELP_TEXT ("replace, as well as possible, some unused")
2325
 
  HELP_TEXT ("colors by the four default colors of the")
2326
 
  HELP_TEXT ("menu. The image won't look altered because")
2327
 
  HELP_TEXT ("the modified colors (in the case they were")
2328
 
  HELP_TEXT ("used on a few points) will be replaced by")
2329
 
  HELP_TEXT ("the closest colors in the rest of the")
2330
 
  HELP_TEXT ("palette. This option is really useful when")
2331
 
  HELP_TEXT ("you modify the palette so that there are no")
2332
 
  HELP_TEXT ("colors that fit for the menu (eg: \"Zap")
2333
 
  HELP_TEXT ("unused\" while very little colors are used in")
2334
 
  HELP_TEXT ("the picture; or \"Reduce\" with a very small")
2335
 
  HELP_TEXT ("number of colors).")
2336
 
  HELP_TEXT ("")
2337
 
  HELP_TEXT ("If you press the key below <Escape> or <,>")
2338
 
  HELP_TEXT ("(QWERTY), the menu will disappear and you")
2339
 
  HELP_TEXT ("will be able to pick up a color from the")
2340
 
  HELP_TEXT ("picture easily. Press <Escape> to cancel.")
2341
 
  HELP_TEXT ("")
2342
 
  HELP_TEXT ("If only one color is selected (not a block),")
2343
 
  HELP_TEXT ("the <[> and <]> keys can be used to select")
2344
 
  HELP_TEXT ("the previous or next Forecolor (Backcolor if")
2345
 
  HELP_TEXT ("you press <Shift> at the same time).")
2346
 
  HELP_TEXT ("")
2347
 
  HELP_TEXT ("Warning! If you press Undo after an action")
2348
 
  HELP_TEXT ("that modifies the picture (X-Swap, X-Invert")
2349
 
  HELP_TEXT ("and Reduce colors), the picture won't be")
2350
 
  HELP_TEXT ("remapped as it was just before this action.")
2351
 
  HELP_TEXT ("Only Cancel will.")
2352
 
  HELP_TEXT ("")
2353
 
  HELP_TITLE("PALETTE OPTIONS")
2354
 
  HELP_TEXT ("")
2355
 
  HELP_BOLD ("RIGHT CLICK")
2356
 
  HELP_LINK ("(Key:%s)",0x200+BUTTON_PALETTE)
2357
 
  HELP_TEXT ("")
2358
 
  HELP_TEXT ("Opens a menu from where you have the")
2359
 
  HELP_TEXT ("following options:")
2360
 
  HELP_TEXT ("")
2361
 
  HELP_TEXT ("- Colors for best match:")
2362
 
  HELP_TEXT ("A menu in which you can select the colors")
2363
 
  HELP_TEXT ("that have not to be used for smoothing, for")
2364
 
  HELP_TEXT ("the transparency mode, and for remapping.")
2365
 
  HELP_TEXT ("")
2366
 
  HELP_TEXT ("- User's color series:")
2367
 
  HELP_TEXT ("A menu in which you can define color series")
2368
 
  HELP_TEXT ("for next/previous user color shortcuts.")
2369
 
  HELP_TEXT ("It's the same settings than the shade mode.")
2370
 
  HELP_TEXT ("After you have some color ranges defined in")
2371
 
  HELP_TEXT ("this screen, you can use those shortcuts to")
2372
 
  HELP_TEXT ("move to the next or previous color according")
2373
 
  HELP_TEXT ("to your ranges:")
2374
 
  HELP_TEXT ("")
2375
 
  HELP_TEXT ("Foreground color")
2376
 
  HELP_TEXT ("")
2377
 
  HELP_LINK ("  Next    : %s",   SPECIAL_NEXT_USER_FORECOLOR)
2378
 
  HELP_LINK ("  Previous: %s",   SPECIAL_PREVIOUS_USER_FORECOLOR)
2379
 
  HELP_TEXT ("")
2380
 
  HELP_TEXT ("Background color")
2381
 
  HELP_LINK ("  Next    : %s",   SPECIAL_NEXT_USER_BACKCOLOR)
2382
 
  HELP_LINK ("  Previous: %s",   SPECIAL_PREVIOUS_USER_BACKCOLOR)
2383
 
  HELP_TEXT ("")
2384
 
  HELP_TEXT ("")
2385
 
  HELP_TEXT ("- Palette layout:")
2386
 
  HELP_TEXT ("Lets you customize the palette that appears")
2387
 
  HELP_TEXT ("on the right of the menu. You can choose the")
2388
 
  HELP_TEXT ("number of lines and columns.")
2389
 
  HELP_TEXT ("If you want the colors to run top to bottom,")
2390
 
  HELP_TEXT ("check the 'Vertical' button, otherwise the")
2391
 
  HELP_TEXT ("colors runs left to right.")
2392
 
  HELP_TEXT ("")
2393
 
  HELP_TEXT ("- RGB Scale:")
2394
 
  HELP_TEXT ("Lets you set the scale of the R G B sliders")
2395
 
  HELP_TEXT ("in the palette screen. You should normally")
2396
 
  HELP_TEXT ("leave it at 256 to get the full 0-255 range,")
2397
 
  HELP_TEXT ("but if you want to constrain the palette")
2398
 
  HELP_TEXT ("to the capabilities of some specific")
2399
 
  HELP_TEXT ("computers and consoles, you can choose eg:")
2400
 
  HELP_TEXT ("   64 : VGA")
2401
 
  HELP_TEXT ("   16 : Amiga")
2402
 
  HELP_TEXT ("    4 : MSX2")
2403
 
  HELP_TEXT ("    2 : Amstrad CPC")
2404
 
  };
2405
 
static const T_Help_table helptable_pal_scroll[] =
2406
 
{
2407
 
 
2408
 
  HELP_TITLE("SCROLL PAL")
2409
 
  HELP_TEXT ("")
2410
 
  HELP_BOLD ("LEFT CLICK")
2411
 
  HELP_TEXT ("")
2412
 
  HELP_TEXT ("Scrolls the palette window in the right of")
2413
 
  HELP_TEXT ("the menu.")
2414
 
  HELP_LINK ("Key for back:    %s",   0x100+BUTTON_PAL_LEFT)
2415
 
  HELP_LINK ("Key for forward: %s",   0x100+BUTTON_PAL_RIGHT)
2416
 
  HELP_TEXT ("")
2417
 
  HELP_BOLD ("RIGHT CLICK")
2418
 
  HELP_TEXT ("")
2419
 
  HELP_TEXT ("Same as above, but faster.")
2420
 
  HELP_LINK ("Key for back:    %s",   0x200+BUTTON_PAL_LEFT)
2421
 
  HELP_LINK ("Key for forward: %s",   0x200+BUTTON_PAL_RIGHT)
2422
 
  HELP_TEXT ("")
2423
 
};
2424
 
static const T_Help_table helptable_color_select[] =
2425
 
{
2426
 
 
2427
 
  HELP_TITLE("PALETTE")
2428
 
  HELP_TEXT ("")
2429
 
  HELP_BOLD ("LEFT CLICK")
2430
 
  HELP_TEXT ("")
2431
 
  HELP_TEXT ("Defines the Fore-color.")
2432
 
  HELP_TEXT ("")
2433
 
  HELP_BOLD ("RIGHT CLICK")
2434
 
  HELP_TEXT ("")
2435
 
  HELP_TEXT ("Defines the Back-color.")
2436
 
};
2437
 
static const T_Help_table helptable_hide[] =
2438
 
{
2439
 
 
2440
 
  HELP_TITLE("HIDE MENU")
2441
 
  HELP_TEXT ("")
2442
 
  HELP_TEXT ("Allows you to hide the menu. If you do this,")
2443
 
  HELP_TEXT ("take care to watch before the key to press")
2444
 
  HELP_TEXT ("to show the menu back (the key is")
2445
 
  HELP_LINK ("%s).",0x100+BUTTON_HIDE)
2446
 
 
2447
 
};
2448
 
 
2449
 
#define HELP_TABLE_DECLARATION(x) {x, sizeof(x)/sizeof(const T_Help_table)},
2450
 
 
2451
 
T_Help_section Help_section[] =
2452
 
{
2453
 
  HELP_TABLE_DECLARATION(helptable_about)
2454
 
  HELP_TABLE_DECLARATION(helptable_licence)
2455
 
  HELP_TABLE_DECLARATION(helptable_help)
2456
 
  HELP_TABLE_DECLARATION(helptable_credits)
2457
 
 
2458
 
  // Attention, keep the same order as BUTTON_NUMBERS:
2459
 
  HELP_TABLE_DECLARATION(helptable_paintbrush)
2460
 
  HELP_TABLE_DECLARATION(helptable_adjust)
2461
 
  HELP_TABLE_DECLARATION(helptable_draw)
2462
 
  HELP_TABLE_DECLARATION(helptable_curves)
2463
 
  HELP_TABLE_DECLARATION(helptable_lines)
2464
 
  HELP_TABLE_DECLARATION(helptable_airbrush)
2465
 
  HELP_TABLE_DECLARATION(helptable_floodfill)
2466
 
  HELP_TABLE_DECLARATION(helptable_polygons)
2467
 
  HELP_TABLE_DECLARATION(helptable_polyfill)
2468
 
  HELP_TABLE_DECLARATION(helptable_rectangles)
2469
 
  HELP_TABLE_DECLARATION(helptable_filled_rectangles)
2470
 
  HELP_TABLE_DECLARATION(helptable_circles)
2471
 
  HELP_TABLE_DECLARATION(helptable_filled_circles)
2472
 
  HELP_TABLE_DECLARATION(helptable_grad_rect)
2473
 
  HELP_TABLE_DECLARATION(helptable_spheres)
2474
 
  HELP_TABLE_DECLARATION(helptable_brush)
2475
 
  HELP_TABLE_DECLARATION(helptable_polybrush)
2476
 
  HELP_TABLE_DECLARATION(helptable_brush_fx)
2477
 
  HELP_TABLE_DECLARATION(helptable_effects)
2478
 
  HELP_TABLE_DECLARATION(helptable_text)
2479
 
  HELP_TABLE_DECLARATION(helptable_magnifier)
2480
 
  HELP_TABLE_DECLARATION(helptable_colorpicker)
2481
 
  HELP_TABLE_DECLARATION(helptable_resolution)
2482
 
  HELP_TABLE_DECLARATION(helptable_page)
2483
 
  HELP_TABLE_DECLARATION(helptable_save)
2484
 
  HELP_TABLE_DECLARATION(helptable_load)
2485
 
  HELP_TABLE_DECLARATION(helptable_settings)
2486
 
  HELP_TABLE_DECLARATION(helptable_clear)
2487
 
  HELP_TABLE_DECLARATION(helptable_general)
2488
 
  HELP_TABLE_DECLARATION(helptable_undo)
2489
 
  HELP_TABLE_DECLARATION(helptable_kill)
2490
 
  HELP_TABLE_DECLARATION(helptable_quit)
2491
 
  HELP_TABLE_DECLARATION(helptable_palette)
2492
 
  HELP_TABLE_DECLARATION(helptable_pal_scroll)
2493
 
  HELP_TABLE_DECLARATION(helptable_pal_scroll)
2494
 
  HELP_TABLE_DECLARATION(helptable_color_select)
2495
 
  HELP_TABLE_DECLARATION(helptable_hide)
2496
 
};