aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.cxx
AgeCommit message (Collapse)AuthorFilesLines
2002-02-12Made font cache thread safe by using a critical section.nyamatongwe1-4/+13
2002-01-18Updated copyrights for 2002.nyamatongwe1-1/+1
2002-01-13Added TickerID typedef to ease merging FOX code.nyamatongwe1-2/+2
2002-01-10Made code bool-safe and turned Visual C++ warning 4800 back on.nyamatongwe1-4/+8
2002-01-10Patch from Kengo Jinno to make Japanese entry work on Windows 9x.nyamatongwe1-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-09Optimization that asks for the position of the scroll bar and does not setnyamatongwe1-2/+15
it if it does not change. Using scroll bar APIs that allow larger 32 bit values.
2001-12-29Using HINSTANCE from Scintilla_RegisterClasses to find cursor so thatnyamatongwe1-1/+4
static builds within DLLs will work.
2001-12-19Wrapping supported.nyamatongwe1-6/+5
2001-12-19Support Unicode in calltips.nyamatongwe1-1/+1
2001-12-19Hoisted IsUnicodeMode method from ScintillaWin to Editor as it is useful onnyamatongwe1-23/+5
all platforms. Using AutoSurface to simplify allocation of surfaces and ensure they are always deleted.
2001-12-01Removed old timeing code in favour of ElapsedTime class.nyamatongwe1-14/+2
2001-11-28Patch from Philippe to restore EM_GETSEL and EM_SETSEL on Windows, reformatnyamatongwe1-101/+131
source. Some addition of :: by me.
2001-11-19Added virtual GetCtrlID method so that the ID can change dynamicallynyamatongwe1-4/+9
on Windoes when caused by SetWindowLong.
2001-10-28Hid implementation of Surface.nyamatongwe1-30/+46
Changed DrawText to DrawTextNoClip to avoid clash with macro.
2001-10-28Removed platform-specific headers from Platform.h and thus stoppednyamatongwe1-66/+80
visibility of these headers to most code.
2001-10-05Don't include zmouse.h with Digital Mars compiler.nyamatongwe1-28/+36
Disable IME code when compiling with Digital Mars as it doesn't have lib.
2001-10-02Reinstated WM_GETTEXT as an alias of SCI_GETTEXT to allow some tools tonyamatongwe1-0/+1
grab the contents of a Scintilla control.
2001-09-09More translations from EM_* and WM_* to SCI_*.nyamatongwe1-0/+6
2001-09-08Edit control emulation moved here from Editor.cxx.nyamatongwe1-0/+54
2001-09-08Removed all traces of Win32 API from Scintilla API. Scintilla will nonyamatongwe1-9/+0
longer process WM_* or EM_* messages.
2001-09-01Using new SelectionText type to handle text that is the subject of copy,nyamatongwe1-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-31Moved Windows-specific mouse wheel variables from Editor to ScintillaWin.nyamatongwe1-11/+15
2001-08-01Use separate variable to remember if allocation occurred to avoid usingnyamatongwe1-3/+4
dangling pointer and upsetting BoundsChecker.
2001-07-04Stuck :: in front of GetParent as its a Windows API.nyamatongwe1-3/+3
2001-06-11Patch from Shane Caraveo at ActiveState to notify containers ofnyamatongwe1-4/+4
Unicode code characters correctly.
2001-05-21Update from Simon to make startup and finalise work properly.nyamatongwe1-9/+2
2001-05-20Support for IME input of Asian languages on W2K.nyamatongwe1-12/+39
2001-05-14When context menu caused by keyboard rather than mouse, show menunyamatongwe1-2/+10
near caret.
2001-05-01External lexer feature added by Simon allows lexers to be housed in DLLs withnyamatongwe1-0/+68
a .lexer extension which are automatically loaded at startup. Minor fix to IME support in ScintillaWin.cxx to deal with current mingw headers.
2001-04-30Forwarding state of Alt key to key map and using the returned consumednyamatongwe1-3/+11
parameter to see whether to call DefWindowProc. Added word part movement keys to key map even though they conflict with entering characters by number as that can be forced to work by entering Num Lock mode. WM_CHAR control key messages can go into the buffer now if they arrived from being entered by number by detecting when they were not consumed by key down processing.
2001-03-21Calling DefWindowProc if not showing context menu so container can do so.nyamatongwe1-1/+2
2001-02-27Patch from Philippe to regularise comments.nyamatongwe1-34/+34
2001-02-24Updated documentation comments from Philippe.nyamatongwe1-25/+44
2001-02-17Defining sptr_t and uptr_t to be integral types large enough to containnyamatongwe1-22/+22
pointers to allow portability to 64 bit platforms.
2001-02-06For CanPaste also check Editor::CanPaste to see if OK.nyamatongwe1-0/+2
2001-02-06Made SCI_CANPASTE and EM_CANPASTE work correctly usingnyamatongwe1-11/+12
IsClipboardFormatAvailable on Windows.
2001-02-05Patch from John to make GTK+ version build on Win32.nyamatongwe1-2/+2
Modified by me to avoid pointless warnings and print error message if try to build with Borland C++.
2001-01-27Much changed ScintillaGTK widget code that draws directly onto thenyamatongwe1-3/+2
Scintilla widget with no wDraw drawing area. Signals handled directly through callbacks.
2000-12-17Added Laurent's User List.nyamatongwe1-0/+1
2000-11-30Dragging shows no-go cursor if no good text format in drag.nyamatongwe1-1/+27
2000-10-05SetCursor implemented.nyamatongwe1-4/+4
2000-10-05Mouse capture doesn't always call ::GetCapture.nyamatongwe1-1/+2
Better line selection handling.
2000-10-03Mouse down captures now optional.nyamatongwe1-8/+20
Save and restore of assertion destination in paint.
2000-10-03Added PLATFORM_ASSERT which is a verson of the standard assert whichnyamatongwe1-1/+1
can be directed wither to debug output or message boxes on Windows.
2000-09-22Added SCI_GRABFOCUS handling.nyamatongwe1-0/+4
2000-09-22An hasFocus flag was added to separate logical focus from environmentnyamatongwe1-5/+3
determined focus. hasFocus determines whether the caret is displayed.
2000-09-05Removed testing code for assert call.nyamatongwe1-1/+1
2000-09-05makefile_vc and makefile_bor are replaced with scintilla.maknyamatongwe1-2/+3
2000-09-05Support for DEBUG or NDEBUG defines to make assert work.nyamatongwe1-1/+2
2000-08-21Merging patches from Ferda and Jan.nyamatongwe1-40/+54
Autocompletion flags for ignoring case and automatically choosing single items. WM_PAINT handling with passed HDC. Events in Scintilla.iface.