Commit graph

28 commits

Author SHA1 Message Date
anders_k
5744372364 Fix bug #1080, Unicode stubs must use RichEdit20W, otherwise EM_GETTEXTRANGE gives us ANSI strings
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6410 212acab6-be3b-0410-9dea-997c60f758d6
2013-08-15 23:14:12 +00:00
kichik
130074428e revert r5314 - if the banner plug-in shows IDD_VERIFY in its own thread and that thread sets it as the foreground window because of the WS_VISIBLE style, the main thread loses the ability to set the foreground window. this causes the installer window to start on the background if banner is used in .oninit.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5915 212acab6-be3b-0410-9dea-997c60f758d6
2009-02-01 12:32:34 +00:00
kichik
50b9472841 verification dialog is now never used hidden, so it can show itself using WS_VISIBLE
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5314 212acab6-be3b-0410-9dea-997c60f758d6
2007-10-03 22:08:37 +00:00
kichik
0e2f12e173 caption is not needed for license dialogs
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4123 212acab6-be3b-0410-9dea-997c60f758d6
2005-06-22 15:47:30 +00:00
kichik
8233ce2db2 made the agree radio button come before the disagree radio button in the license page's tab order so pressing the up key will move the selection up and not down
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3581 212acab6-be3b-0410-9dea-997c60f758d6
2004-07-01 20:22:38 +00:00
kichik
672e695976 - Added SS_NOPREFIX for the static control above the install log so both will show the same when an ampersand is present in the string
- Added another parameter for Name. It will be used in places where doubled ampersands are required for text to render as expected. Use it if you have an ampersand in your name. See the updated documentation about the Name command for more information about usage.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3288 212acab6-be3b-0410-9dea-997c60f758d6
2003-12-17 23:22:14 +00:00
kichik
70c6218a70 tab stop for license data - thanks Nick Allan
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3058 212acab6-be3b-0410-9dea-997c60f758d6
2003-10-24 14:07:46 +00:00
kichik
74ea2dc585 * PageEx - every page can be used everywhere and as many times as needed
* 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
2003-09-04 18:25:57 +00:00
kichik
1e438b3e87 Reverted Ramon's addition of SS_NOPREFIX. It causes trouble with ClearType, compatibility and doesn't allow the user to use accelerators for edit boxes anywhere.
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2790 212acab6-be3b-0410-9dea-997c60f758d6
2003-08-05 15:50:17 +00:00
kichik
4b3148727a DIALOGEX not DIALOG
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2786 212acab6-be3b-0410-9dea-997c60f758d6
2003-08-04 14:41:37 +00:00
ramon18
79a49562b3 SS_NOPREFIX for all STATIC controls, now is possible to name the installer as "My company & CO" for example
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2776 212acab6-be3b-0410-9dea-997c60f758d6
2003-07-29 20:25:42 +00:00
joostverburg
9396324581 more space for "Space required" label
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2706 212acab6-be3b-0410-9dea-997c60f758d6
2003-07-09 19:17:28 +00:00
kichik
564ca077d8 - Improved installation types behaviour
- .onSelChange no longer called when the components page is created
- First section is selected at compile time - changes in .onInit stick
- Added SectionSetSize / SectionGetSize
- Added SetCurInstType / GetCurInstType
- Added InstTypeSetText / InstTypeGetText - ability to change (and add and remove) installation types on runtime
- NSIS_MAX_INST_TYPES is now 32 by default
- InstType texts are now processed ($0, $1, etc. can be used)
- Added /o switch for Section - unselected by default


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2563 212acab6-be3b-0410-9dea-997c60f758d6
2003-05-24 13:50:24 +00:00
kichik
06c268f01c Bug #728281 fixed - system menu has everything enabled (including maximize) on Windows 9x
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2502 212acab6-be3b-0410-9dea-997c60f758d6
2003-04-28 16:30:28 +00:00
kichik
bad48f1a0a Some space saving changes, /NOCUSTOM and /COMPONENTSONLYONCUSTOM work together and infastructures for future changes
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2338 212acab6-be3b-0410-9dea-997c60f758d6
2003-03-18 20:36:52 +00:00
joostverburg
11f34a1095 better grouping
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2017 212acab6-be3b-0410-9dea-997c60f758d6
2002-12-29 21:41:12 +00:00
kichik
b68005b483 Minimize box
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1935 212acab6-be3b-0410-9dea-997c60f758d6
2002-12-11 16:01:20 +00:00
joostverburg
e09a3dcec7 increased size of component-page textarea
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1934 212acab6-be3b-0410-9dea-997c60f758d6
2002-12-11 14:31:23 +00:00
joostverburg
e11278afdd shell font
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1785 212acab6-be3b-0410-9dea-997c60f758d6
2002-11-18 15:53:32 +00:00
joostverburg
22611f295c removed useles constant
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1773 212acab6-be3b-0410-9dea-997c60f758d6
2002-11-17 16:44:56 +00:00
joostverburg
8c25188704 shell font
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1771 212acab6-be3b-0410-9dea-997c60f758d6
2002-11-17 16:12:20 +00:00
kichik
9eea87e3d7 Use MS Shell Dlg
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1697 212acab6-be3b-0410-9dea-997c60f758d6
2002-11-14 12:09:19 +00:00
joostverburg
28d52afa8c larger buttons
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1412 212acab6-be3b-0410-9dea-997c60f758d6
2002-10-14 15:52:44 +00:00
justin1014
f3bca60d70 Updated RichEdit usage to hopefully be better (still somewhat untested)
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@892 212acab6-be3b-0410-9dea-997c60f758d6
2002-09-03 18:49:24 +00:00
kichik
52892d7e6d Now always loads RichEdit2 if present
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@884 212acab6-be3b-0410-9dea-997c60f758d6
2002-09-03 11:25:47 +00:00
kichik
329f59cbd1 ChangeUI can change any dialog. Added UseOuterUIItem
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@656 212acab6-be3b-0410-9dea-997c60f758d6
2002-08-07 15:14:40 +00:00
kichik
878fbf5b66 Saved 8 bytes
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@631 212acab6-be3b-0410-9dea-997c60f758d6
2002-08-02 16:52:35 +00:00
kichik
3e9e73ec59 This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.


git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@625 212acab6-be3b-0410-9dea-997c60f758d6
2002-08-02 10:01:35 +00:00