summaryrefslogtreecommitdiff
path: root/indra/newview/llviewermenu.cpp
AgeCommit message (Collapse)Author
2009-12-09Partial EXT-3268 Object Profile option showing up in avatar 3D Context menuJames Cook
Renamed gPie* and menu_pie_* to just gMenu* and menu_* because they are no longer pie menus. Created separate other-attachment menus. Reviewed with Richard.
2009-12-09Fix line endings.James Cook
2009-12-09MergeJames Cook
2010-12-08mergeLeyla Farazha
2010-12-07mergeLeyla Farazha
2010-12-07EXT-3265 Gear menu on_visible params are broken - not setting visibility of ↵Leyla Farazha
menu items EXT-2923 [BSI] My own inspector lists "Stand Up" as an option in gear menu, while I'm standing
2009-12-09EXT-2827 and fix for delete key not deleting objects while building.James Cook
Object inventory was grabbing edit menu handling during refresh. Put back Angela's code so that Right-click > Remove > Delete is now disabled if you have a single face selected. Fixed LLSelectMgr::contains() for SELECT_ALL_TES case. Reviewed with Richard.
2009-12-08Merge backoutJames Cook
2009-12-08Back out EXT-2827 Unable to delete object when select face of objectJames Cook
May cause right-click delete to fail - testing that Backed out changeset: 1f8e1e73f9f4
2009-12-08Mergerichard
2009-12-08EXT-2427: Added an About > Report Bug menuLynx Linden
This menu brings up the Help Browser with the report_bug topic. To support this, I've created a new ShowHelp function that can be accessed from XUI. You can supply an optional help topic parameter, or if you specify no parameter then the default (F1) help is shown.
2009-12-07ext-3152 - crash when opening debug consolerichard
bad cast
2009-12-07mergeJames Cook
2009-12-04EXT-2827 Unable to delete object when select face of objectangela
2009-12-02Automated merge avp->avpLoren Shih
--HG-- branch : avatar-pipeline
2009-12-02EXT 3046 : INFRASTRUCTURE: Header file includes cleanup for llviewermenu, ↵Loren Shih
llviewermessage More header file cleanup. --HG-- branch : avatar-pipeline
2009-12-02EXT 3046 : INFRASTRUCTURE: Header file includes cleanup for llviewermenu, ↵Loren Shih
llviewermessage Removed > 100 header includes from llviewermenu and llviewermessage. --HG-- branch : avatar-pipeline
2009-12-01EXT-3028 : "Find Original" does nothing if floater inventory isn't openLoren Shih
Changed logic for getActiveInventory so that it considers InventorySP. Removed getActiveInventory and replaced with getActiveInventoryPanel since that follows its current usage. This currently contains a bug because the InventorySP always thinks it's open. --HG-- branch : avatar-pipeline
2009-12-01DEV-43622 : API change (no functionality change) to fix a design error in LLSDKent Quirk
I made it about a year and a half ago; Zero found it while reading code. I had added a return value to LLSD::insert(), but a) did it wrong, and b) broke the STL-like semantics of insert(). So I've put insert() back to returning void and created LLSD::with(), which does what my earlier insert() did. The compiler then caught all the cases where insert()'s return value were being used, and I changed those to use with() instead.
2009-12-01Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0/Eric M. Tulla (BigPapi)
2009-12-01EXT-2719 - put on menu now gets disabled if the object is lockedEric M. Tulla (BigPapi)
2009-11-25Hook up nav bar For Sale icon to buy land functionality.James Cook
2009-11-25Created lightweight LLNotificationsUtil::add(), switched most alerts to use itJames Cook
Cuts number of includes of llnotifications.h from 300+ to 40.
2009-11-24Removed llnotifications.h from all headers by adding llnotificationsptr.hJames Cook
Fixed many more includes
2009-11-24Automated merge with ssh://hg.lindenlab.com/viewer/viewer-2-0James Cook
2009-11-23Initial implementation of parcel property icons and maturity string on nav barJames Cook
Added new LLAgentUI location format, renamed unclear old one Renamed ShowCoordinatesOption to NavBarShowCoordinates Extended LLLocationInputCtrl to show icons. Reviewed with Rick
2009-11-23Implemented normal task EXT-2739 (Ctrl-I should open Inventory side panel,Andrew Dyukov
Ctrl-Shift-I should open Inventory floater). --HG-- branch : product-engine
2009-11-19EXT-2490 Right click context menu for objects should include build toolsLeyla Farazha
EXT-2541 Help > Report Abuse screenshot not showing up EXT-2549 Crash on exit from mouse-look (Mini Map related) EXT-2548 Viewer freezes when going out of the mouselook while there are more than two floaters EXT-1983 [BSI] Trying to edit a script in a no mod object pops up script editor with "object out of range" reviewed by Richard
2009-11-16Increasing texture cache version to force cache clear of possibly corrupted ↵Steve Bennetts
texture caches from previous 2.0 versions. Enabling Admin menu in God Mode independent of Advanced menu.
2009-11-13EXT-2482 : Newly created folders have wrong default typeLoren Shih
Removed AT_ROOT_CATEGORY and FT_ROOT_CATEGORY since those types are unused. Changed FT_CATEGORY to FT_ROOT_INVENTORY to make its purpose more clear. This change assumes that no agent inventories have category type 9 for either inventory type or folder preferred type. --HG-- branch : avatar-pipeline
2009-11-12LLAppearanceManager cleanup - turning into proper singletonBrad Payne (Vir Linden)
--HG-- branch : avatar-pipeline
2009-11-11EXT-387 : Clean up WARNINGS - Advanced.DumpAvatarLocalTexturesLoren Shih
Added menu callbacks in for avatar texture debug, but disabled functionality for release version.
2009-11-11Add LLEventAPI class, formalizing the mechanism by which we wrap a C++ APINat Goodspeed
with an event API. In addition to the LLEventPump name on which to listen, LLEventAPI accepts a documentation string for event API introspection. Give every LLEventDispatcher::add() overload a new documentation string parameter for event API introspection. Convert every existing event API to new conventions, introducing suitable documentation strings for the API and each of its operations.
2009-11-10mergeJames Cook
2009-11-10Sanitize naming of getWindowRect (scaled vs. raw pixels) and ↵James Cook
getWorldViewRect (scaled vs. raw) Reduces chance of future UI bugs related to UI size. Discussed with Richard.
2009-11-10mergerichard
2009-11-09mergerichard
2009-11-09Automated merge with ssh://hg.lindenlab.com/moss/viewer2voiceparity/Lynx Linden
2009-11-09DEV-41317 DEV-41318: Enabled the Call button in the Profile panel.Lynx Linden
I've added a new LLAvatarActions::startCall() method to make it easy to start a new P2P call. The Resident Profile "Call" button is now hooked up to this. I've also put back the "Call" menu in the avatar popup menu and hooked this up too. While I was there I noticed that the "IM" popup menu code could all be removed in favor of a call to LLAvatarActions::startIM().
2009-11-09EXT-1866 : Inventory Side PanelLoren Shih
Various trivial UI behavioral changes for disabling/enabling old/new floaters when bringing up properties of objects/items. This is to make the UI behavior compliant with the Inventory Panel MVP. Also added missing sidepanel_task_info.xml (although this is not actually enabled for viewer2.0).
2009-11-06merge changes from product-engineSteve Bennetts
2009-11-06EXT-2031 Admin Menu Missing Without Advanced Menu EnabledSteve Bennetts
2009-11-06mergeLoren Shih
--HG-- branch : avatar-pipeline
2009-11-06merge from texture-pipelineSteve Bennetts
2009-11-06mergeVadim Savchuk
--HG-- branch : product-engine
2009-11-06fixed EXT-2295 "'Group Chat' btn makes chicklet appear only"Alexei Arabadji
--HG-- branch : product-engine
2009-11-06merge QAR-1829: texture pipeline branch in viewer-2.0.0.3Xiaohong Bao
2009-11-05refactored top level ui into main_view.xmlrichard
2009-11-05Merge from https://hg.aws.productengine.com/secondlife/viewer-2-0/Steve Bennetts
2009-11-05implemented major task EXT-2153 make changes to Communicate menuDenis Serdjuk
--HG-- branch : product-engine