Click here to Skip to main content
15,882,114 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.3K   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: the classes very good, but have some bugs Pin
    andytork4-Nov-04 16:51
    andytork4-Nov-04 16:51 
    GeneralSeaShell: Use and evolution Pin
    Moby19-May-03 1:50
    Moby19-May-03 1:50 
    General+ Sign at subfolders Pin
    Ruben_uniek12-Mar-03 21:16
    Ruben_uniek12-Mar-03 21:16 
    GeneralI get an error message when compling Pin
    E312-Dec-02 16:12
    E312-Dec-02 16:12 
    GeneralRe: I get an error message when compling Pin
    Naoaki Okazaki18-Jan-03 3:37
    Naoaki Okazaki18-Jan-03 3:37 
    AnswerRe: I get an error message when compling Pin
    maxim_violin24-Nov-07 18:54
    maxim_violin24-Nov-07 18:54 
    Generalmemory leak Pin
    wlfjck31-Oct-02 22:03
    wlfjck31-Oct-02 22:03 
    GeneralUnicode version error! Pin
    Anonymous31-Oct-02 21:37
    Anonymous31-Oct-02 21:37 
    ShellListCtrl/View display error on Unicode version!

    QuestionHelp: F5 crash in explorer dialog, any idea? Pin
    Gregoire8-Oct-02 15:25
    Gregoire8-Oct-02 15:25 
    AnswerRe: Help: F5 crash in explorer dialog, any idea? Pin
    Gregoire8-Nov-02 6:55
    Gregoire8-Nov-02 6:55 
    GeneralMaking it Open up folders in Itself. Pin
    Jawache9-Aug-02 3:06
    Jawache9-Aug-02 3:06 
    GeneralOpen a folder programmatically Pin
    Vinicius Pontes27-Jul-02 4:44
    Vinicius Pontes27-Jul-02 4:44 
    GeneralRe: Open a folder programmatically Pin
    Anonymous6-Oct-02 20:48
    Anonymous6-Oct-02 20:48 
    GeneralRe: Open a folder programmatically Pin
    nanfang16-Jun-07 18:53
    nanfang16-Jun-07 18:53 
    GeneralThumbnails Pin
    27-Jun-02 22:08
    suss27-Jun-02 22:08 
    GeneralRefresh fixed Pin
    25-Apr-02 0:25
    suss25-Apr-02 0:25 
    GeneralCan't build it in VS.Net. Need help. Pin
    TigerWings10-Apr-02 15:21
    TigerWings10-Apr-02 15:21 
    GeneralRe: Can't build it in VS.Net. Need help. Pin
    Abraxas2314-Dec-03 7:39
    Abraxas2314-Dec-03 7:39 
    GeneralGetItemText always return text for first item in list Pin
    28-Feb-02 3:50
    suss28-Feb-02 3:50 
    GeneralRe: GetItemText always return text for first item in list Pin
    Rex Lee5-Jun-03 20:58
    Rex Lee5-Jun-03 20:58 
    GeneralRe: GetItemText always return text for first item in list Pin
    nanfang16-Jun-07 18:45
    nanfang16-Jun-07 18:45 
    GeneralRe: GetItemText always return text for first item in list Pin
    nanfang16-Jun-07 18:48
    nanfang16-Jun-07 18:48 
    GeneralBug Fix for CIEShellListCtrl::Populate(LPCTSTR pszPath, bool bCallBack) Pin
    3-Dec-01 12:16
    suss3-Dec-01 12:16 
    GeneralOpens New Window to display Sub folder instead of displaying it in the List View Pin
    3-Oct-01 22:25
    suss3-Oct-01 22:25 
    GeneralRe: Opens New Window to display Sub folder instead of displaying it in the List View Pin
    lawesly31-Oct-02 15:56
    lawesly31-Oct-02 15:56 

    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.