Changeset 918 for trunk/src/shell32/new/shlview.cpp
- Timestamp:
- Sep 13, 1999, 2:36:35 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/new/shlview.cpp
r898 r918 233 233 TRACE("%p\n",This); 234 234 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 | 236 236 LVS_SHAREIMAGELISTS | LVS_EDITLABELS | LVS_ALIGNLEFT | LVS_AUTOARRANGE; 237 237 … … 794 794 ShellView_OnActivate(This, SVUIA_ACTIVATE_FOCUS); 795 795 796 /* Set the focus to the listview */ 797 SetFocus(This->hWndList); 798 799 /* Notify the ICommDlgBrowser interface */ 800 OnStateChange(This,CDBOSC_SETFOCUS); 801 796 802 return 0; 797 803 } … … 805 811 806 812 ShellView_OnActivate(This, SVUIA_ACTIVATE_NOFOCUS); 813 /* Notify the ICommDlgBrowser */ 814 OnStateChange(This,CDBOSC_KILLFOCUS); 807 815 808 816 return 0; … … 866 874 TRACE("-- NM_KILLFOCUS %p\n",This); 867 875 ShellView_OnDeactivate(This); 876 /* Notify the ICommDlgBrowser interface */ 877 OnStateChange(This,CDBOSC_KILLFOCUS); 868 878 break; 869 879 … … 1036 1046 break; 1037 1047 1048 case WM_GETDLGCODE: return SendMessageA(pThis->hWndList,uMessage,0,0); 1049 1038 1050 case WM_DESTROY: pRevokeDragDrop(pThis->hWnd); 1039 1051 break; … … 1293 1305 SV_CLASS_NAME, 1294 1306 NULL, 1295 WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS ,1307 WS_CHILD | WS_VISIBLE | WS_CLIPSIBLINGS | WS_TABSTOP, 1296 1308 prcView->left, 1297 1309 prcView->top,
Note:
See TracChangeset
for help on using the changeset viewer.