The 'Clear' function now clears with Transparent color instead of hard-coded 0. Outside edges of images are also drawn with this color. Reduced max layers to 16, for consistency with UI. Added help screens for Layer menu and Brush factory.
git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1349 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
44
helpfile.h
44
helpfile.h
@@ -1284,6 +1284,30 @@ static const T_Help_table helptable_brush_fx[] =
|
||||
HELP_TEXT ("")
|
||||
HELP_LINK ("- Save : (Key:%s)",SPECIAL_SAVE_BRUSH)
|
||||
HELP_TEXT ("Save a brush to disk.")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("")
|
||||
HELP_TITLE("BRUSH FACTORY")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("This menu allows you to run scripts. Scripts")
|
||||
HELP_TEXT ("are written in the Lua language, and allow")
|
||||
HELP_TEXT ("you to modify the brush (hence the name")
|
||||
HELP_TEXT ("'Brush factory'), or even modify the image")
|
||||
HELP_TEXT ("or palette, like a Photoshop filter. See")
|
||||
HELP_TEXT ("the online documentation for more help")
|
||||
HELP_TEXT ("on scripting.")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("You can select a script with the selector,")
|
||||
HELP_TEXT ("the bottom panel shows a short description")
|
||||
HELP_TEXT ("of what it does, and you can click Run to")
|
||||
HELP_TEXT ("launch it.")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("The scripts are located in the application's")
|
||||
HELP_TEXT ("data folder, under the '/scripts'")
|
||||
HELP_TEXT ("subdirectory. The list is refreshed each")
|
||||
HELP_TEXT ("time you open the window. Scripts are loaded")
|
||||
HELP_TEXT ("from disk when you run them.")
|
||||
HELP_TEXT ("")
|
||||
};
|
||||
static const T_Help_table helptable_effects[] =
|
||||
{
|
||||
@@ -2187,7 +2211,8 @@ static const T_Help_table helptable_clear[] =
|
||||
HELP_BOLD ("LEFT CLICK")
|
||||
HELP_LINK ("(Key:%s)",0x100+BUTTON_CLEAR)
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("Clears the picture with the color number 0.")
|
||||
HELP_TEXT ("Clears the picture with the color number 0,")
|
||||
HELP_TEXT ("or the transparent color of the picture.")
|
||||
HELP_TEXT ("")
|
||||
HELP_BOLD ("RIGHT CLICK")
|
||||
HELP_LINK ("(Key:%s)",0x200+BUTTON_CLEAR)
|
||||
@@ -2500,7 +2525,22 @@ static const T_Help_table helptable_layermenu[] =
|
||||
HELP_TEXT ("")
|
||||
HELP_LINK ("(Key:%s)",0x100+BUTTON_LAYER_MENU)
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("* Not implemented yet! *")
|
||||
HELP_TEXT ("In this menu you can set the following")
|
||||
HELP_TEXT ("options:")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("* Transparent color : This determines which")
|
||||
HELP_TEXT ("color index is considered transparent when")
|
||||
HELP_TEXT ("using layers. Click the button and then")
|
||||
HELP_TEXT ("click on the image to pick the right color,")
|
||||
HELP_TEXT ("or use ESC to cancel.")
|
||||
HELP_TEXT ("")
|
||||
HELP_TEXT ("* Transparent background : When this option")
|
||||
HELP_TEXT ("is checked, all pixels of the transparent")
|
||||
HELP_TEXT ("color on layer 1 (background layer) will")
|
||||
HELP_TEXT ("be tagged as transparent in the final image.")
|
||||
HELP_TEXT ("Check this option if you want to make a")
|
||||
HELP_TEXT ("transparent GIF or PNG. These are the only")
|
||||
HELP_TEXT ("file formats that support this option.")
|
||||
|
||||
};
|
||||
static const T_Help_table helptable_layertrans[] =
|
||||
|
||||
Reference in New Issue
Block a user