reactos/dll/win32/comctl32/comctl_Sv.rc

90 lines
3.3 KiB
Text
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
/*
* Copyright 2005 Andreas Bjerkeholt
*
* 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
*/
#include "comctl32.h"
LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
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
IDD_PROPSHEET DIALOG 0, 0, 220, 140
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
STYLE 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<73>ll", IDC_APPLY_BUTTON,112,122,50,14,WS_DISABLED
PUSHBUTTON "Hj<48>lp", IDHELP,166,122,50,14,WS_TABSTOP|WS_GROUP
CONTROL "Tab", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS|WS_GROUP|WS_TABSTOP|TCS_MULTILINE,4,4,212,114
END
IDD_WIZARD DIALOG 0, 0, 290, 159
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
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
CAPTION "Guide"
FONT 8, "MS Shell Dlg"
BEGIN
PUSHBUTTON "< &F<>reg<65>ende", IDC_BACK_BUTTON,71,138,50,14
Sync to Wine-20050725: Vitaliy Margolen <wine-patch@kievinfo.com> - Send CDDS_ITEMPOSTERASE | CDDS_PREPAINT notify. Felix Nawothnig <felix.nawothnig@t-online.de> - Move DPA and DSA functions out of comctl32undoc.c as they are documented by now. - Fix some DPA functions so they pass the new tests. - Don't invalidate the whole propsheet when the page is switched. Dimi Paun <dimi@lattica.com> - Silence uninitialized warnings. Robert Shearman <rob@codeweavers.com> - Call SetBkMode with the correct value from the NMTBCUSTOMDRAW structure. - Don't fill the NMTBCUSTOMDRAW structure in again for CDDS_POSTPAINT. - Remove redundant bBtnTransprnt value. - Height is now calculated based on the number of rows, not on the bounding rect. - Only call CalcToolbar in AutoSize if it has TBSTYLE_WRAPABLE or TBSTYLE_EX_UNDOC1 set. - Remove a bad test in SetButtonWidth that fixes a regression from the above change in IE. - Remove unnecessary nHeight data. - Remove duplicated code in Size by calling AutoSize. - Remove unnecessary bAutoSize value because SetWindowPos doesn't generate WM_SIZE when there is nothing to do on both Windows and Wine. - TBSTATE_INDETERMINATE only takes effect if the button is enabled, otherwise it should just appear like any other disabled button. - Native autosizes on inserting/adding buttons, so we should too. - The IsValidImageList test is not needed because if it isn't a valid image list we will have set the bitmap width and height to 1 and it does the wrong thing when no buttons are present. - The calculated button height should include the text height when no buttons are present. - Handle CopyImage and other functions failing by not adding the icon and notifying the caller. Thomas Weidenmueller <wine-patches@reactsoft.com> - Support PSH_WIZARDHASFINISH in wizards. - Correct tab order of the wizard buttons. - Support PSM_IDTOINDEX. Aric Stewart <aric@codeweavers.com> - When adding an image copy the full previous buffer. - Implement replacing an icon with one from a resource. Kevin Koltzau <kevin@plop.org> - Forward some header notifications to parent of listview. Frank Richter <frank.richter@gmail.com> - Enabled "tab" dialog texture for property sheet pages. - Add theming support for header controls. - Use theming for the ListView non-client area. - Let property sheets update the cached system colors upon receiving WM_SYSCOLORCHANGE. - Add theming for the up/down control. svn path=/trunk/; revision=17326
2005-08-12 16:31:56 +00:00
DEFPUSHBUTTON "&N<>sta >", IDC_NEXT_BUTTON,121,138,50,14
DEFPUSHBUTTON "Slutf<74>r", IDC_FINISH_BUTTON,121,138,50,14
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
PUSHBUTTON "Avbryt", IDCANCEL,178,138,50,14
PUSHBUTTON "Hj<48>lp", IDHELP,235,138,50,14,WS_GROUP
LTEXT "", IDC_SUNKEN_LINE,7,129,278,1,SS_SUNKEN
CONTROL "Tab", IDC_TABCONTROL,"SysTabControl32",WS_CLIPSIBLINGS | WS_DISABLED,7,7,258,5
LTEXT "", IDC_SUNKEN_LINEHEADER,0,35,290,1,SS_LEFT | SS_SUNKEN | WS_CHILD | WS_VISIBLE
END
IDD_TBCUSTOMIZE DIALOG 10, 20, 357, 125
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
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "Anpassa verktygsf<73>ltet"
FONT 8, "MS Shell Dlg"
BEGIN
DEFPUSHBUTTON "&St<53>ng", IDCANCEL,308,6,44,14
PUSHBUTTON "&<26>terst<73>ll", IDC_RESET_BTN,308,23,44,14
PUSHBUTTON "&Hj<48>lp", IDC_HELP_BTN,308,40,44,14
PUSHBUTTON "Flytta &upp", IDC_MOVEUP_BTN,308,74,44,14
PUSHBUTTON "Flytta &ned", IDC_MOVEDN_BTN,308,91,44,14
LTEXT "T&illg<6C>ngliga knappar:", -1,4,5,84,10
LISTBOX IDC_AVAILBTN_LBOX,4,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, 131, 42, 44, 14
PUSHBUTTON "<- &Ta bort", IDC_REMOVE_BTN,131,62,44,14
LTEXT "Knappar i v&erktygsf<73>ltet:", -1,182,5,85,10
LISTBOX IDC_TOOLBARBTN_LBOX, 182,17,120,100,LBS_NOTIFY | LBS_OWNERDRAWFIXED | LBS_HASSTRINGS | LBS_NOINTEGRALHEIGHT | LBS_DISABLENOSCROLL | WS_BORDER | WS_VSCROLL | WS_HSCROLL | WS_TABSTOP
END
STRINGTABLE
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
{
IDS_CLOSE "St<53>ng"
}
STRINGTABLE
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
{
IDM_TODAY "Idag:"
IDM_GOTODAY "G<> till idag"
}
STRINGTABLE
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
{
IDS_SEPARATOR "Separator"
}
STRINGTABLE
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
{
HKY_NONE "Ingen"
}