struct CCL::ISearchResultViewer

#include <isearchprovider.h>

struct ISearchResultViewer: public CCL::IUnknown
{
    // methods

    virtual bool isViewVisible () = 0;
    virtual IView* createView (const Rect& bounds) = 0;

    virtual void onSearchStart (
        ISearchDescription& description,
        ISearchProvider* searchProvider
    ) = 0;

    virtual void onSearchEnd (bool canceled) = 0;
    virtual void onResultItemsAdded (const IUnknownList& items) = 0;
    DECLARE_STRINGID_MEMBER (kCloseViewer);
};

Inherited Members

public:
    // methods

    virtual tresult CCL_API queryInterface (UIDRef iid, void** ptr) = 0;
    virtual unsigned int CCL_API retain () = 0;
    virtual unsigned int CCL_API release () = 0;