Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2002-02-16 | Windows classes unregistered at finalisation to avoid problems inside IE. | nyamatongwe | 1 | -27/+41 | |
Success of initialisation and finalisationreturned to caller. | |||||
2002-02-12 | Moved external lexer loading from initialisation of ScintillaWin object | nyamatongwe | 1 | -5/+4 | |
to Scintilla_RegisterClasses to avoid possibility of thread contention. | |||||
2002-02-12 | Avoiding incremental link and map file generation. | nyamatongwe | 1 | -1/+1 | |
2002-02-12 | Made font cache thread safe by using a critical section. | nyamatongwe | 2 | -15/+40 | |
2002-02-12 | Made compatible with const correctness done for superclass. | nyamatongwe | 2 | -4/+4 | |
2002-02-02 | Updated version number for 1.44. | nyamatongwe | 1 | -4/+4 | |
2002-01-18 | Updated copyrights for 2002. | nyamatongwe | 4 | -4/+4 | |
2002-01-18 | Updated version number to 1.43. | nyamatongwe | 1 | -6/+6 | |
2002-01-13 | Added TickerID typedef to ease merging FOX code. | nyamatongwe | 1 | -2/+2 | |
2002-01-10 | Made code bool-safe and turned Visual C++ warning 4800 back on. | nyamatongwe | 2 | -7/+11 | |
2002-01-10 | Patch from Kengo Jinno to make Japanese entry work on Windows 9x. | nyamatongwe | 1 | -4/+24 | |
More changes from Neil to avoid problem introduced by above with overstrike mode replacing one character with two. Comments about Digital Mars ifdefs. | |||||
2002-01-09 | Optimization that asks for the position of the scroll bar and does not set | nyamatongwe | 1 | -2/+15 | |
it if it does not change. Using scroll bar APIs that allow larger 32 bit values. | |||||
2002-01-03 | Compiation requires 2.95.3 now. | nyamatongwe | 1 | -1/+1 | |
2001-12-29 | Using HINSTANCE from Scintilla_RegisterClasses to find cursor so that | nyamatongwe | 2 | -2/+5 | |
static builds within DLLs will work. | |||||
2001-12-23 | Updated version numbers and dates for 1.42. | nyamatongwe | 1 | -4/+4 | |
2001-12-20 | Patch from stephan to avoid setting cursor to the same value multiple | nyamatongwe | 1 | -3/+4 | |
times on GTK+ as it is retained by the window. Minor cleanups. | |||||
2001-12-20 | Changed append method to +=. | nyamatongwe | 1 | -2/+1 | |
2001-12-20 | Changed use of SString::assign to SString::= as assign is now a private | nyamatongwe | 1 | -1/+1 | |
implementation detail. | |||||
2001-12-19 | Changed to shorter -mwindows option. | nyamatongwe | 1 | -1/+1 | |
2001-12-19 | Wrapping supported. | nyamatongwe | 1 | -6/+5 | |
2001-12-19 | Support Unicode in calltips. | nyamatongwe | 1 | -1/+1 | |
2001-12-19 | Hoisted IsUnicodeMode method from ScintillaWin to Editor as it is useful on | nyamatongwe | 1 | -23/+5 | |
all platforms. Using AutoSurface to simplify allocation of surfaces and ensure they are always deleted. | |||||
2001-12-05 | Added LexBaan. | nyamatongwe | 3 | -7/+18 | |
2001-12-01 | Removed old timeing code in favour of ElapsedTime class. | nyamatongwe | 1 | -14/+2 | |
2001-11-28 | Patch from Philippe to restore EM_GETSEL and EM_SETSEL on Windows, reformat | nyamatongwe | 2 | -107/+137 | |
source. Some addition of :: by me. | |||||
2001-11-19 | Added virtual GetCtrlID method so that the ID can change dynamically | nyamatongwe | 1 | -4/+9 | |
on Windoes when caused by SetWindowLong. | |||||
2001-11-15 | Changed to a more typesafe definition of ElapsedTime. | nyamatongwe | 1 | -16/+23 | |
2001-11-15 | Added ElapsedTime. | nyamatongwe | 1 | -0/+41 | |
2001-10-31 | Updated version number. | nyamatongwe | 1 | -4/+4 | |
2001-10-28 | Fixed some warnings from Visual C++. | nyamatongwe | 1 | -0/+4 | |
2001-10-28 | Hid implementation of Surface. | nyamatongwe | 2 | -97/+114 | |
Changed DrawText to DrawTextNoClip to avoid clash with macro. | |||||
2001-10-28 | Fixed Platform changes for GTK+ and hid most of the implementation of | nyamatongwe | 1 | -35/+96 | |
Surface. | |||||
2001-10-28 | Removed platform-specific headers from Platform.h and thus stopped | nyamatongwe | 3 | -208/+209 | |
visibility of these headers to most code. | |||||
2001-10-05 | Don't include zmouse.h with Digital Mars compiler. | nyamatongwe | 1 | -28/+36 | |
Disable IME code when compiling with Digital Mars as it doesn't have lib. | |||||
2001-10-05 | Fixed warning from Digital Mars compiler. | nyamatongwe | 1 | -1/+1 | |
2001-10-02 | Reinstated WM_GETTEXT as an alias of SCI_GETTEXT to allow some tools to | nyamatongwe | 1 | -0/+1 | |
grab the contents of a Scintilla control. | |||||
2001-09-29 | Bullant lexer added. | nyamatongwe | 3 | -1/+7 | |
2001-09-21 | Upgraded version number to 1.40. | nyamatongwe | 1 | -4/+4 | |
2001-09-19 | Inclusion of nncrontab lexer into builds. | nyamatongwe | 3 | -1/+10 | |
2001-09-09 | More translations from EM_* and WM_* to SCI_*. | nyamatongwe | 1 | -0/+6 | |
2001-09-08 | Edit control emulation moved here from Editor.cxx. | nyamatongwe | 1 | -0/+54 | |
2001-09-08 | Removed all traces of Win32 API from Scintilla API. Scintilla will no | nyamatongwe | 1 | -9/+0 | |
longer process WM_* or EM_* messages. | |||||
2001-09-02 | New StyleContext file added to build system. | nyamatongwe | 4 | -234/+112 | |
2001-09-01 | Using new SelectionText type to handle text that is the subject of copy, | nyamatongwe | 1 | -16/+15 | |
cut, paste and drag operations. Mouse wheel scrolling moved into platform subclasses. Macro support always included so MACRO_SUPPORT definition and use removed. Allowing menu popup moved from Editor to ScintillaBase. | |||||
2001-08-31 | Moved Windows-specific mouse wheel variables from Editor to ScintillaWin. | nyamatongwe | 1 | -11/+15 | |
2001-08-20 | Updated version number to 1.39. | nyamatongwe | 1 | -4/+4 | |
2001-08-10 | Fixed font resource leak caused by calltips. | nyamatongwe | 1 | -2/+1 | |
2001-08-02 | Reindented. | nyamatongwe | 1 | -36/+35 | |
2001-08-02 | Added PropSet to all Scintilla builds as it is needed by the | nyamatongwe | 2 | -1/+2 | |
autocompletion list for a string comparison. | |||||
2001-08-02 | Removed LBS_SORT flag on list box creation as may need to show list in | nyamatongwe | 1 | -1/+1 | |
a different order to default case insensitive sort. |