
* DirVar - easy way to add another dir page * default strings in the language file (Page directory is enough, no need for DirText) * strings from the language file are now LangStrings that can be used in the script * no more /LANG - one string for all languages * any lang strings can be used everywhere, installer or uninstaller (no un.) * no more unprocessed strings - variables can be used almost everywhere (except in licenseData and InstallDirRegKey) * DirText parm for browse dialog text * SetBkColor -> SetCtlColors - can now set text color too * fixed SetOutPath and File /r bug * fixed File /a /oname bug * added $_CLICK for pages * added quotes support in lang files (patch #752620) * extraction progress * separate RTL dialogs for RTL langs (improved RTL too) * InstallOptions RTL * StartMenu RTL * fixed RegDLL? * added IfSilent and SetSilent (SetSilent only works from .onInit) * fixed verify window (it never showed) (bug #792494) * fixed ifnewer readonly file problem (patch #783782) * fixed wininit.ini manipulation when there is another section after [rename] * fixed some ClearType issues * fixed a minor bug in the resource editor * fixed !ifdef/!endif stuff, rewritten * lots of code and comments clean ups * got rid of some useless exceptions handling and STL classes (still much more to go) * lots of optimizations, of course ;) * updated system.dll with support for GUID, WCHAR, and fast VTable calling (i.e. COM ready) * minor bug fixes git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2823 212acab6-be3b-0410-9dea-997c60f758d6
47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
#ifndef _UI_H_
|
|
#define _UI_H_
|
|
|
|
extern int *cur_langtable;
|
|
|
|
int NSISCALL ui_doinstall(void);
|
|
void NSISCALL update_status_text(int strtab, const char *text2);
|
|
extern int ui_st_updateflag;
|
|
|
|
#ifdef NSIS_CONFIG_LOG
|
|
void NSISCALL build_g_logfile(void);
|
|
#endif
|
|
|
|
// sent to the last child window to tell it that the install thread is done
|
|
#define WM_NOTIFY_INSTPROC_DONE (WM_USER+0x4)
|
|
|
|
// sent to every child window to tell it it can start executing NSIS code
|
|
#define WM_NOTIFY_START (WM_USER+0x5)
|
|
|
|
// sent to the outer window to tell it to go to the next inner window
|
|
#define WM_NOTIFY_OUTER_NEXT (WM_USER+0x8)
|
|
|
|
// sent to every child window to tell it it is closing soon
|
|
#define WM_NOTIFY_INIGO_MONTOYA (WM_USER+0xb)
|
|
|
|
// update message used by DirProc and SelProc for space display
|
|
#define WM_IN_UPDATEMSG (WM_USER+0xf)
|
|
|
|
// the selected insttype has changed
|
|
#define WM_NOTIFY_INSTTYPE_CHANGE (WM_USER+0x32)
|
|
|
|
// custom pages should send this message to let NSIS know they're ready
|
|
#define WM_NOTIFY_CUSTOM_READY (WM_USER+0xd)
|
|
|
|
// simulates clicking on the tree
|
|
#define WM_TREEVIEW_KEYHACK (WM_USER+0x13)
|
|
|
|
// section text changed
|
|
#define WM_NOTIFY_SECTEXT WM_USER+0x17
|
|
|
|
// section flags changed
|
|
#define WM_NOTIFY_SECFLAGS WM_USER+0x18
|
|
|
|
// notifies a component selection change (.onMouseOverSection)
|
|
#define WM_NOTIFY_SELCHANGE WM_USER+0x19
|
|
|
|
#endif//_UI_H_
|