struct CCL::INotifyIcon

Overview

#include <inotifyicon.h>

struct INotifyIcon: public CCL::Alert::IReporter
{
    // methods

    virtual DECLARE_STRINGID_MEMBER (kContextID) = 0;
    virtual tresult CCL_API setTitle (StringRef title) = 0;
    virtual tresult CCL_API setHandler (IUnknown* handler) = 0;
    virtual tresult CCL_API setVisible (tbool state) = 0;
    virtual tresult CCL_API setAutoShow (tbool state) = 0;
};

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;
    virtual void CCL_API reportEvent (const Event& e) = 0;
    virtual void CCL_API setReportOptions (Severity minSeverity, int eventFormat) = 0;

Detailed Documentation

Methods

virtual DECLARE_STRINGID_MEMBER (kContextID) = 0

< icon click message [IObserver]

< icon double-click message [IObserver] Set notification icon image.

virtual tresult CCL_API setTitle (StringRef title) = 0

Set notification icon title.

virtual tresult CCL_API setHandler (IUnknown* handler) = 0

Set handler for context menu, etc.

virtual tresult CCL_API setVisible (tbool state) = 0

Show/hide the notification icon.

virtual tresult CCL_API setAutoShow (tbool state) = 0

In auto-show mode, the icon will appear only while an event is reported.