aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/PlatWin.cxx
AgeCommit message (Collapse)AuthorFilesLines
2003-09-27Removed ListBox::Sort as always created in sorted order.nyamatongwe1-5/+0
2003-08-12Fixed display of pixmaps in autocompletion lists.nyamatongwe1-3/+3
2003-05-09Fixed problem when missing reverse arrow cursor resource meant cursor ↵nyamatongwe1-1/+5
disappeared over margin.
2003-04-18Changed Function* to simpler Function.nyamatongwe1-2/+2
2003-04-18Cast to allow recent gcc and Borland compilers to build.nyamatongwe1-1/+2
2003-04-18Patch from Simon to make ExternalLexer platform independent.nyamatongwe1-0/+30
2003-04-09Limit the number of characters in string arguments to text drawing andnyamatongwe1-16/+17
measurement methods to 8192 on Windows 9x, otherwise thaere can be crashes.
2003-04-06Avoid calling API before Window created.nyamatongwe1-2/+3
2003-04-06Move method for Rectangle class.nyamatongwe1-4/+7
Ensure windows that are moved are not moved off screen to the top or left.
2003-04-05Changes to allow calltips to be popup rather than child windows.nyamatongwe1-5/+14
2003-03-30Make IDC_HAND visible with old build environments.nyamatongwe1-0/+4
Avoid calling ::IsChild when wParam 0 to avoid BoundsChecker warning.
2003-03-21Optimising by not drawing space characters in transparent mode.nyamatongwe1-15/+21
2003-03-20Patch from Simon Steele to implement the hotspot style and associatednyamatongwe1-0/+3
notifications.
2003-03-09Added Pango text display support to GTK+ platform.nyamatongwe1-6/+6
Added WindowID parameter to all Surface initialisation methods as Pango requires a window to determine the context used for text functions. AutoSurface changed because of above to take an Editor* argument so it can then discover the code page and window.
2003-02-23Patch from Jakub Vrana to avoid mouse debouncing on Windows where assigningnyamatongwe1-0/+4
a key to double click can result in two mouse clicks arriving with the same time.
2003-02-06Fixed bug in array resizing.nyamatongwe1-1/+2
2003-02-05Moved IsNT to PlatWin and cached the result.nyamatongwe1-3/+14
Change maximum number of pixels when measuring text on NT to be 1000000 rather than 30000 possible on Windows. Increased size of Unicode buffers to 10000 elements to handle longer paragraphs of text.
2003-02-02Transaprent text drawing.nyamatongwe1-1/+21
2003-01-31Fixes to autocompletion pixmaps from Mauritius Thinnes.nyamatongwe1-1/+3
2003-01-18Added SWP_NOZORDER to SetWindowPos to avoid fronting windows.nyamatongwe1-1/+1
2003-01-12Changes to make DBCS work on GTK+ and handle DBCS sequences longer than 2 bytes.nyamatongwe1-0/+8
2003-01-12Additions from Yukihiro Nakai to enable DBCS mode on GTK+.nyamatongwe1-0/+6
DBCS mode for Surface so that different font and text drawing code can be invoked on GTK+.
2003-01-10Made ListBox an interface so that a platform-specific subclass, ListBoxX,nyamatongwe1-30/+314
can be used hiding implementation details. Owner drawn listbox allows pixmap icons and Unicode text.
2003-01-03Made method signature compatible with text form XPMs.nyamatongwe1-1/+1
2002-11-21Patch from Biswa to add icons to autocompletion lists.nyamatongwe1-1/+4
2002-11-19Using strncpy to avoid crashes with long font names.nyamatongwe1-14/+14
2002-10-11Made some functions static as they should not be used from outside.nyamatongwe1-2/+2
2002-09-15Limiting the number of characters to ExtTextOut to be less than 65536nyamatongwe1-0/+6
as there appears to be a GDI 16 bit limitation.
2002-09-04Measure all characters in Unicode mode.nyamatongwe1-1/+1
2002-07-31Fixed problems with runs of text >= 5000 characters.nyamatongwe1-5/+11
2002-06-09Compatibility with 64 bit systems.nyamatongwe1-3/+8
2002-02-20Fixed bug where extra position element was written when measuring text innyamatongwe1-1/+0
Unicode mode.
2002-02-12Made font cache thread safe by using a critical section.nyamatongwe1-11/+27
2002-01-18Updated copyrights for 2002.nyamatongwe1-1/+1
2002-01-10Made code bool-safe and turned Visual C++ warning 4800 back on.nyamatongwe1-3/+3
2001-12-29Using HINSTANCE from Scintilla_RegisterClasses to find cursor so thatnyamatongwe1-1/+1
static builds within DLLs will work.
2001-12-20Patch from stephan to avoid setting cursor to the same value multiplenyamatongwe1-3/+4
times on GTK+ as it is retained by the window. Minor cleanups.
2001-11-28Patch from Philippe to restore EM_GETSEL and EM_SETSEL on Windows, reformatnyamatongwe1-6/+6
source. Some addition of :: by me.
2001-11-15Changed to a more typesafe definition of ElapsedTime.nyamatongwe1-16/+23
2001-11-15Added ElapsedTime.nyamatongwe1-0/+41
2001-10-28Fixed some warnings from Visual C++.nyamatongwe1-0/+4
2001-10-28Hid implementation of Surface.nyamatongwe1-67/+68
Changed DrawText to DrawTextNoClip to avoid clash with macro.
2001-10-28Fixed Platform changes for GTK+ and hid most of the implementation ofnyamatongwe1-35/+96
Surface.
2001-10-28Removed platform-specific headers from Platform.h and thus stoppednyamatongwe1-141/+125
visibility of these headers to most code.
2001-10-05Fixed warning from Digital Mars compiler.nyamatongwe1-1/+1
2001-08-10Fixed font resource leak caused by calltips.nyamatongwe1-2/+1
2001-08-02Reindented.nyamatongwe1-36/+35
2001-08-02Removed LBS_SORT flag on list box creation as may need to show list innyamatongwe1-1/+1
a different order to default case insensitive sort.
2001-05-24Prevented use of uninitialised data when somehing goes wrong withnyamatongwe1-0/+5
measuring text such as incomplete DBCS characters.
2001-04-05Replace target functionality to make find and replace operations fasternyamatongwe1-1/+4
by diminishing screen updates and allow for \d patterns in the replacement text.