Dylan Smith [Thu, 26 Jun 2008 20:17:38 +0000 (16:17 -0400)]
riched32: Added class style to process double click events.
Dylan Smith [Thu, 26 Jun 2008 20:17:32 +0000 (16:17 -0400)]
richedit: Caret size must match font size characters to be inserted.
When the caret is at the start of a run, it uses the font of the
previous run for inserting characters. The caret size previously was
the wrong height for the characters being inserted when the caret was at
the start of a line, but not the start of a paragraph so this patch
fixes this bug.
Dylan Smith [Thu, 26 Jun 2008 20:17:22 +0000 (16:17 -0400)]
richedit: Fixed mistake that didn't cause a bug.
The check to see if the dwOutputBuffer is full was performed incorrectly
in RTFPutUnicodeString, however, this mistake was actually harmless
since it would just cause an extra loop that does nothing, then the
check would work properly with the variable fit equal to 0.
Dylan Smith [Thu, 26 Jun 2008 20:17:25 +0000 (16:17 -0400)]
richedit: Set error codes and stop parsing for some rtf syntax errors.
Checks were added for hexadecimal values that did not have valid
characters, and for EOF received before the final closing brace of the
rich text stream. The error values were tested on richedit versions 1,
2, 3 & 4.1, and they were all the same for these cases.
Dylan Smith [Thu, 26 Jun 2008 20:17:17 +0000 (16:17 -0400)]
richedit: Removed redundant code for getting the insert style.
The function ME_GetInsertStyle already checks for the case where there
is a selection, so there is no need to duplicate this code for
ME_GetSelectionInsertStyle.
Nikolay Sivov [Thu, 26 Jun 2008 14:07:04 +0000 (18:07 +0400)]
gdiplus: Implementation of GdipAddPathPolygon with tests.
Jon Griffiths [Tue, 24 Jun 2008 20:54:59 +0000 (13:54 -0700)]
c2man: Correct extension for non-dlls (based on a patch by Vijay Kamuju).
Dylan Smith [Wed, 25 Jun 2008 14:29:19 +0000 (10:29 -0400)]
richedit: Implemented undo coalescing to group typing events.
Consecutively typed characters are grouped together to be undone
together. The grouping of typed characters can be stopped by certain
events that are mentioned in MSDN's remarks on the EM_STOPGROUPTYPING
message, which is also implemented by this patch.
Dylan Smith [Wed, 25 Jun 2008 15:51:17 +0000 (11:51 -0400)]
richedit: Make cursor visible when selecting via mouse above/below editor.
Dylan Smith [Wed, 25 Jun 2008 15:47:37 +0000 (11:47 -0400)]
richedit: Fixed bug preventing bold from being set with EM_SETCHARFORMAT.
Previously bold needed to be set by setting CFM_WEIGHT in the
CHARFORMAT2 structure, and then setting the appropriate wWeight value.
This approach isn't even supported in version 3.0 of the richedit
control. Now bold can be set/unset properly for Windows or Wine using
CFE_BOLD in dwEffects and with CFM_BOLD set in the dwMask flag.
Dylan Smith [Wed, 25 Jun 2008 15:40:39 +0000 (11:40 -0400)]
richedit: Corrected the conversion used for the initial font size.
The LOGFONT's lfHeight member is in logical units, and is being used to
set the yHeight member of CHARFORMAT2 which is supposed to be in twips.
Dylan Smith [Wed, 25 Jun 2008 15:33:40 +0000 (11:33 -0400)]
richedit: Moved function declarations in header to reflect locations of definitions.
Dylan Smith [Wed, 25 Jun 2008 15:33:32 +0000 (11:33 -0400)]
richedit: Added tests reveal a problem with EM_SETCHARFORMAT's affect on the undo stack.
Dylan Smith [Wed, 25 Jun 2008 15:33:26 +0000 (11:33 -0400)]
richedit: Fixed a bug preventing NULL pointers from being in text.
Opening a text file with a NULL terminated character in it was causing
an assertion error after a run was being split due to word wrap.
Windows allows NULL terminated characters to be in the text.
Dylan Smith [Wed, 25 Jun 2008 15:33:19 +0000 (11:33 -0400)]
richedit: Fixed the forward word movement bug.
Using Ctrl-RightArrow to move to the start of the next word did not
previously work when at the start of a word. This means that
Ctrl-RightArrow would not work twice in a row since it should move to
the start of the next word.
Dylan Smith [Wed, 25 Jun 2008 15:33:13 +0000 (11:33 -0400)]
richedit: Prevented an assertion error on startup when run on Windows.
The call to GetClientRect returns 0 values for the returned RECT when
called in WM_NCCREATE in on Windows, which ended up causing an assertion
error when Wine's riched20.dll replaces the native version. Moving the
call to WM_CREATE fixes this problem (probably because NCCALCSIZE is
called in between).
Dylan Smith [Wed, 25 Jun 2008 15:33:06 +0000 (11:33 -0400)]
richedit: Prevented NULL value from being used to avoid a page fault.
Dylan Smith [Wed, 25 Jun 2008 15:32:59 +0000 (11:32 -0400)]
richedit: Show caret after pasting or streaming in text.
There was a missing call to ShowCaret after the caret was created.
Dylan Smith [Wed, 25 Jun 2008 15:32:52 +0000 (11:32 -0400)]
richedit: Null pointer check missing on optional parameter.
The function ME_FindRunInRow uses two parameters to return values by
reference, and treated these parameters as if they were optional except
for the start of the function which set *pbCaretAtEnd without checking
to see if was a NULL pointer.
Dylan Smith [Wed, 25 Jun 2008 13:58:05 +0000 (09:58 -0400)]
richedit: Added missing defines and structures to richedit.h.
Alexandre Julliard [Thu, 26 Jun 2008 19:10:57 +0000 (21:10 +0200)]
ntdll: Force execute permission again on the stack after clearing it.
Alexandre Julliard [Thu, 26 Jun 2008 19:10:25 +0000 (21:10 +0200)]
widl: [default] is an allowed attribute for union fields.
Francois Gouget [Thu, 26 Jun 2008 12:08:59 +0000 (14:08 +0200)]
wined3d: Add a trailing '\n' to a couple of shader_addline() calls.
Francois Gouget [Thu, 26 Jun 2008 12:07:44 +0000 (14:07 +0200)]
shlwapi: Don't use Unix functions for case sensitive string comparisons.
Francois Gouget [Thu, 26 Jun 2008 13:59:05 +0000 (15:59 +0200)]
configure: Fix the isinf() detection. Fixes compilation on Solaris.
Francois Gouget [Thu, 26 Jun 2008 12:05:57 +0000 (14:05 +0200)]
configure: Detect and use gld/gnm/gar as alternatives to ld/nm/ar, especially for winegcc.
Lei Zhang [Thu, 26 Jun 2008 03:40:21 +0000 (20:40 -0700)]
mshtml: Remove unneeded variable.
Dan Hipschman [Wed, 25 Jun 2008 23:31:39 +0000 (16:31 -0700)]
riched20: Implement ITextDocument_fnGetSelection.
Detlef Riekenberg [Wed, 25 Jun 2008 22:01:55 +0000 (00:01 +0200)]
rpcrt4: Add a stub for I_RpcBindingInqTransportType.
Andrew Talbot [Wed, 25 Jun 2008 21:42:04 +0000 (22:42 +0100)]
mpr: Fix some memory leaks.
Zac Brown [Wed, 25 Jun 2008 16:57:14 +0000 (09:57 -0700)]
winealsa.drv: Initialize a variable in MIX_close.
Alexandre Julliard [Thu, 26 Jun 2008 14:49:23 +0000 (16:49 +0200)]
server: Fix a potential desktop reference leak.
Alexandre Julliard [Thu, 26 Jun 2008 14:49:09 +0000 (16:49 +0200)]
winex11: Don't create a win data structure for HWND_MESSAGE windows.
Alexandre Julliard [Thu, 26 Jun 2008 14:47:42 +0000 (16:47 +0200)]
winex11: Explicitly request creation of the thread display where necessary.
Alexandre Julliard [Thu, 26 Jun 2008 14:21:32 +0000 (16:21 +0200)]
winex11: Get rid of the explicit colormap management.
Alexandre Julliard [Thu, 26 Jun 2008 14:20:02 +0000 (16:20 +0200)]
winex11: Pass the display as parameter to a few more functions instead of using thread_display().
Alexandre Julliard [Thu, 26 Jun 2008 13:08:08 +0000 (15:08 +0200)]
winex11: Explicitly request creation of the per-thread data where necessary.
Alexandre Julliard [Thu, 26 Jun 2008 11:42:09 +0000 (13:42 +0200)]
wine.inf: Make the initial owner information empty.
Filipe Ferreira [Tue, 24 Jun 2008 02:27:46 +0000 (22:27 -0400)]
winecfg: Added Windows registration information setting.
Anatoly Lyutin [Wed, 25 Jun 2008 12:40:41 +0000 (16:40 +0400)]
user32/tests:c Add msg tests for SetActiveWindow().
Alexandre Julliard [Thu, 26 Jun 2008 11:22:16 +0000 (13:22 +0200)]
ole32: Make the apartment window a HWND_MESSAGE window.
Nikolay Sivov [Mon, 23 Jun 2008 21:57:27 +0000 (01:57 +0400)]
gdiplus: GdipClearPathMarkers implementation.
Nikolay Sivov [Mon, 23 Jun 2008 21:57:22 +0000 (01:57 +0400)]
gdiplus: GdipSetPathMarker implementation.
Nikolay Sivov [Mon, 23 Jun 2008 21:57:15 +0000 (01:57 +0400)]
gdiplus: GdipPathIterGetCount implementation.
Lei Zhang [Mon, 23 Jun 2008 20:34:16 +0000 (13:34 -0700)]
comctl32: Use the system variable pitch font for ip address controls.
Owen Rudge [Mon, 23 Jun 2008 19:08:15 +0000 (20:08 +0100)]
shell32/tests: Add basic ParseDisplayName test for control panel.
Owen Rudge [Mon, 23 Jun 2008 19:08:01 +0000 (20:08 +0100)]
shell32/tests: Rename shfldr_netplaces test to shfldr_special, for all special folders.
Vitaly Lipatov [Mon, 23 Jun 2008 14:01:41 +0000 (18:01 +0400)]
user32: Add test for SPI_{GET/SET}WHEELSCROLLCHARS for SystemParametersInfo.
Vitaly Lipatov [Mon, 23 Jun 2008 12:57:32 +0000 (16:57 +0400)]
user32: Implemented processing SPI_{GET/SET}WHEELSCROLLCHARS for SystemParametersInfo.
Vitaly Lipatov [Tue, 27 May 2008 15:03:44 +0000 (19:03 +0400)]
user32: Implemented processing SPI_{GET/SET}SNAPTODEFBUTTON for SystemParametersInfo.
Scott Ritchie [Sun, 22 Jun 2008 22:11:39 +0000 (15:11 -0700)]
wine.desktop: Add application/x-msi and change "emulator" to "program loader".
Nikolay Sivov [Wed, 25 Jun 2008 17:56:27 +0000 (21:56 +0400)]
gdiplus: Fix GdipGetPathData implementation and test.
Previous version (commit
3bacdaf664593b720afeb55a94225aab5aa04c80) was totally incorrect.
Thanks to Paul Vriens for pointing this out.
Jacek Caban [Thu, 26 Jun 2008 00:34:59 +0000 (19:34 -0500)]
urlmon: Make file protocol invalid URL handling behave like IE7.
Maarten Lankhorst [Tue, 24 Jun 2008 03:10:19 +0000 (20:10 -0700)]
quartz: Downgrade a fixme to a warn in dsoundrender.
Hwang YunSong(황윤성) [Thu, 26 Jun 2008 00:51:54 +0000 (09:51 +0900)]
shell32: Updated Korean resource.
Rob Shearman [Wed, 25 Jun 2008 17:27:08 +0000 (18:27 +0100)]
rpcrt4: Add tests for endpoint mapper functions.
Rob Shearman [Wed, 25 Jun 2008 17:27:03 +0000 (18:27 +0100)]
rpcrt4/rpcss: Remove old named pipe code for communicating with RPCSS process.
Rob Shearman [Wed, 25 Jun 2008 17:26:56 +0000 (18:26 +0100)]
rpcrt4: Use DCE/RPC to contact the endpoint-mapper server.
Rob Shearman [Wed, 25 Jun 2008 17:26:48 +0000 (18:26 +0100)]
rpcss: Implement endpoint-mapper server using DCE/RPC.
Jacek Caban [Thu, 26 Jun 2008 00:28:53 +0000 (19:28 -0500)]
mshtml: Added DOCUMENT_NODE type support.
Jacek Caban [Thu, 26 Jun 2008 00:28:37 +0000 (19:28 -0500)]
mshtml: Added IHTMLDOMNode::get_parentNode implementation.
Jacek Caban [Thu, 26 Jun 2008 00:28:21 +0000 (19:28 -0500)]
mshtml: Added useful TRACEs.
Jacek Caban [Thu, 26 Jun 2008 00:28:05 +0000 (19:28 -0500)]
mshtml: Added IHTMLElement::get_offsetTop implementation.
Eric Durbin [Wed, 25 Jun 2008 03:49:49 +0000 (22:49 -0500)]
iphlpapi: Implement getArpTable on FreeBSD.
Eric Durbin [Wed, 25 Jun 2008 03:49:15 +0000 (22:49 -0500)]
iphlpapi: Implement getNumArpEntries on FreeBSD.
Eric Durbin [Wed, 25 Jun 2008 03:47:33 +0000 (22:47 -0500)]
iphlpapi: Implement getTCPStats on FreeBSD.
Eric Durbin [Wed, 25 Jun 2008 03:46:39 +0000 (22:46 -0500)]
iphlpapi: Fix a typo resulting in wrong variable assignment.
Eric Durbin [Wed, 25 Jun 2008 03:45:51 +0000 (22:45 -0500)]
iphlpapi: Implement getICMPStats on FreeBSD.
Eric Durbin [Wed, 25 Jun 2008 03:45:01 +0000 (22:45 -0500)]
iphlpapi: Downgrade some ERR messages to WARN.
Eric Durbin [Wed, 25 Jun 2008 03:44:41 +0000 (22:44 -0500)]
iphlpapi: Implement getIPStats on FreeBSD.
Eric Durbin [Wed, 25 Jun 2008 03:44:13 +0000 (22:44 -0500)]
iphlpapi: Implement getUDPStats on FreeBSD.
Eric Durbin [Wed, 25 Jun 2008 03:43:21 +0000 (22:43 -0500)]
iphlpapi: Implement getNumUdpEntries on FreeBSD.
Eric Durbin [Wed, 25 Jun 2008 03:42:51 +0000 (22:42 -0500)]
iphlpapi: Implement getInterfaceStatsByName on FreeBSD.
Alex Villacís Lasso [Wed, 25 Jun 2008 06:22:00 +0000 (01:22 -0500)]
richedit: Fix failing EM_GETCHARFORMAT test on all platforms.
Default richedit font (System) in Windows causes richedit to report
CFM_BOLD as always set. Switch to Courier New in order to see that
richedit really sets the CFM_BOLD attribute in the correct selection.
Juan Lang [Wed, 25 Jun 2008 16:42:16 +0000 (09:42 -0700)]
inetmib1: Sort the tables keyed by IP address, and use bsearch to find entries in them.
Juan Lang [Wed, 25 Jun 2008 16:39:47 +0000 (09:39 -0700)]
inetmib1: Support the MIB2 UDP statistics.
Juan Lang [Wed, 25 Jun 2008 16:39:03 +0000 (09:39 -0700)]
inetmib1: Use a helper function to set the Oid with an item.
Juan Lang [Wed, 25 Jun 2008 16:38:27 +0000 (09:38 -0700)]
inetmib1: Use a helper function to set the Oid with an integer instance.
Juan Lang [Wed, 25 Jun 2008 16:35:13 +0000 (09:35 -0700)]
inetmib1: Use a helper function to set the Oid with an IP address-based instance.
Juan Lang [Wed, 25 Jun 2008 16:34:40 +0000 (09:34 -0700)]
inetmib1: Support the MIB2 IP net (ARP) table.
Juan Lang [Wed, 25 Jun 2008 16:33:28 +0000 (09:33 -0700)]
inetmib1: Support the MIB2 IP route table.
Juan Lang [Wed, 25 Jun 2008 16:31:56 +0000 (09:31 -0700)]
inetmib1: Support the MIB2 TCP statistics.
Juan Lang [Wed, 25 Jun 2008 16:30:59 +0000 (09:30 -0700)]
inetmib1: Use a helper function to get the item and instance of the MIB2 IP address table.
Juan Lang [Wed, 25 Jun 2008 16:29:00 +0000 (09:29 -0700)]
inetmib1: Use a helper function to get the item from the Oid.
Juan Lang [Wed, 25 Jun 2008 16:27:53 +0000 (09:27 -0700)]
inetmib1: Use a helper function to get the item and instance of the MIB2 interface table.
Rob Shearman [Wed, 25 Jun 2008 17:29:14 +0000 (18:29 +0100)]
include: Add more interfaces and types to msinkaut.idl.
Rob Shearman [Wed, 25 Jun 2008 17:29:06 +0000 (18:29 +0100)]
include: Don't import files in control.idl that aren't imported on Windows.
Rob Shearman [Wed, 25 Jun 2008 17:28:59 +0000 (18:28 +0100)]
include: Add more IXMLDOMNotation, IXMLDOMEntity, IXMLDOMEntityReference and IXMLDOMImplementation interfaces to xmldom.idl.
Adam Petaccia [Sat, 21 Jun 2008 17:02:56 +0000 (13:02 -0400)]
gdiplus: Tests for new font functions.
Adam Petaccia [Sat, 21 Jun 2008 17:02:55 +0000 (13:02 -0400)]
gdiplus: Implement GdipGetFontSize.
Adam Petaccia [Sat, 21 Jun 2008 17:02:54 +0000 (13:02 -0400)]
gdiplus: Implement GdipGetFontUnit.
Adam Petaccia [Sat, 21 Jun 2008 17:02:53 +0000 (13:02 -0400)]
gdiplus: Implement GdipCreateFont.
Adam Petaccia [Sat, 21 Jun 2008 17:02:52 +0000 (13:02 -0400)]
gdiplus: Tests for GetGeneric*.
Adam Petaccia [Sat, 21 Jun 2008 17:02:51 +0000 (13:02 -0400)]
gdiplus: Tests for FontFamily.
Adam Petaccia [Sat, 21 Jun 2008 17:02:50 +0000 (13:02 -0400)]
gdiplus: Implement GdipGetGeneric*.
Adam Petaccia [Sat, 21 Jun 2008 17:02:49 +0000 (13:02 -0400)]
gdiplus: Implement GdipGetFamilyName.
Adam Petaccia [Sat, 21 Jun 2008 17:02:48 +0000 (13:02 -0400)]
gdiplus: Implement GdipDeleteFontFamily.
Adam Petaccia [Sat, 21 Jun 2008 17:02:47 +0000 (13:02 -0400)]
gdiplus: Implement GdipCreateFontFamilyFromName.
Huw Davies [Wed, 25 Jun 2008 16:12:25 +0000 (17:12 +0100)]
localspl: Ensure that we load winspool before spoolss to work around a circular dependence.
H. Verbeet [Wed, 25 Jun 2008 15:09:35 +0000 (17:09 +0200)]
d3d9: Unset the pixel shader at the end of cnd_test().
This prevents failures in subsequent tests when no PS2.0 support is present.