reactos/dll/win32/comctl32/lang/comctl_Sv.rc

101 lines
3.6 KiB
Plaintext
Raw Normal View History

Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
/*
* Top level resource file for Common Controls
*
* Copyright 1999 Bertho Stultiens
* Copyright 1999 Eric Kohl
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
*/
LANGUAGE LANG_SWEDISH, SUBLANG_DEFAULT
STRINGTABLE
{
IDS_CLOSE "Stäng"
}
STRINGTABLE
{
IDM_TODAY "Idag:"
IDM_GOTODAY "Gå till idag"
}
STRINGTABLE
{
IDS_SEPARATOR "Separator"
}
STRINGTABLE
{
HKY_NONE "Ingen"
}
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
STRINGTABLE
{
IDS_BUTTON_YES "&Yes"
IDS_BUTTON_NO "&No"
IDS_BUTTON_RETRY "&Retry"
IDS_BUTTON_OK "OK"
IDS_BUTTON_CANCEL "Cancel"
IDS_BUTTON_CLOSE "&Close"
}
IDD_PROPSHEET DIALOG 0, 0, 220, 140
STYLE DS_SHELLFONT | DS_CONTEXTHELP | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
CAPTION "Egenskaper för %s"
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
FONT 8, "MS Shell Dlg"
BEGIN
DEFPUSHBUTTON "OK", IDOK,4,122,50,14, WS_TABSTOP | WS_GROUP
PUSHBUTTON "Avbryt", IDCANCEL,58,122,50,14
PUSHBUTTON "&Verkställ", IDC_APPLY_BUTTON,112,122,50,14,WS_DISABLED
PUSHBUTTON "Hjälp", IDHELP,166,122,50,14,WS_TABSTOP|WS_GROUP
CONTROL "", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS|WS_GROUP|WS_TABSTOP|TCS_MULTILINE,4,4,212,114
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
END
IDD_WIZARD DIALOG 0, 0, 290, 159
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
CAPTION "Guide"
FONT 8, "MS Shell Dlg"
BEGIN
PUSHBUTTON "< &Föregående", IDC_BACK_BUTTON,56,138,55,14
DEFPUSHBUTTON "&Nästa >", IDC_NEXT_BUTTON,111,138,55,14
DEFPUSHBUTTON "Slutför", IDC_FINISH_BUTTON,111,138,55,14
PUSHBUTTON "Avbryt", IDCANCEL,173,138,55,14
PUSHBUTTON "Hjälp", IDHELP,235,138,55,14,WS_GROUP
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
LTEXT "", IDC_SUNKEN_LINE,7,129,278,1,SS_SUNKEN
CONTROL "", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS | WS_DISABLED,7,7,258,5
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
LTEXT "", IDC_SUNKEN_LINEHEADER,0,35,290,1,SS_LEFT | SS_SUNKEN | WS_CHILD | WS_VISIBLE
END
IDD_TBCUSTOMIZE DIALOG 10, 20, 395, 125
STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "Anpassa verktygsfältet"
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
FONT 8, "MS Shell Dlg"
BEGIN
DEFPUSHBUTTON "St&äng", IDCANCEL,320,6,70,14
PUSHBUTTON "&Återställ", IDC_RESET_BTN,320,23,70,14
PUSHBUTTON "&Hjälp", IDC_HELP_BTN,320,40,70,14
PUSHBUTTON "Flytta &upp", IDC_MOVEUP_BTN,320,74,70,14
PUSHBUTTON "Flytta &ned", IDC_MOVEDN_BTN,320,91,70,14
LTEXT "T&illgängliga knappar:", -1,4,5,120,10
LISTBOX IDC_AVAILBTN_LBOX,5,17,120,100, LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
PUSHBUTTON "&Lägg till ->", IDOK, 132, 42, 55, 14
PUSHBUTTON "<- &Ta bort", IDC_REMOVE_BTN,132,62,55,14
LTEXT "Knappar i v&erktygsfältet:", -1,194,5,120,10
LISTBOX IDC_TOOLBARBTN_LBOX, 194,17,120,100,LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
Sync to Wine-20050419: Robert Shearman <rob@codeweavers.com> - Fix TB_GETBUTTONSIZE to return the correct width/height for no buttons. - Use ES_AUTOHSCROLL for edit box. - Fix size passed to SPI_NONCLIENTMETRICS. - iSelectedImage is allowed to be 0. - Use SetWindowPos to move the buddy window into position instead of destroying it and recreating it at the new position. - Clear the background in WM_VSCROLL to avoid problems with antialiased text drawing on top of itself multiple times. Dimitrie O. Paun <dpaun@rogers.com> - Use {Alloc,ReAlloc,Free}() instead of Heap{Alloc,ReAlloc,Free}(). - Fix a memory leak in toolbar. Avoid casts. - Complete unicodification of the toolbar common control. - Move a header comment for consistency with the other controls. - Very small alignment fixes. - Add support for LVN_ODSTATECHANGED. - Minor typo fixes. - Handle wParam in WM_PAINT properly: if non-null, it is the hdc we are supposed to use to draw into. - Complete unicodification of the propsheet common control. - Complete unicodification of the flatsb common control. - Pull the WM_TIMER handling into its own function. - ANIMATE_DrawFrame shouldn't worry about locking, the lock should be held by the caller. - Delete the critical section when freeing up the infoPtr. - Audit the control against Comctl32.dll version 6.0. - Proper handling of GWL_STYLE. - Implement WM_CLOSE. Fix WM_SIZE implementation. - Small cleanups. - Cleanup and simplify the painting code. - Fix a potential bug along the way. - Unicodification and typesafe interfaces. - Complete unicodification. - Complete unicodification of the rebar common control. - Add Robert Shearman's explanation about WM_NCPAINT. - Move testing comments in a more appropriate place. - Proper handling for GWL_STYLE. - Store and use hwndSelf in the PAGER_INFO. - Pass the infoPtr around instead of hwnd. - Use proper types in the function signatures. - Fix a few return statements. - MonthCal unicodification. - Tab unicodification. - Keep track of WS_DISABLED explicitely, as it doesn't generate a WM_STYLECHANGED message. - Minor cleanups. - Complete unicodification of the tooltips common control. - Complete the unicodification of comctl32undoc. - Complete unicodification of the header common control. - Complete unicodification of the treeview common control. - Audit the code against Comctl32.dll version 6.0. - Handle notification and styles as in the other controls. - Maintain the const for strings throughout parsing. Francois Gouget <fgouget@free.fr> - Assorted spelling fixes. Jakob Eriksson <jakov@vmlinux.org> - Get rid of HeapAlloc casts. - Eliminate HeapAlloc casts. Alexandre Julliard <julliard@winehq.org> - Revert changes to the painting code, the WM_CTLCOLORSTATIC message should not be sent from the animation thread. Duane Clark <dclark@akamail.com> - Misc rectangle fixes. - The date should be initialized from local time. - Monday is day number '1'. - Set day of week when a day is selected in the calender. - Use fixed width fields in datetime. - DTS_TIMEFORMAT is a two bit field, so test accordingly. - Reposition and resize the updown control when the datetime control is resized. - Respond to updown inputs. - The datetime should be initialized with local time. - Add support for direct keyboard input to numeric fields. - Hour '0' corresponds to 12AM. Vitaliy Margolen <wine-devel@kievinfo.com> - Draw only visible tabs. - Don't redraw if no information has changed. - Fixed endless redraw loop if app using callback for images and/or text. - Keep color changes made by app for the current draw cycle. - Send notifies after invalidating changed areas. - Don't use custom draw returned colors for control. C. Scott Ananian <cscott@cscott.net> - UPDOWN_GetBuddyInt should not fail when the control is empty. Peter Berg Larsen <pebl@math.ku.dk> - Replace strncpy with memcpy or lstrcpyn. Huw Davies <huw@codeweavers.com> - The depth of the colour bitmap needs to match that of the screen. Jason Edmeades <us@the-edmeades.demon.co.uk> - Make the treeview correctly search when the top index is selected. Evan Deaubl <wine@warpedview.com> - TREEVIEW_DoSelectItem should not do any of the TVGN_FIRSTVISIBLE work if the newSelect parameter is NULL. Eric Pouech <pouech-eric@wanadoo.fr> - Removed excessive statement (break after return or goto, not useful break, not needed vars...) svn path=/trunk/; revision=14735
2005-04-21 21:01:05 +00:00
END