Added new function LockWindow for flickering problems workaround, fixed crash on NSISdl, fixed focus button redraw

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3115 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
ramon18 2003-11-09 22:45:25 +00:00
parent a97fc1a9b2
commit 48a62f51e8
11 changed files with 89 additions and 31 deletions

View file

@ -5025,6 +5025,22 @@ int CEXEBuild::doCommand(int which_token, LineParser &line)
return PS_ERROR;
#endif// NSIS_CONFIG_PLUGIN_SUPPORT
#ifdef NSIS_LOCKWINDOW_SUPPORT
case TOK_LOCKWINDOW:
SCRIPT_MSG("LockWindow: lock state=%d\n",line.gettoken_str(1));
ent.which=EW_LOCKWINDOW;
ent.offsets[0]=line.gettoken_enum(1,"on\0off\0");
if ( ent.offsets[0] == -1 )
PRINTHELP();
return add_entry(&ent);
#else
case TOK_LOCKWINDOW:
{
ERROR_MSG("Error: %s specified, NSIS_LOCKWINDOW_SUPPORT not defined.\n",line.gettoken_str(0));
}
return PS_ERROR;
#endif // NSIS_LOCKWINDOW_SUPPORT
default: break;
}