Ignore:
Timestamp:
Sep 13, 1999, 2:36:35 PM (26 years ago)
Author:
phaller
Message:

Fix: updated to current wine 19990913

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/new/shlview.cpp

    r898 r918  
    233233        TRACE("%p\n",This);
    234234
    235         dwStyle = WS_TABSTOP | WS_VISIBLE | WS_CHILD | WS_BORDER |
     235        dwStyle = WS_TABSTOP | WS_VISIBLE | WS_CHILD | WS_BORDER | WS_CHILDWINDOW | WS_CLIPSIBLINGS | WS_CLIPCHILDREN |
    236236                  LVS_SHAREIMAGELISTS | LVS_EDITLABELS | LVS_ALIGNLEFT | LVS_AUTOARRANGE;
    237237
     
    794794        ShellView_OnActivate(This, SVUIA_ACTIVATE_FOCUS);
    795795
     796        /* Set the focus to the listview */
     797        SetFocus(This->hWndList);
     798
     799        /* Notify the ICommDlgBrowser interface */
     800        OnStateChange(This,CDBOSC_SETFOCUS);
     801
    796802        return 0;
    797803}
     
    805811
    806812        ShellView_OnActivate(This, SVUIA_ACTIVATE_NOFOCUS);
     813        /* Notify the ICommDlgBrowser */
     814        OnStateChange(This,CDBOSC_KILLFOCUS);
    807815
    808816        return 0;
     
    866874            TRACE("-- NM_KILLFOCUS %p\n",This);
    867875            ShellView_OnDeactivate(This);
     876            /* Notify the ICommDlgBrowser interface */
     877            OnStateChange(This,CDBOSC_KILLFOCUS);
    868878            break;
    869879
     
    10361046                                break;
    10371047
     1048          case WM_GETDLGCODE:   return SendMessageA(pThis->hWndList,uMessage,0,0);
     1049
    10381050          case WM_DESTROY:      pRevokeDragDrop(pThis->hWnd);
    10391051                                break;
     
    12931305                                SV_CLASS_NAME,
    12941306                                NULL,
    1295                                 WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS,
     1307                                WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_TABSTOP,
    12961308                                prcView->left,
    12971309                                prcView->top,
Note: See TracChangeset for help on using the changeset viewer.