diff options
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/lllogchat.cpp | 10 | ||||
| -rw-r--r-- | indra/newview/llnearbychathandler.cpp | 5 | ||||
| -rw-r--r-- | indra/newview/llpanelgroupgeneral.h | 1 | ||||
| -rw-r--r-- | indra/newview/llviewermenu.cpp | 38 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/floater_preferences.xml | 1 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/menu_object.xml | 28 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/menu_viewer.xml | 30 | 
7 files changed, 66 insertions, 47 deletions
| diff --git a/indra/newview/lllogchat.cpp b/indra/newview/lllogchat.cpp index 16b13d9218..be8b2363ad 100644 --- a/indra/newview/lllogchat.cpp +++ b/indra/newview/lllogchat.cpp @@ -46,7 +46,17 @@  #include <boost/regex.hpp>  #include <boost/regex/v4/match_results.hpp> +#if LL_MSVC +// disable warning about boost::lexical_cast unreachable code +// when it fails to parse the string +#pragma warning (disable:4702) +#endif +  #include <boost/date_time/gregorian/gregorian.hpp> +#if LL_MSVC +#pragma warning(pop)   // Restore all warnings to the previous state +#endif +  #include <boost/date_time/posix_time/posix_time.hpp>  #include <boost/date_time/local_time_adjustor.hpp> diff --git a/indra/newview/llnearbychathandler.cpp b/indra/newview/llnearbychathandler.cpp index 3c390c0281..a211adc79d 100644 --- a/indra/newview/llnearbychathandler.cpp +++ b/indra/newview/llnearbychathandler.cpp @@ -34,6 +34,7 @@  #include "llnearbychathandler.h" +#include "llbottomtray.h"  #include "llchatitemscontainerctrl.h"  #include "llnearbychat.h"  #include "llrecentpeople.h" @@ -319,9 +320,9 @@ LLNearbyChatHandler::~LLNearbyChatHandler()  void LLNearbyChatHandler::initChannel()  {  	LLNearbyChat* nearby_chat = LLFloaterReg::getTypedInstance<LLNearbyChat>("nearby_chat", LLSD()); +	LLView* chat_box = LLBottomTray::getInstance()->getChildView("chat_box");  	S32 channel_right_bound = nearby_chat->getRect().mRight; -	S32 channel_width = nearby_chat->getRect().mRight;  -	mChannel->init(channel_right_bound - channel_width, channel_right_bound); +	mChannel->init(chat_box->getRect().mLeft, channel_right_bound);  } diff --git a/indra/newview/llpanelgroupgeneral.h b/indra/newview/llpanelgroupgeneral.h index cc3101539a..6245018871 100644 --- a/indra/newview/llpanelgroupgeneral.h +++ b/indra/newview/llpanelgroupgeneral.h @@ -84,7 +84,6 @@ private:  	static void openProfile(void* data);  	S32		sortMembersList(S32,const LLScrollListItem*,const LLScrollListItem*); -	//void		sortMembersList(S32 column);      static bool joinDlgCB(const LLSD& notification, const LLSD& response); diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 02bde51fb6..15c72fdef1 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -4422,35 +4422,22 @@ bool visible_take_object()  	return !is_selection_buy_not_take() && enable_take();  } +bool tools_visible_buy_object() +{ +	return is_selection_buy_not_take(); +} + +bool tools_visible_take_object() +{ +	return !is_selection_buy_not_take(); +} +  class LLToolsEnableBuyOrTake : public view_listener_t  {  	bool handleEvent(const LLSD& userdata)  	{  		bool is_buy = is_selection_buy_not_take();  		bool new_value = is_buy ? enable_buy_object() : enable_take(); - -		// Update label -		std::string label; -		std::string buy_text; -		std::string take_text; -		std::string param = userdata.asString(); -		std::string::size_type offset = param.find(","); -		if (offset != param.npos) -		{ -			buy_text = param.substr(0, offset); -			take_text = param.substr(offset+1); -		} -		if (is_buy) -		{ -			label = buy_text; -		} -		else -		{ -			label = take_text; -		} -		gMenuHolder->childSetText("Pie Object Take", label); -		gMenuHolder->childSetText("Menu Object Take", label); -  		return new_value;  	}  }; @@ -7802,12 +7789,11 @@ void initialize_menus()  	view_listener_t::addMenu(new LLToolsEnableUnlink(), "Tools.EnableUnlink");  	view_listener_t::addMenu(new LLToolsEnableBuyOrTake(), "Tools.EnableBuyOrTake");  	enable.add("Tools.EnableTakeCopy", boost::bind(&enable_object_take_copy)); +	enable.add("Tools.VisibleBuyObject", boost::bind(&tools_visible_buy_object)); +	enable.add("Tools.VisibleTakeObject", boost::bind(&tools_visible_take_object));  	view_listener_t::addMenu(new LLToolsEnableSaveToInventory(), "Tools.EnableSaveToInventory");  	view_listener_t::addMenu(new LLToolsEnableSaveToObjectInventory(), "Tools.EnableSaveToObjectInventory"); -	/*view_listener_t::addMenu(new LLToolsVisibleBuyObject(), "Tools.VisibleBuyObject"); -	view_listener_t::addMenu(new LLToolsVisibleTakeObject(), "Tools.VisibleTakeObject");*/ -  	// Help menu  	// most items use the ShowFloater method diff --git a/indra/newview/skins/default/xui/en/floater_preferences.xml b/indra/newview/skins/default/xui/en/floater_preferences.xml index 7aa8e23e76..d7a7daf30c 100644 --- a/indra/newview/skins/default/xui/en/floater_preferences.xml +++ b/indra/newview/skins/default/xui/en/floater_preferences.xml @@ -46,6 +46,7 @@       tab_group="1"       tab_position="left"       tab_width="115" +     tab_padding_right="5"       top="21"       width="620">          <panel diff --git a/indra/newview/skins/default/xui/en/menu_object.xml b/indra/newview/skins/default/xui/en/menu_object.xml index d66818e91a..9436b2cd73 100644 --- a/indra/newview/skins/default/xui/en/menu_object.xml +++ b/indra/newview/skins/default/xui/en/menu_object.xml @@ -124,16 +124,28 @@      </menu_item_call>      </context_menu>     <menu_item_separator layout="topleft" /> -       <menu_item_call -     enabled="false" +   <menu_item_call +    label="Buy" +    layout="topleft" +    name="Pie Object Bye"> +      <menu_item_call.on_click +       function="Tools.BuyOrTake"/> +      <menu_item_call.on_visible +       function="Tools.VisibleBuyObject"/> +      <menu_item_call.on_enable +       function="Tools.EnableBuyOrTake"/> +   </menu_item_call> +   <menu_item_call       label="Take" +     layout="topleft"       name="Pie Object Take"> -        <menu_item_call.on_click -         function="Tools.BuyOrTake" /> -        <menu_item_call.on_enable -         function="Tools.EnableBuyOrTake" -         parameter="Buy,Take" /> -    </menu_item_call> +      <menu_item_call.on_click +       function="Tools.BuyOrTake"/> +      <menu_item_call.on_visible +       function="Tools.VisibleTakeObject"/> +      <menu_item_call.on_enable +       function="Tools.EnableBuyOrTake"/> +   </menu_item_call>     <menu_item_call     enabled="false"     label="Take Copy" diff --git a/indra/newview/skins/default/xui/en/menu_viewer.xml b/indra/newview/skins/default/xui/en/menu_viewer.xml index 4c4867b862..158e764eae 100644 --- a/indra/newview/skins/default/xui/en/menu_viewer.xml +++ b/indra/newview/skins/default/xui/en/menu_viewer.xml @@ -719,16 +719,26 @@           name="Object"           tear_off="true">            <menu_item_call -			 label="Buy" -			 layout="topleft" -			 name="Menu Object Take" -			 visible="true"> -			<menu_item_call.on_click -               function="Tools.BuyOrTake" /> -			<menu_item_call.on_enable -               function="Tools.EnableBuyOrTake" -               name="EnableBuyOrTake" -               parameter="Buy,Take" /> +             label="Buy" +             layout="topleft" +             name="Menu Object Buy"> +            <menu_item_call.on_click +               function="Tools.BuyOrTake"/> +            <menu_item_call.on_visible +               function="Tools.VisibleBuyObject"/> +            <menu_item_call.on_enable +               function="Tools.EnableBuyOrTake"/> +          </menu_item_call> +          <menu_item_call +             label="Take" +             layout="topleft" +             name="Menu Object Take"> +            <menu_item_call.on_click +               function="Tools.BuyOrTake"/> +            <menu_item_call.on_visible +               function="Tools.VisibleTakeObject"/> +            <menu_item_call.on_enable +               function="Tools.EnableBuyOrTake"/>            </menu_item_call>            <menu_item_call  			 label="Take Copy" | 
