summaryrefslogtreecommitdiff
path: root/indra/llxuixml/llinitparam.h
AgeCommit message (Collapse)Author
2012-01-23made add() method chainable on Multiple<> paramsRichard Linden
2011-12-01Build fixes for mac, hopefully Linux tooLeslie Linden
2011-11-30gcc fix attemptRichard Linden
2011-11-28removed unneeded changeversion tracking in param blocks in favor of a ↵Richard Linden
simpler dirty bit
2011-11-19fix for notification dialog buttons not workingRichard Linden
2011-11-18fix for notification buttons not being readRichard Linden
2011-11-16support for assignment of named values to params, works with string-typed paramsRichard Linden
as well as () operator
2011-11-11support for assignment of named values to paramsRichard Linden
2011-11-10fixed buildRichard Linden
fixed handle downcast not initiating handle
2011-11-08added Lazy modifier to params to support recursionRichard Linden
ChoiceBlock can now derive from another param block Params with name/value support can be assigned directly in C++ code using param = "named_value"
2011-10-27fixed buildRichard Linden
2011-10-27Automated merge with ssh://hg.lindenlab.com/richard/viewer-experienceRichard Linden
2011-10-20fix for Multiple<T> not working with non block typesRichard Linden
2011-10-13EXP-1345 FIX Chat text color is all blank when restartingRichard Linden
2011-10-10Mac build fixLeslie Linden
2011-10-10added compound LLSD parsing to param blocksRichard Nelson
reviewed by Leslie
2011-10-04another potential gcc fixRichard Linden
2011-10-03Automated merge with ssh://hg.lindenlab.com/richard/viewer-experience-fuiRichard Nelson
2011-10-03implemented Range and ClampedValue classes to standardize min/max settingsRichard Nelson
fixed not serializing named values when values provided from code
2011-10-03EXP-1202 : pull from richard/viewer-experience-fuiMerov Linden
2011-10-03EXP-1202 : pull from richard/viewer-experience-fuiMerov Linden
2011-10-03fixed buildRichard Nelson
2011-09-30param block cleanupRichard Nelson
added Flag as value type moved Batch to BatchBlock renamed Choice to ChoiceBlock made merging of parameters for ValueParams consistent (fillFrom and overwriteFrom are inverses of each other now) made iteration over Multiple<T> type params easier initial schema param blocks
2011-09-19Mac build fix for picky gccLeslie Linden
2011-09-16added Flag as new param type...Richard Nelson
usage: <foo><bar/></foo> will set the bar flag on foo LLSD foo; foo["bar"]; will set the bar flag on foo converted notifications unique to use flag
2011-09-08EXP-1196 FIX Fix param block template orderingRichard Linden
2011-09-06EXP-1196 FIX Fix param block template orderingRichard Linden
changed ordering of template loading relative to constructor setting of params moved a lot of constructor-set params to template files reviewed by Leslie
2011-07-14EXP-880 FIX Enable navigation chrome in search floaterRichard Linden
fixed regression where profile window wasn't using requested size
2011-07-13EXP-880 FIX Enable navigation chrome in search floaterRichard Linden
fixed regression where preferred content size was no longer being respected
2011-06-08Fixed to allow param blocks to exceed 64k, even though the size makes me wince.Leslie Linden
Modified viewer window to not create a navigation bar on exit if one doesn't yet exist. Reviewed by Richard.
2011-04-28fixed build (again)Richard Linden
2011-04-28fixed buildRichard Linden
2011-04-28EXP-749 FIX [REGRESSION] Voice status indicator shown in IM session instead ↵Richard Linden
of profile pic in Basic and Advanced modes reviewed by Leyla
2011-04-20mac and linux build fixesLeslie Linden
2011-04-19EXP-648 FIX As a developer, I want to be able to specify param blocks that ↵Richard Linden
use Multiple<LLUIImage> for a sequence of images Factored out param block data classes so that specialized param block types, such as LLUIImage, LLFontGL, LLRect, etc. can be stored in a Multiple<T> context Converted loading_indicator to take image sequence from XUI deprecated name-value pairs for LLUIColor values, and put them in colors.xml
2010-10-08potential fix for linux buildRichard Linden
2010-10-06added param block support for empty/undefined elements in XML/LLSD respectively.Richard Nelson
This way <foo/> or LLSD["foo"]; both define a default constructed value for the parameter named foo, useful in the Multiple<T> case
2010-10-05tighter packing of boolean params by shuffling member variablesRichard Linden
2010-09-22fix for gccRichard Linden
2010-09-22instead of exposing mutable container in LLInitParam::Multiple, just expose ↵Richard Linden
access functions, begin(), end(), etc. this allows mutation of param block contents, without being able to change number of elements
2010-09-16renamed isProvided() to anyProvided() and fixed partial params (missing ↵Richard Linden
mandatory elements) not merging over complete params
2010-09-16fixed serialization of choice blocks sometimes including more than one ↵Richard Linden
alternative fixed deserialization of Multiple<Block> leaving dummy blocks around when failing to find matching key
2010-09-14added non-const accessor to Multiple<T> containers, might need to revertRichard Nelson
2010-08-27Post-convert merge by convert_monolith.py from ./viewer-experienceMonroe Linden
2010-08-24removed LLLayoutStack::fromXML custom xml parsingRichard Nelson
2010-08-23made Params parsers not act as singletonsRichard Nelson
2010-08-16fixed slicing problem with paramblocks where block descriptors are invalid ↵Richard Nelson
after copying a derived block type to a base block value.
2010-08-13Change license from GPL to LGPL (version 2.1)Oz Linden
2010-08-05reverted unportable use of typeinfo* as hash keyRichard Linden
2010-08-04first pass at faster XUI parsing (no recursion support yet)Richard Nelson
also made LLSD->param block parsing faster