diff options
author | callum_linden <none@none> | 2015-10-26 14:22:31 -0700 |
---|---|---|
committer | callum_linden <none@none> | 2015-10-26 14:22:31 -0700 |
commit | a89e87c72e6a351c6d1c74ae59a2d7010578d26c (patch) | |
tree | 46b3774ade40f99d1b2d1645b8e619ff5b6dc1ce /indra/newview/llsyswellwindow.h | |
parent | 16cd296e30e95fbacefff4e291fbdd6fbf0c2c43 (diff) | |
parent | 84150294b912d04e345007b65670c0230a2e4d79 (diff) |
Merge with head of viewer release (3.8.6 changes)
Diffstat (limited to 'indra/newview/llsyswellwindow.h')
-rwxr-xr-x | indra/newview/llsyswellwindow.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/indra/newview/llsyswellwindow.h b/indra/newview/llsyswellwindow.h index 71b41476f5..d02293e6ff 100755 --- a/indra/newview/llsyswellwindow.h +++ b/indra/newview/llsyswellwindow.h @@ -96,57 +96,6 @@ protected: }; /** - * Class intended to manage incoming notifications. - * - * It contains a list of notifications that have not been responded to. - */ -class LLNotificationWellWindow : public LLSysWellWindow -{ -public: - LLNotificationWellWindow(const LLSD& key); - static LLNotificationWellWindow* getInstance(const LLSD& key = LLSD()); - - /*virtual*/ BOOL postBuild(); - /*virtual*/ void setVisible(BOOL visible); - /*virtual*/ void onAdd(LLNotificationPtr notify); - // Operating with items - void addItem(LLSysWellItem::Params p); - - // Closes all notifications and removes them from the Notification Well - void closeAll(); - -protected: - struct WellNotificationChannel : public LLNotificationChannel - { - WellNotificationChannel(LLNotificationWellWindow*); - void onDelete(LLNotificationPtr notify) - { - mWellWindow->removeItemByID(notify->getID()); - } - - LLNotificationWellWindow* mWellWindow; - }; - - LLNotificationChannelPtr mNotificationUpdates; - /*virtual*/ const std::string& getAnchorViewName() { return NOTIFICATION_WELL_ANCHOR_NAME; } - -private: - // init Window's channel - void initChannel(); - void clearScreenChannels(); - - void onStoreToast(LLPanel* info_panel, LLUUID id); - - // Handlers - void onItemClick(LLSysWellItem* item); - void onItemClose(LLSysWellItem* item); - - // ID of a toast loaded by user (by clicking notification well item) - LLUUID mLoadedToastId; - -}; - -/** * Class intended to manage incoming messages in IM chats. * * It contains a list list of all active IM sessions. |