Click here to Skip to main content
15,879,326 members
Articles / Desktop Programming / MFC
Article

SeaShell - More Explorer controls

Rate me:
Please Sign up or sign in to vote.
4.92/5 (16 votes)
3 Oct 2000 222.2K   3.7K   57   54
A set of shell controls and other useful classes
  • Download demo project - 277 Kb
  • Sample Image - seashell.jpg

    Introduction

    SeaShell contains a set of classes that provides three main controls

    • CIEShellTreeCtrl
    • CIEShellListCtrl
    • CIEShellComboBox

    They can be used independently or integrated as in Explorer


    Features

    • Full drag and drop support including right button and drag and drop to/from windows explorer
    • Context menu support including Owner Draw,SendTo and the new OpenWith(W2K only) menus
    • Auto refresh from both tree and list controls
    • Filter support using wild cards eg. *.cpp *.htm or based on file type
    • Uses settings from explorer to show compressed files in a different color,double click to open file etc.
    • Complete integration between all three controls


    History

    First version so expect problems

    Usage

    First you must include SeaShellExt.h in your stdafx.h file and you will need all the files included in the sub folder SeaShellExt except for the frame and view files if you intend to use it only in a dialog box. The demo shows you how to use it in a frame window and a dialog box.

    This is what you need to do to add all the controls to a dialog box

    Add this code to the OnInitDIalog function

    // Point the combo box to the tree control(optional)
    m_cbShell.SetTreeCtrlWnd(m_tcShell.GetSafeHwnd());
    
    // Point the tree control to the list control(optional)
    m_tcShell.SetListCtrlWnd(m_lcShell.GetSafeHwnd());
    
    // Point the tree control to the combo box(optional)
    m_tcShell.SetComboBoxWnd(m_cbShell.GetSafeHwnd());
    
    // Populate the tree starting from the desktop
    m_tcShell.LoadFolderItems();
    
    // or populate the tree starting from a system file path
    // m_tcShell.LoadFolderItems(_T("C:\\folder1\\folder2"));
    

    To hook up the controls in CView check out the demo it comes with classes CIEShellTreeView and CIEShellListView that you can use.

    The about box has a demo of the list control without shell support that adds a progress bar to a column in a similar fashion to napster if any one has seen it. Thanks to Chris Maunder for his CTextProgressCtrl which I slightly modified.

    There is limited support for CHtmlView to show the web browser when you click on the Internet Explorer folder. But this won't work in in a dialog.


    Acknowledgments

    It also includes some files form other sources most notably

  • CoolMenu from Paul DiLascia(MSJ)
  • ShellContextMenu from Oz Solomonovich(WndTabs)
  • InPlaceEdit from Zafir Anjum (Codeguru)


  • and some other snippets, but I can't remember from where.

    Thanks guys

    If anyone wants to convert it to an MFC extension DLL there is a macro CTRL_EXT_CLASS that is used in most classes that will help.

    One final note I compiled using the platform SDK for W2K but I have included a file W2KFix.h that defines the COM interfaces that it needs.

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here


    Written By
    New Zealand New Zealand
    This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

    Comments and Discussions

     
    GeneralRe: GetLongPathName() not exported from Win95 Kernel32.dll Pin
    Philip Oldaker16-Aug-00 5:34
    Philip Oldaker16-Aug-00 5:34 
    QuestionAuto-Refresh not working? Pin
    David Terracino11-Aug-00 5:01
    David Terracino11-Aug-00 5:01 
    GeneralDoesn't Compile!!! Pin
    Brigg Thorp2-Aug-00 2:31
    Brigg Thorp2-Aug-00 2:31 
    GeneralRe: Doesn't Compile!!! Pin
    Philip Oldaker2-Aug-00 8:04
    Philip Oldaker2-Aug-00 8:04 

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.