/** * @file llchiclet.h * @brief LLChiclet class header file * * $LicenseInfo:firstyear=2002&license=viewergpl$ * * Copyright (c) 2002-2009, Linden Research, Inc. * * Second Life Viewer Source Code * The source code in this file ("Source Code") is provided by Linden Lab * to you under the terms of the GNU General Public License, version 2.0 * ("GPL"), unless you have obtained a separate licensing agreement * ("Other License"), formally executed by you and Linden Lab. Terms of * the GPL can be found in doc/GPL-license.txt in this distribution, or * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2 * * There are special exceptions to the terms and conditions of the GPL as * it is applied to this Source Code. View the full text of the exception * in the file doc/FLOSS-exception.txt in this software distribution, or * online at * http://secondlifegrid.net/programs/open_source/licensing/flossexception * * By copying, modifying or distributing this software, you acknowledge * that you have read and understood your obligations described above, * and agree to abide by those obligations. * * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, * COMPLETENESS OR PERFORMANCE. * $/LicenseInfo$ */ #ifndef LL_LLCHICLET_H #define LL_LLCHICLET_H #include "llavatariconctrl.h" #include "llbutton.h" #include "llpanel.h" #include "lltextbox.h" #include "lloutputmonitorctrl.h" class LLVoiceControlPanel; class LLMenuGL; class LLIMFloater; /* * Class for displaying amount of messages/notifications(unread). */ class LLChicletNotificationCounterCtrl : public LLTextBox { public: struct Params : public LLInitParam::Block { Params() {}; }; /* * Sets number of notifications */ virtual void setCounter(S32 counter); /* * Returns number of notifications */ virtual S32 getCounter() const { return mCounter; } /* * Returns width, required to display amount of notifications in text form. * Width is the only valid value. */ /*virtual*/ LLRect getRequiredRect(); /* * Sets number of notifications using LLSD */ /*virtual*/ void setValue(const LLSD& value); /* * Returns number of notifications wrapped in LLSD */ /*virtual*/ LLSD getValue() const; protected: LLChicletNotificationCounterCtrl(const Params& p); friend class LLUICtrlFactory; private: S32 mCounter; S32 mInitialWidth; }; /* * Class for displaying avatar's icon. */ class LLChicletAvatarIconCtrl : public LLAvatarIconCtrl { public: struct Params : public LLInitParam::Block { Params() { draw_tooltip(FALSE); mouse_opaque(FALSE); }; }; protected: LLChicletAvatarIconCtrl(const Params& p); friend class LLUICtrlFactory; }; /* * Class for displaying status of Voice Chat */ class LLChicletSpeakerCtrl : public LLIconCtrl { public: struct Params : public LLInitParam::Block { Params(){}; }; protected: LLChicletSpeakerCtrl(const Params&p); friend class LLUICtrlFactory; }; /* * Base class for all chiclets. */ class LLChiclet : public LLUICtrl { public: struct Params : public LLInitParam::Block { Optional show_counter; Params(); }; /*virtual*/ ~LLChiclet(); /* * Associates chat session id with chiclet. */ virtual void setSessionId(const LLUUID& session_id) { mSessionId = session_id; } /* * Returns associated chat session. */ virtual const LLUUID& getSessionId() const { return mSessionId; } /* * Sets number of unread notifications. */ virtual void setCounter(S32 counter) = 0; /* * Returns number of unread notifications. */ virtual S32 getCounter() = 0; /* * Sets show counter state. */ virtual void setShowCounter(bool show) { mShowCounter = show; } /* * Returns show counter state. */ virtual bool getShowCounter() {return mShowCounter;}; /* * Connects chiclet clicked event with callback. */ /*virtual*/ boost::signals2::connection setLeftButtonClickCallback( const commit_callback_t& cb); typedef boost::function chiclet_size_changed_callback_t; /* * Connects chiclets size changed event with callback. */ virtual boost::signals2::connection setChicletSizeChangedCallback( const chiclet_size_changed_callback_t& cb); /* * Sets IM Session id using LLSD */ /*virtual*/ LLSD getValue() const; /* * Returns IM Session id using LLSD */ /*virtual*/ void setValue(const LLSD& value); protected: friend class LLUICtrlFactory; LLChiclet(const Params& p); /* * Notifies subscribers about click on chiclet. */ /*virtual*/ BOOL handleMouseDown(S32 x, S32 y, MASK mask); /* * Notifies subscribers about chiclet size changed event. */ virtual void onChicletSizeChanged(); private: LLUUID mSessionId; bool mShowCounter; typedef boost::signals2::signal chiclet_size_changed_signal_t; chiclet_size_changed_signal_t mChicletSizeChangedSignal; }; /* * Implements Instant Message chiclet. * IMChiclet displays avatar's icon, number of unread messages(optional) * and voice chat status(optional). */ class LLIMChiclet : public LLChiclet { public: struct Params : public LLInitParam::Block { Optional avatar_icon; Optional unread_notifications; Optional speaker; Optional show_speaker; Params(); }; /*virtual*/ ~LLIMChiclet(); /* * Sets IM session name. This name will be displayed in chiclet tooltip. */ virtual void setIMSessionName(const std::string& name); /* * Sets id of person/group user is chatting with. */ virtual void setOtherParticipantId(const LLUUID& other_participant_id); /* * Shows/hides voice chat status control. */ virtual void setShowSpeaker(bool show); /* * Returns voice chat status control visibility. */ virtual bool getShowSpeaker() {return mShowSpeaker;}; /* * Sets number of unread messages. Will update chiclet's width if number text * exceeds size of counter and notify it's parent about size change. */ /*virtual*/ void setCounter(S32); /* * Returns number of unread messages. */ /*virtual*/ S32 getCounter() { return mCounterCtrl->getCounter(); } /* * Shows/hides number of unread messages. */ /*virtual*/ void setShowCounter(bool show); /* * Draws border around chiclet. */ /*virtual*/ void draw(); /* * Returns rect, required to display chiclet. * Width is the only valid value. */ /*virtual*/ LLRect getRequiredRect(); protected: LLIMChiclet(const Params& p); friend class LLUICtrlFactory; /* * Creates chiclet popup menu. Will create P2P or Group IM Chat menu * based on other participant's id. */ virtual void createPopupMenu(); /* * Processes clicks on chiclet popup menu. */ virtual void onMenuItemClicked(const LLSD& user_data); /* * Enables/disables menus based on relationship with other participant. */ virtual void updateMenuItems(); /* * Displays popup menu. */ /*virtual*/ BOOL handleRightMouseDown(S32 x, S32 y, MASK mask); protected: LLChicletAvatarIconCtrl* mAvatarCtrl; LLChicletNotificationCounterCtrl* mCounterCtrl; LLChicletSpeakerCtrl* mSpeakerCtrl; LLMenuGL* mPopupMenu; bool mShowSpeaker; }; /* * Implements notification chiclet. Used to display total amount of unread messages * across all IM sessions, total amount of system notifications. */ class LLNotificationChiclet : public LLChiclet { public: struct Params : public LLInitParam::Block { Optional button; Optional unread_notifications; Params(); }; /*virtual*/ void setCounter(S32 counter); /*virtual*/S32 getCounter() { return mCounterCtrl->getCounter(); } /*virtual*/ void setShowCounter(bool show); boost::signals2::connection setClickCallback(const commit_callback_t& cb); /*virtual*/ ~ LLNotificationChiclet(); protected: LLNotificationChiclet(const Params& p); friend class LLUICtrlFactory; protected: LLButton* mButton; LLChicletNotificationCounterCtrl* mCounterCtrl; }; /* * Storage class for all IM chiclets. Provides mechanism to display, * scroll, create, remove chiclets. */ class LLChicletPanel : public LLPanel { public: struct Params : public LLInitParam::Block { Optional chiclet_padding, scrolling_offset; Optional left_scroll_button, right_scroll_button; Optional min_width; Params(); }; virtual ~LLChicletPanel(); /* * Creates chiclet and adds it to chiclet list. */ template T* createChiclet(const LLUUID& session_id = LLUUID::null, S32 index = 0); /* * Returns pointer to chiclet of specified type at specified index. */ template T* getChiclet(S32 index); /* * Returns pointer to LLChiclet at specified index. */ LLChiclet* getChiclet(S32 index) { return getChiclet(index); } /* * Searches a chiclet using IM session id. */ template T* findChiclet(const LLUUID& im_session_id); /* * Returns number of hosted chiclets. */ S32 getChicletCount() {return mChicletList.size();}; /* * Returns index of chiclet in list. */ S32 getChicletIndex(const LLChiclet* chiclet); /* * Removes chiclet by index. */ void removeChiclet(S32 index); /* * Removes chiclet by pointer. */ void removeChiclet(LLChiclet* chiclet); /* * Removes chiclet by IM session id. */ void removeChiclet(const LLUUID& im_session_id); /* * Removes all chiclets. */ void removeAll(); boost::signals2::connection setChicletClickedCallback( const commit_callback_t& cb); /*virtual*/ BOOL postBuild(); /* * Reshapes controls and rearranges chiclets if needed. */ /*virtual*/ void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE ); /*virtual*/ void draw(); protected: LLChicletPanel(const Params&p); friend class LLUICtrlFactory; /* * Adds chiclet to list and rearranges all chiclets. */ bool addChiclet(LLChiclet*, S32 index); /* * Arranges chiclets. */ void arrange(); /* * Returns true if chiclets can be scrolled right. */ bool canScrollRight(); /* * Returns true if chiclets can be scrolled left. */ bool canScrollLeft(); /* * Shows or hides chiclet scroll buttons if chiclets can or can not be scrolled. */ void showScrollButtonsIfNeeded(); /* * Shifts chiclets left or right. */ void shiftChiclets(S32 offset, S32 start_index = 0); /* * Removes gaps between first chiclet and scroll area left side, * last chiclet and scroll area right side. */ void trimChiclets(); /* * Scrolls chiclets to right or left. */ void scroll(S32 offset); /* * Verifies that chiclets can be scrolled left, then calls scroll() */ void scrollLeft(); /* * Verifies that chiclets can be scrolled right, then calls scroll() */ void scrollRight(); /* * Callback for left scroll button clicked */ void onLeftScrollClick(); /* * Callback for right scroll button clicked */ void onRightScrollClick(); /* * Callback for mouse wheel scrolled, calls scrollRight() or scrollLeft() */ BOOL handleScrollWheel(S32 x, S32 y, S32 clicks); /* * Notifies subscribers about click on chiclet. * Do not place any code here, instead subscribe on event (see setChicletClickedCallback). */ void onChicletClick(LLUICtrl*ctrl,const LLSD¶m); /* * Callback for chiclet size changed event, rearranges chiclets. */ void onChicletSizeChanged(LLChiclet* ctrl, const LLSD& param); typedef std::vector chiclet_list_t; /* * Removes chiclet from scroll area and chiclet list. */ void removeChiclet(chiclet_list_t::iterator it); S32 getChicletPadding() { return mChicletPadding; } S32 getScrollingOffset() { return mScrollingOffset; } protected: chiclet_list_t mChicletList; LLButton* mLeftScrollButton; LLButton* mRightScrollButton; LLPanel* mScrollArea; S32 mChicletPadding; S32 mScrollingOffset; S32 mMinWidth; bool mShowControls; }; /* * Button displaying voice chat status. Displays voice chat options When clicked. */ class LLTalkButton : public LLUICtrl { public: struct Params : public LLInitParam::Block { Optional speak_button, show_button; Optional monitor; Params(); }; /*virtual*/ ~LLTalkButton(); /*virtual*/ void draw(); void setSpeakBtnToggleState(bool state); protected: friend class LLUICtrlFactory; LLTalkButton(const Params& p); void onClick_SpeakBtn(); void onClick_ShowBtn(); private: LLButton* mSpeakBtn; LLButton* mShowBtn; LLVoiceControlPanel* mPrivateCallPanel; LLOutputMonitorCtrl* mOutputMonitor; }; template T* LLChicletPanel::createChiclet(const LLUUID& session_id /*= LLUUID::null*/, S32 index /*= 0*/) { typename T::Params params; T* chiclet = LLUICtrlFactory::create(params); if(!chiclet) { llwarns << "Could not create chiclet" << llendl; return NULL; } if(!addChiclet(chiclet, index)) { delete chiclet; llwarns << "Could not add chiclet to chiclet panel" << llendl; return NULL; } chiclet->setSessionId(session_id); return chiclet; } template T* LLChicletPanel::findChiclet(const LLUUID& im_session_id) { if(im_session_id.isNull()) { return NULL; } chiclet_list_t::const_iterator it = mChicletList.begin(); for( ; mChicletList.end() != it; ++it) { LLChiclet* chiclet = *it; if(chiclet->getSessionId() == im_session_id) { T* result = dynamic_cast(chiclet); if(!result && chiclet) { llwarns << "Found chiclet but of wrong type " << llendl; } return result; } } return NULL; } template T* LLChicletPanel::getChiclet(S32 index) { if(index < 0 || index >= getChicletCount()) { return NULL; } LLChiclet* chiclet = mChicletList[index]; T*result = dynamic_cast(chiclet); if(!result && chiclet) { llwarns << "Found chiclet but of wrong type " << llendl; } return result; } #endif // LL_LLCHICLET_H