Changeset 2163 for trunk/src


Ignore:
Timestamp:
Dec 20, 1999, 7:22:28 PM (26 years ago)
Author:
achimha
Message:

put back Christoph's customize dialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/toolbar.c

    r2162 r2163  
    1 /* $Id: toolbar.c,v 1.20 1999-12-20 17:54:26 achimha Exp $ */
     1/* $Id: toolbar.c,v 1.21 1999-12-20 18:22:28 achimha Exp $ */
    22/*
    33 * Toolbar control
     
    15681568 * This function implements the toolbar customization dialog.
    15691569 */
     1570
     1571/***********************************************************************
     1572 * TOOLBAR_CustomizeDialogProc
     1573 * This function implements the toolbar customization dialog.
     1574 */
     1575static BOOL WINAPI
     1576TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
     1577{
     1578    TOOLBAR_INFO *infoPtr;
     1579
     1580    switch (uMsg)
     1581    {
     1582        case WM_INITDIALOG:
     1583            return TBCUSTOMIZE_InitDialog(hwnd,wParam,lParam);
     1584
     1585        case WM_CLOSE:
     1586            return TBCUSTOMIZE_Close(hwnd,wParam,lParam);
     1587
     1588        case WM_COMMAND:
     1589            return TBCUSTOMIZE_Command(hwnd,wParam,lParam);
     1590
     1591        case WM_DESTROY:
     1592            return TBCUSTOMIZE_Destroy(hwnd,wParam,lParam);
     1593
     1594        case WM_DRAWITEM:
     1595            return TBCUSTOMIZE_DrawItem(hwnd,wParam,lParam);
     1596
     1597        case WM_MEASUREITEM:
     1598            return TBCUSTOMIZE_MeasureItem(hwnd,wParam,lParam);
     1599
     1600        default:
     1601            return FALSE;
     1602    }
     1603}
     1604
     1605//WINE version - not currently used
     1606#if 0
    15701607static BOOL WINAPI
    15711608TOOLBAR_CustomizeDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
     
    17271764    }
    17281765}
     1766#endif
    17291767
    17301768
Note: See TracChangeset for help on using the changeset viewer.