summaryrefslogtreecommitdiff
path: root/indra/llui
AgeCommit message (Collapse)Author
2012-08-01CHUI-254 FIX Fix Inventory filter and item draw() to highlight matching ↵Richard Linden
substrings in inventory made background highlighting sit behind label, so as not to obscure neighboring characters in label
2012-08-01CHUI-268 (Transfer the common functionality from LLNearbyChat and ↵AlexanderP ProductEngine
LLIMFloater to LLIMConversation): Remove duplication of functionality from LLNearbyChat; transfer mChatHistory, mInputEditor and some its settings and callbacks to the base class.
2012-08-01build fixRichard Linden
2012-08-01build fix attemptRichard Linden
2012-08-01merge with ssh://hg.lindenlab.com/richard/viewer-chuiRichard Linden
2012-08-01CHUI-267 FIX Full inventory listing not always shown for test accountRichard Linden
changed LLFolderViewModelInterface::getFilter() to return a reference, since it is never NULL removed sort order from filter, which was causing unneeded filtering
2012-07-31CHUI-254 : Fix Inventory filter and item draw() to highlight matching ↵Merov Linden
substrings in inventory
2012-07-31Merge in viewer-developmentsimon@Simon-PC.lindenlab.com
2012-07-30Automated merge with ssh://hg.lindenlab.com/richard/viewer-chuiRichard Linden
2012-07-30moved method from places inventory up into common llfolderviewRichard Linden
2012-07-30CHUI-217 FIX Items are not visible in Merchant OutboxRichard Linden
cleaned up a lot custom code for folder view item creation in inbox and outbox proper initialization of views from inventory panel starting folder
2012-07-30CHUI-213: When a new folder is added to inventory, its parent is assigned ↵Gilbert Gonzales
before calling dirtyFilter(). This allows dirtyFilter() to propogate the dirty flag up.
2012-07-30CHUI-244 FIX for propagating the dirty filter flag to the folder view item's ↵Seth ProductEngine
parent. The filter dirty flag is set after a new child item is added to ensure that this item already has a parent and the dirty flag can be bubbled up.
2012-07-28Automated merge with http://hg.secondlife.com/viewer-developmentNat Goodspeed
2012-07-27Updating comments for merge conflicts after reviewing with Richard.Todd Stinson
2012-07-27Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release.Todd Stinson
2012-07-25Automated merge with ssh://hg.lindenlab.com/richard/viewer-chuiRichard Linden
2012-07-25optimization of LLSD param parsingRichard Linden
2012-07-25CHUI-252 FIX Deleting an item from object contents in build tools crashes viewerRichard Linden
also improved selection behavior for object contents when deleting/adding items
2012-07-25CHUI-222 FIX Selecting None in inventory filters does not update until ↵Richard Linden
inventory selected
2012-07-24CHUI-206 FIX Viewer crash when selecting to cut inventory item, then ↵Richard Linden
selecting to cut another inventory item Seems to work now, without filtering de-optimization
2012-07-24CHUI-211: Problem was due to a non-heap variable being deleted and then ↵Gilbert Gonzales
referenced later (which was found by ProductEngine). Also the crash occurred at a specifc location llpangelobjectinventory::reset() during a static_cast, so now using a dynamic_cast as a safeguard.
2012-07-23CHUI-227 FIX Teleport offers sent are not receivedRichard Linden
cleaned up serialization of LLSD to param block so that it can round-trip also, optimized LLXMLNode and fixed an assert
2012-07-23Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release.Todd Stinson
2012-07-18MAINT-1175: Ditch LLTypeInfoLookup, make map<const type_info*> work.Nat Goodspeed
Instead of forbidding std::map<const std::type_info*, ...> outright (which includes LLRegistry<const std::type_info*, ...> and LLRegistrySingleton<const std::type_info*, ...>), try to make it work by specializing std::less<const std::type_info*> to use std::type_info::before(). Make LLRegistryDefaultComparator<T> use std::less<T> so it can capitalize on that specialization.
2012-07-18MAINT-1175: merge backout LLRegistrySingleton<std::type_info::name()>Nat Goodspeed
2012-07-18Backed out changeset a25bfa87418d (using std::type_info::name())Nat Goodspeed
The changeset above touched every consumer of the two LLRegistrySingletons originally defined with std::type_info* as keys. Those two LLRegistrySingletons were changed to use const char* as keys, then all consumers were changed to pass std::type_info::name() instead of the plain std::type_info* pointer -- to deal with the observed fact that on Linux, a given type might produce different std::type_info* pointers in different load modules. Since then, Richard turned up the fascinating fact that at least some implementations of gcc's std::type_info::before() method already accommodate this peculiarity. It seems worth backing out the (dismayingly pervasive) change to see if properly using std::type_info::before() as the map comparator will work just as well, with conceptually simpler source code. This backout is transitional: we don't expect things to build/run properly until we've cherry-picked certain other pertinent changes.
2012-07-11MAINT-1175: Properly pass LLRegistry's COMPARATOR to underlying map.Nat Goodspeed
Although LLRegistry and LLRegistrySingleton have always defined a COMPARATOR template parameter, it wasn't used for the underlying map. Therefore every type, including any pointer type, was being compared using std::less. This happens to work most of the time -- but is tripping us up now. Pass COMPARATOR to underlying std::map. Fix a couple minor bugs in LLRegistryDefaultComparator (never before used!). Specialize for const char*. Remove CompareTypeID and LLCompareTypeID because we now actively forbid using LLRegistry<std::type_info*, ...>; remove only known reference (LLWidgetNameRegistry definition).
2012-07-11MAINT-1175: Forbid LLRegistry[Singleton]<std::type_info*, ...>.Nat Goodspeed
Back out code that selects LLTypeInfoLookup for the underlying map implementation when KEY = [const] std::type_info*, because LLTypeInfoLookup's API is changing to become incompatible with std::map. Instead, fail with STATIC_ASSERT when LLRegistry's KEY is [const] std::type_info*. Fix all existing uses to use std::type_info::name() string instead.
2012-07-09Pull from richard/viewer-chuiMerov Linden
2012-07-07Another Linux build fix.Seth ProductEngine
2012-07-07Linux build fix.Seth ProductEngine
LLFolderViewModelItem placed before the call to a method of this class in LLFolderViewModel::sort().
2012-07-06CHUI-196 FIXED (Chat text entry area gets resized unexpectedly with certain ↵Paul ProductEngine
user display names) - Fixed label length calculating
2012-07-05CHUI-98 : WIP, use the refactored folder view for conversation view listMerov Linden
2012-07-04CHUI-101 WIP Make LLFolderview general purposeRichard Linden
partial fix for crash on startup
2012-07-03CHUI-101 WIP Make LLFolderview general purposeRichard Linden
move llfolderview* into LLUI!
2012-07-02Pull merge from richard/viewer-chuiRichard Linden
2012-06-29Merge simon/viewmaster-merge for latest maint worksimon@Simon-PC.lindenlab.com
2012-06-28MergeDave Parks
2012-06-27CHUI-101 WIP Make LLFolderView general purposeRichard Linden
moved filtering logic to viewmodel
2012-06-27CHUI-180 FIXED (Started an ad hoc IM spams log with drawtext warning)Paul ProductEngine
- Don't draw TextBase context if it's empty and in focus
2012-06-26CHUI-182 FIXED (Vertical scrollbar flashes on and off when chat entry text ↵Paul ProductEngine
area expands) - To avoid unnecessary appearing of scrollbar, first chat entry must be expanded and only then decision should be taken in the base class whether scrollbar should be shown or not.
2012-06-25MAINT-30 Estate access lists for groups and residents are blank when "Allow ↵Kelly Washington
public access" is checked. MAINT-1200 Resident names not sorted in About Land (or Estate management) floater's allowed/banned boxes reviewed with Simon
2012-06-25CHUI-139 : Hide torn off floaters when hiding conversation list; make nearby ↵Merov Linden
chat always present; leave conversation list around when all torn off
2012-06-22Pull and merge from ssh://hg@bitbucket.org/lindenlab/viewer-release.Todd Stinson
2012-06-22CHUI-101 WIP Make LLFolderView general purposeRichard Linden
build fix for gcc added detection of duplicate widget registration
2012-06-22mergeDave Parks
2012-06-22CHUI-127 ADDITIONAL FIX (Make chat field auto resizable)Paul ProductEngine
- Fixed crash which occurred while navigating through history of sent messages
2012-06-22CHUI-161 FIXED (Text entered in local chat is not visible to other users nearby)Paul ProductEngine
- Applied Merov's fix. The problem was that text_editor was registered twice and, depending of the machine you ran, the viewer would pick one or the other. Mac users were unlucky enough to pick the wrong one all the time.
2012-06-21merge changes for DRTVWR-168Oz Linden