// Purpose: wxNotificationMessage for wxGTK.
// Author: Vadim Zeitlin
// Created: 2012-07-25
-// RCS-ID: $Id$
// Copyright: (c) 2012 Vadim Zeitlin <vadim@wxwidgets.org>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
virtual bool Show(int timeout = Timeout_Auto);
virtual bool Close();
+ // Set the name of the icon to use, overriding the default icon determined
+ // by the flags. Call with empty string to reset custom icon.
+ bool GTKSetIconName(const wxString& name);
+
private:
void Init() { m_notification = NULL; }
NotifyNotification* m_notification;
+ wxString m_iconName;
wxDECLARE_NO_COPY_CLASS(wxNotificationMessage);
};