diff options
Diffstat (limited to 'indra')
43 files changed, 176 insertions, 41 deletions
diff --git a/indra/cmake/00-Common.cmake b/indra/cmake/00-Common.cmake index b159092592..1f578eec5f 100644 --- a/indra/cmake/00-Common.cmake +++ b/indra/cmake/00-Common.cmake @@ -119,14 +119,14 @@ if (LINUX)    endif (${GXX_VERSION} STREQUAL ${CXX_VERSION})    # Let's actually get a numerical version of gxx's version -  STRING(REGEX REPLACE ".* ([0-9])\\.([0-9])\\.([0-9]).*" "\\1\\2\\3" CXX_VERSION ${CXX_VERSION}) +  STRING(REGEX REPLACE ".* ([0-9])\\.([0-9])\\.([0-9]).*" "\\1\\2\\3" CXX_VERSION_NUMBER ${CXX_VERSION}) -  # gcc 4.3 and above don't like the LL boost and also  +  # gcc 4.3 and above don't like the LL boost and also    # cause warnings due to our use of deprecated headers -  if(${CXX_VERSION} GREATER 429) +  if(${CXX_VERSION_NUMBER} GREATER 429)      add_definitions(-Wno-parentheses)      set(CMAKE_CXX_FLAGS "-Wno-deprecated ${CMAKE_CXX_FLAGS}") -  endif (${CXX_VERSION} GREATER 429) +  endif (${CXX_VERSION_NUMBER} GREATER 429)    # End of hacks. diff --git a/indra/llaudio/CMakeLists.txt b/indra/llaudio/CMakeLists.txt index 9e9e1aaeae..bfa2c34c12 100644 --- a/indra/llaudio/CMakeLists.txt +++ b/indra/llaudio/CMakeLists.txt @@ -31,7 +31,6 @@ set(llaudio_SOURCE_FILES      llaudioengine.cpp      lllistener.cpp      llaudiodecodemgr.cpp -    llvorbisdecode.cpp      llvorbisencode.cpp      ) @@ -41,7 +40,6 @@ set(llaudio_HEADER_FILES      llaudioengine.h      lllistener.h      llaudiodecodemgr.h -    llvorbisdecode.h      llvorbisencode.h      llwindgen.h      ) @@ -60,11 +58,11 @@ if (FMOD)           )      if (LINUX) -      if (${CXX_VERSION} MATCHES "4.[23]") +      if (${CXX_VERSION_NUMBER} GREATER 419)          set_source_files_properties(llaudioengine_fmod.cpp                                      llstreamingaudio_fmod.cpp                                      COMPILE_FLAGS -Wno-write-strings) -      endif (${CXX_VERSION} MATCHES "4.[23]") +      endif (${CXX_VERSION_NUMBER} GREATER 419)      endif (LINUX)  endif (FMOD) diff --git a/indra/llaudio/llaudiodecodemgr.cpp b/indra/llaudio/llaudiodecodemgr.cpp index ae959eaa81..6bbaad9cef 100644 --- a/indra/llaudio/llaudiodecodemgr.cpp +++ b/indra/llaudio/llaudiodecodemgr.cpp @@ -33,7 +33,6 @@  #include "llaudiodecodemgr.h" -#include "llvorbisdecode.h"  #include "llaudioengine.h"  #include "lllfsthread.h"  #include "llvfile.h" diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index c3d8a5aa23..70d770ef7e 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -2,6 +2,7 @@   * @file llpluginclassmedia.cpp   * @brief LLPluginClassMedia handles a plugin which knows about the "media" message class.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/llplugin/llpluginclassmedia.h b/indra/llplugin/llpluginclassmedia.h index dcc4a3bd6a..6b64688718 100644 --- a/indra/llplugin/llpluginclassmedia.h +++ b/indra/llplugin/llpluginclassmedia.h @@ -2,6 +2,7 @@   * @file llpluginclassmedia.h   * @brief LLPluginClassMedia handles interaction with a plugin which knows about the "media" message class.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGINCLASSMEDIA_H diff --git a/indra/llplugin/llpluginclassmediaowner.h b/indra/llplugin/llpluginclassmediaowner.h index c798af29ca..6d369cd51a 100644 --- a/indra/llplugin/llpluginclassmediaowner.h +++ b/indra/llplugin/llpluginclassmediaowner.h @@ -2,6 +2,7 @@   * @file llpluginclassmediaowner.h   * @brief LLPluginClassMedia handles interaction with a plugin which knows about the "media" message class.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGINCLASSMEDIAOWNER_H diff --git a/indra/llplugin/llplugininstance.cpp b/indra/llplugin/llplugininstance.cpp index 58fb792d0d..16ba492669 100644 --- a/indra/llplugin/llplugininstance.cpp +++ b/indra/llplugin/llplugininstance.cpp @@ -2,6 +2,7 @@   * @file llplugininstance.cpp   * @brief LLPluginInstance handles loading the dynamic library of a plugin and setting up its entry points for message passing.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/llplugin/llplugininstance.h b/indra/llplugin/llplugininstance.h index ba569df10c..02936f65fb 100644 --- a/indra/llplugin/llplugininstance.h +++ b/indra/llplugin/llplugininstance.h @@ -2,6 +2,7 @@   * @file llplugininstance.h   * @brief LLPluginInstance handles loading the dynamic library of a plugin and setting up its entry points for message passing.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGININSTANCE_H diff --git a/indra/llplugin/llpluginmessage.cpp b/indra/llplugin/llpluginmessage.cpp index 32601b47db..34e02c356e 100644 --- a/indra/llplugin/llpluginmessage.cpp +++ b/indra/llplugin/llpluginmessage.cpp @@ -2,6 +2,7 @@   * @file llpluginmessage.cpp   * @brief LLPluginMessage encapsulates the serialization/deserialization of messages passed to and from plugins.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/llplugin/llpluginmessage.h b/indra/llplugin/llpluginmessage.h index 5e93d8b7a1..99f8d1194f 100644 --- a/indra/llplugin/llpluginmessage.h +++ b/indra/llplugin/llpluginmessage.h @@ -2,6 +2,7 @@   * @file llpluginmessage.h   * @brief LLPluginMessage encapsulates the serialization/deserialization of messages passed to and from plugins.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGINMESSAGE_H diff --git a/indra/llplugin/llpluginmessageclasses.h b/indra/llplugin/llpluginmessageclasses.h index 927fcf2eb2..01fddb92c5 100644 --- a/indra/llplugin/llpluginmessageclasses.h +++ b/indra/llplugin/llpluginmessageclasses.h @@ -2,6 +2,7 @@   * @file llpluginmessageclasses.h   * @brief This file defines the versions of existing message classes for LLPluginMessage.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGINMESSAGECLASSES_H diff --git a/indra/llplugin/llpluginmessagepipe.cpp b/indra/llplugin/llpluginmessagepipe.cpp index 31ea138912..cc193fca42 100644 --- a/indra/llplugin/llpluginmessagepipe.cpp +++ b/indra/llplugin/llpluginmessagepipe.cpp @@ -2,6 +2,7 @@   * @file llpluginmessagepipe.cpp   * @brief Classes that implement connections from the plugin system to pipes/pumps.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/llplugin/llpluginmessagepipe.h b/indra/llplugin/llpluginmessagepipe.h index 4eb6575bd4..1ddb38de68 100644 --- a/indra/llplugin/llpluginmessagepipe.h +++ b/indra/llplugin/llpluginmessagepipe.h @@ -2,6 +2,7 @@   * @file llpluginmessagepipe.h   * @brief Classes that implement connections from the plugin system to pipes/pumps.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGINMESSAGEPIPE_H diff --git a/indra/llplugin/llpluginprocesschild.cpp b/indra/llplugin/llpluginprocesschild.cpp index fc95136d9e..55cf11c620 100644 --- a/indra/llplugin/llpluginprocesschild.cpp +++ b/indra/llplugin/llpluginprocesschild.cpp @@ -2,6 +2,7 @@   * @file llpluginprocesschild.cpp   * @brief LLPluginProcessChild handles the child side of the external-process plugin API.    * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/llplugin/llpluginprocesschild.h b/indra/llplugin/llpluginprocesschild.h index 75860bdf0a..f5c57c3d49 100644 --- a/indra/llplugin/llpluginprocesschild.h +++ b/indra/llplugin/llpluginprocesschild.h @@ -2,6 +2,7 @@   * @file llpluginprocesschild.h   * @brief LLPluginProcessChild handles the child side of the external-process plugin API.    * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGINPROCESSCHILD_H diff --git a/indra/llplugin/llpluginprocessparent.cpp b/indra/llplugin/llpluginprocessparent.cpp index b7ce800c3a..332ce288d7 100644 --- a/indra/llplugin/llpluginprocessparent.cpp +++ b/indra/llplugin/llpluginprocessparent.cpp @@ -2,6 +2,7 @@   * @file llpluginprocessparent.cpp   * @brief LLPluginProcessParent handles the parent side of the external-process plugin API.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/llplugin/llpluginprocessparent.h b/indra/llplugin/llpluginprocessparent.h index 1289e86c13..25669f5d78 100644 --- a/indra/llplugin/llpluginprocessparent.h +++ b/indra/llplugin/llpluginprocessparent.h @@ -2,6 +2,7 @@   * @file llpluginprocessparent.h   * @brief LLPluginProcessParent handles the parent side of the external-process plugin API.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGINPROCESSPARENT_H diff --git a/indra/llplugin/llpluginsharedmemory.cpp b/indra/llplugin/llpluginsharedmemory.cpp index ce8b8e3e09..3c69a69d28 100644 --- a/indra/llplugin/llpluginsharedmemory.cpp +++ b/indra/llplugin/llpluginsharedmemory.cpp @@ -2,6 +2,7 @@   * @file llpluginsharedmemory.cpp   * @brief LLPluginSharedMemory manages a shared memory segment for use by the LLPlugin API.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/llplugin/llpluginsharedmemory.h b/indra/llplugin/llpluginsharedmemory.h index a4613b9a54..4014620c52 100644 --- a/indra/llplugin/llpluginsharedmemory.h +++ b/indra/llplugin/llpluginsharedmemory.h @@ -2,6 +2,7 @@   * @file llpluginsharedmemory.h   * @brief LLPluginSharedMemory manages a shared memory segment for use by the LLPlugin API.   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef LL_LLPLUGINSHAREDMEMORY_H diff --git a/indra/llplugin/slplugin/slplugin.cpp b/indra/llplugin/slplugin/slplugin.cpp index ddca60867a..23dc532ba5 100644 --- a/indra/llplugin/slplugin/slplugin.cpp +++ b/indra/llplugin/slplugin/slplugin.cpp @@ -2,6 +2,8 @@   * @file slplugin.cpp   * @brief Loader shell for plugins, intended to be launched by the plugin host application, which directly loads a plugin dynamic library.   * + * @cond + *   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +29,8 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * + * @endcond   */ diff --git a/indra/llui/lltooltip.cpp b/indra/llui/lltooltip.cpp index 959313a5b6..d7228c78bd 100644 --- a/indra/llui/lltooltip.cpp +++ b/indra/llui/lltooltip.cpp @@ -228,7 +228,7 @@ LLToolTip::LLToolTip(const LLToolTip::Params& p)  	{  		LLButton::Params p_button;  		p_button.name(std::string("play_media")); -		p_button.label(""); // provid label but set to empty so name does not overwrite it -angela +		p_button.label(""); // provide label but set to empty so name does not overwrite it -angela  		TOOLTIP_PLAYBUTTON_SIZE = 16;  		LLRect button_rect;  		button_rect.setOriginAndSize((mPadding +TOOLTIP_ICON_SIZE+ mPadding ), mPadding, TOOLTIP_ICON_SIZE, TOOLTIP_ICON_SIZE); diff --git a/indra/media_plugins/base/media_plugin_base.cpp b/indra/media_plugins/base/media_plugin_base.cpp index 6acac07423..8c8fa24a65 100644 --- a/indra/media_plugins/base/media_plugin_base.cpp +++ b/indra/media_plugins/base/media_plugin_base.cpp @@ -2,6 +2,7 @@   * @file media_plugin_base.cpp   * @brief Media plugin base class for LLMedia API plugin system   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/media_plugins/base/media_plugin_base.h b/indra/media_plugins/base/media_plugin_base.h index f1e96335f9..4dd157a07c 100644 --- a/indra/media_plugins/base/media_plugin_base.h +++ b/indra/media_plugins/base/media_plugin_base.h @@ -2,6 +2,7 @@   * @file media_plugin_base.h   * @brief Media plugin base class for LLMedia API plugin system   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/media_plugins/example/media_plugin_example.cpp b/indra/media_plugins/example/media_plugin_example.cpp index 99e0199a29..f5b077fea0 100644 --- a/indra/media_plugins/example/media_plugin_example.cpp +++ b/indra/media_plugins/example/media_plugin_example.cpp @@ -2,6 +2,7 @@   * @file media_plugin_example.cpp   * @brief Example plugin for LLMedia API plugin system   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2009, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/media_plugins/gstreamer010/llmediaimplgstreamer.h b/indra/media_plugins/gstreamer010/llmediaimplgstreamer.h index ef41736c18..48accd3e66 100644 --- a/indra/media_plugins/gstreamer010/llmediaimplgstreamer.h +++ b/indra/media_plugins/gstreamer010/llmediaimplgstreamer.h @@ -3,6 +3,7 @@   * @author Tofu Linden   * @brief implementation that supports media playback via GStreamer.   * + * @cond   * $LicenseInfo:firstyear=2007&license=viewergpl$   *    * Copyright (c) 2007-2009, Linden Research, Inc. @@ -29,6 +30,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  // header guard diff --git a/indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.cpp b/indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.cpp index cc52232496..52cea46d46 100644 --- a/indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.cpp +++ b/indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.cpp @@ -2,6 +2,7 @@   * @file llmediaimplgstreamer_syms.cpp   * @brief dynamic GStreamer symbol-grabbing code   * + * @cond   * $LicenseInfo:firstyear=2007&license=viewergpl$   *    * Copyright (c) 2007-2009, Linden Research, Inc. @@ -28,6 +29,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #if LL_GSTREAMER010_ENABLED diff --git a/indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.h b/indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.h index ee7473d6d1..88f100af6e 100644 --- a/indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.h +++ b/indra/media_plugins/gstreamer010/llmediaimplgstreamer_syms.h @@ -2,6 +2,7 @@   * @file llmediaimplgstreamer_syms.h   * @brief dynamic GStreamer symbol-grabbing code   * + * @cond   * $LicenseInfo:firstyear=2007&license=viewergpl$   *    * Copyright (c) 2007-2009, Linden Research, Inc. @@ -28,6 +29,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/media_plugins/gstreamer010/llmediaimplgstreamertriviallogging.h b/indra/media_plugins/gstreamer010/llmediaimplgstreamertriviallogging.h index e31d4a3282..2244ccc146 100644 --- a/indra/media_plugins/gstreamer010/llmediaimplgstreamertriviallogging.h +++ b/indra/media_plugins/gstreamer010/llmediaimplgstreamertriviallogging.h @@ -2,6 +2,7 @@   * @file llmediaimplgstreamertriviallogging.h   * @brief minimal logging utilities.   * + * @cond   * $LicenseInfo:firstyear=2009&license=viewergpl$   *    * Copyright (c) 2009, Linden Research, Inc. @@ -28,6 +29,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef __LLMEDIAIMPLGSTREAMERTRIVIALLOGGING_H__ diff --git a/indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.cpp b/indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.cpp index d8ccfaa702..5bb0ef5a99 100644 --- a/indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.cpp +++ b/indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.cpp @@ -2,6 +2,7 @@   * @file llmediaimplgstreamervidplug.h   * @brief Video-consuming static GStreamer plugin for gst-to-LLMediaImpl   * + * @cond   * $LicenseInfo:firstyear=2007&license=viewergpl$   *    * Copyright (c) 2007-2009, Linden Research, Inc. @@ -28,6 +29,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #if LL_GSTREAMER010_ENABLED diff --git a/indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.h b/indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.h index f6d55b8758..208523e8d0 100644 --- a/indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.h +++ b/indra/media_plugins/gstreamer010/llmediaimplgstreamervidplug.h @@ -2,6 +2,7 @@   * @file llmediaimplgstreamervidplug.h   * @brief Video-consuming static GStreamer plugin for gst-to-LLMediaImpl   * + * @cond   * $LicenseInfo:firstyear=2007&license=viewergpl$   *    * Copyright (c) 2007-2009, Linden Research, Inc. @@ -28,6 +29,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #ifndef __GST_SLVIDEO_H__ diff --git a/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp b/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp index a4c43988ba..d21ff26f83 100644 --- a/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp +++ b/indra/media_plugins/gstreamer010/media_plugin_gstreamer010.cpp @@ -2,6 +2,7 @@   * @file media_plugin_gstreamer010.cpp   * @brief GStreamer-0.10 plugin for LLMedia API plugin system   * + * @cond   * $LicenseInfo:firstyear=2007&license=viewergpl$   *   * Copyright (c) 2007, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/media_plugins/quicktime/media_plugin_quicktime.cpp b/indra/media_plugins/quicktime/media_plugin_quicktime.cpp index 236f79978d..dbc44c8334 100644 --- a/indra/media_plugins/quicktime/media_plugin_quicktime.cpp +++ b/indra/media_plugins/quicktime/media_plugin_quicktime.cpp @@ -2,6 +2,7 @@   * @file media_plugin_quicktime.cpp   * @brief QuickTime plugin for LLMedia API plugin system   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "linden_common.h" diff --git a/indra/media_plugins/webkit/media_plugin_webkit.cpp b/indra/media_plugins/webkit/media_plugin_webkit.cpp index 09348782a4..30c7483229 100644 --- a/indra/media_plugins/webkit/media_plugin_webkit.cpp +++ b/indra/media_plugins/webkit/media_plugin_webkit.cpp @@ -2,6 +2,7 @@   * @file media_plugin_webkit.cpp   * @brief Webkit plugin for LLMedia API plugin system   * + * @cond   * $LicenseInfo:firstyear=2008&license=viewergpl$   *   * Copyright (c) 2008, Linden Research, Inc. @@ -27,6 +28,7 @@   * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,   * COMPLETENESS OR PERFORMANCE.   * $/LicenseInfo$ + * @endcond   */  #include "llqtwebkit.h" diff --git a/indra/newview/CMakeLists.txt b/indra/newview/CMakeLists.txt index 65b172b184..91f43137c5 100644 --- a/indra/newview/CMakeLists.txt +++ b/indra/newview/CMakeLists.txt @@ -186,7 +186,7 @@ set(viewer_SOURCE_FILES      llfloatermediasettings.cpp      llfloatermemleak.cpp      llfloaternamedesc.cpp -        llfloaternearbymedia.cpp +    llfloaternearbymedia.cpp      llfloaternotificationsconsole.cpp      llfloateropenobject.cpp      llfloaterparcel.cpp @@ -213,6 +213,7 @@ set(viewer_SOURCE_FILES      llfloaterurldisplay.cpp      llfloaterurlentry.cpp      llfloatervoicedevicesettings.cpp +    llfloatervolumepulldown.cpp      llfloaterwater.cpp      llfloaterwhitelistentry.cpp      llfloaterwindlight.cpp diff --git a/indra/newview/llfloatermediasettings.cpp b/indra/newview/llfloatermediasettings.cpp index 7cb841d8af..1446b828c9 100644 --- a/indra/newview/llfloatermediasettings.cpp +++ b/indra/newview/llfloatermediasettings.cpp @@ -41,6 +41,7 @@  #include "lluictrlfactory.h"  #include "llbutton.h"  #include "llselectmgr.h" +#include "llsdutil.h"  LLFloaterMediaSettings* LLFloaterMediaSettings::sInstance = NULL; @@ -144,15 +145,15 @@ LLFloaterMediaSettings* LLFloaterMediaSettings::getInstance()  //static   void LLFloaterMediaSettings::apply()  { -    LLSD settings; +	LLSD settings;  	sInstance->mPanelMediaSettingsGeneral->preApply(); -    sInstance->mPanelMediaSettingsGeneral->getValues( settings ); +	sInstance->mPanelMediaSettingsGeneral->getValues( settings );  	sInstance->mPanelMediaSettingsSecurity->preApply();  	sInstance->mPanelMediaSettingsSecurity->getValues( settings );  	sInstance->mPanelMediaSettingsPermissions->preApply(); -    sInstance->mPanelMediaSettingsPermissions->getValues( settings ); +	sInstance->mPanelMediaSettingsPermissions->getValues( settings );  	LLSelectMgr::getInstance()->selectionSetMedia( LLTextureEntry::MF_HAS_MEDIA ); -    LLSelectMgr::getInstance()->selectionSetMediaData(settings); +	LLSelectMgr::getInstance()->selectionSetMediaData(settings);  	sInstance->mPanelMediaSettingsGeneral->postApply();  	sInstance->mPanelMediaSettingsSecurity->postApply();  	sInstance->mPanelMediaSettingsPermissions->postApply(); @@ -182,7 +183,12 @@ void LLFloaterMediaSettings::initValues( const LLSD& media_settings, bool editab  	sInstance->mPanelMediaSettingsPermissions->  		initValues( sInstance->mPanelMediaSettingsPermissions, media_settings, editable ); - +	 +	// Squirrel away initial values  +	sInstance->mInitialValues.clear(); +	sInstance->mPanelMediaSettingsGeneral->getValues( sInstance->mInitialValues ); +	sInstance->mPanelMediaSettingsSecurity->getValues( sInstance->mInitialValues ); +	sInstance->mPanelMediaSettingsPermissions->getValues( sInstance->mInitialValues );  }  //////////////////////////////////////////////////////////////////////////////// @@ -205,7 +211,7 @@ void LLFloaterMediaSettings::clearValues( bool editable)  {  	// clean up all panels before updating  	sInstance->mPanelMediaSettingsGeneral	 ->clearValues(sInstance->mPanelMediaSettingsGeneral,  editable); -	sInstance->mPanelMediaSettingsSecurity	 ->clearValues(sInstance->mPanelMediaSettingsSecurity,  editable); +	sInstance->mPanelMediaSettingsSecurity	 ->clearValues(sInstance->mPanelMediaSettingsSecurity,	editable);  	sInstance->mPanelMediaSettingsPermissions->clearValues(sInstance->mPanelMediaSettingsPermissions,  editable);	  } @@ -233,7 +239,7 @@ void LLFloaterMediaSettings::onBtnApply( void* userdata )  // static  void LLFloaterMediaSettings::onBtnCancel( void* userdata )  { - 	sInstance->closeFloater();  +	sInstance->closeFloater();   }  //////////////////////////////////////////////////////////////////////////////// @@ -248,7 +254,6 @@ void LLFloaterMediaSettings::onTabChanged(void* user_data, bool from_click)  //  void LLFloaterMediaSettings::enableOkApplyBtns( bool enable )  { -	setCtrlsEnabled( enable );  	childSetEnabled( "OK", enable );  	childSetEnabled( "Apply", enable );  } @@ -262,3 +267,37 @@ const std::string LLFloaterMediaSettings::getHomeUrl()  	else  		return std::string( "" );  } + +} + +//////////////////////////////////////////////////////////////////////////////// +// virtual  +void LLFloaterMediaSettings::draw() +{ +	// *NOTE: The code below is very inefficient.  Better to do this +	// only when data change. +	// Every frame, check to see what the values are.  If they are not +	// the same as the default media data, enable the OK/Apply buttons +	LLSD settings; +	sInstance->mPanelMediaSettingsGeneral->getValues( settings ); +	sInstance->mPanelMediaSettingsSecurity->getValues( settings ); +	sInstance->mPanelMediaSettingsPermissions->getValues( settings ); + +	bool values_changed = false; +	 +	LLSD::map_const_iterator iter = settings.beginMap(); +	LLSD::map_const_iterator end = settings.endMap(); +	for ( ; iter != end; ++iter ) +	{ +		const std::string ¤t_key = iter->first; +		const LLSD ¤t_value = iter->second; +		if ( ! llsd_equals(current_value, mInitialValues[current_key])) +		{ +			values_changed = true; +			break; +		} +	} +	 +	enableOkApplyBtns(values_changed); +	 +	LLFloater::draw();
\ No newline at end of file diff --git a/indra/newview/llfloatermediasettings.h b/indra/newview/llfloatermediasettings.h index aed6b00517..b72e3d855d 100644 --- a/indra/newview/llfloatermediasettings.h +++ b/indra/newview/llfloatermediasettings.h @@ -54,11 +54,13 @@ public:  	static void apply();  	static void initValues( const LLSD& media_settings , bool editable);  	static void clearValues( bool editable); -	void enableOkApplyBtns( bool enable ); -	LLPanelMediaSettingsSecurity* getPanelSecurity(){return mPanelMediaSettingsSecurity;}; -	const std::string getHomeUrl(); + +	LLPanelMediaSettingsSecurity* getPanelSecurity(){return mPanelMediaSettingsSecurity;};	 +	const std::string getHomeUrl();	  	//bool passesWhiteList( const std::string& test_url ); +	virtual void	draw(); +  	bool mIdenticalHasMediaInfo;  	bool mMultipleMedia;  	bool mMultipleValidMedia; @@ -82,6 +84,10 @@ protected:  	static LLFloaterMediaSettings* sInstance;  private: + +	void enableOkApplyBtns( bool enable ); +	 +	LLSD mInitialValues;  	bool mWaitingToClose;  }; diff --git a/indra/newview/llpanelmediasettingsgeneral.cpp b/indra/newview/llpanelmediasettingsgeneral.cpp index 9488f2bc18..3fa0e7bf8f 100644 --- a/indra/newview/llpanelmediasettingsgeneral.cpp +++ b/indra/newview/llpanelmediasettingsgeneral.cpp @@ -412,19 +412,19 @@ void LLPanelMediaSettingsGeneral::preApply()  //  void LLPanelMediaSettingsGeneral::getValues( LLSD &fill_me_in )  { -	fill_me_in[LLMediaEntry::AUTO_LOOP_KEY] = mAutoLoop->getValue(); -	fill_me_in[LLMediaEntry::AUTO_PLAY_KEY] = mAutoPlay->getValue(); -	fill_me_in[LLMediaEntry::AUTO_SCALE_KEY] = mAutoScale->getValue(); -	fill_me_in[LLMediaEntry::AUTO_ZOOM_KEY] = mAutoZoom->getValue(); -	fill_me_in[LLMediaEntry::CONTROLS_KEY] = mControls->getCurrentIndex(); +	fill_me_in[LLMediaEntry::AUTO_LOOP_KEY] = (LLSD::Boolean)mAutoLoop->getValue(); +	fill_me_in[LLMediaEntry::AUTO_PLAY_KEY] = (LLSD::Boolean)mAutoPlay->getValue(); +	fill_me_in[LLMediaEntry::AUTO_SCALE_KEY] = (LLSD::Boolean)mAutoScale->getValue(); +	fill_me_in[LLMediaEntry::AUTO_ZOOM_KEY] = (LLSD::Boolean)mAutoZoom->getValue(); +	fill_me_in[LLMediaEntry::CONTROLS_KEY] = (LLSD::Integer)mControls->getCurrentIndex();  	//Don't fill in current URL: this is only supposed to get changed via navigate  	// fill_me_in[LLMediaEntry::CURRENT_URL_KEY] = mCurrentURL->getValue(); -	fill_me_in[LLMediaEntry::HEIGHT_PIXELS_KEY] = mHeightPixels->getValue(); +	fill_me_in[LLMediaEntry::HEIGHT_PIXELS_KEY] = (LLSD::Integer)mHeightPixels->getValue();  	// Don't fill in the home URL if it is the special "Multiple Media" string!  	if (LLTrans::getString("Multiple Media") != mHomeURL->getValue()) -		fill_me_in[LLMediaEntry::HOME_URL_KEY] = mHomeURL->getValue(); -	fill_me_in[LLMediaEntry::FIRST_CLICK_INTERACT_KEY] = mFirstClick->getValue(); -	fill_me_in[LLMediaEntry::WIDTH_PIXELS_KEY] = mWidthPixels->getValue(); +		fill_me_in[LLMediaEntry::HOME_URL_KEY] = (LLSD::String)mHomeURL->getValue(); +	fill_me_in[LLMediaEntry::FIRST_CLICK_INTERACT_KEY] = (LLSD::Boolean)mFirstClick->getValue(); +	fill_me_in[LLMediaEntry::WIDTH_PIXELS_KEY] = (LLSD::Integer)mWidthPixels->getValue();  }  //////////////////////////////////////////////////////////////////////////////// diff --git a/indra/newview/llpanelmediasettingssecurity.cpp b/indra/newview/llpanelmediasettingssecurity.cpp index ce49b67899..d87c7608d5 100644 --- a/indra/newview/llpanelmediasettingssecurity.cpp +++ b/indra/newview/llpanelmediasettingssecurity.cpp @@ -191,7 +191,7 @@ void LLPanelMediaSettingsSecurity::preApply()  //  void LLPanelMediaSettingsSecurity::getValues( LLSD &fill_me_in )  { -    fill_me_in[LLMediaEntry::WHITELIST_ENABLE_KEY] = mEnableWhiteList->getValue(); +    fill_me_in[LLMediaEntry::WHITELIST_ENABLE_KEY] = (LLSD::Boolean)mEnableWhiteList->getValue();      // iterate over white list and extract items      std::vector< LLScrollListItem* > whitelist_items = mWhiteListList->getAllData(); diff --git a/indra/newview/llstatusbar.cpp b/indra/newview/llstatusbar.cpp index dc22a243eb..4915720036 100644 --- a/indra/newview/llstatusbar.cpp +++ b/indra/newview/llstatusbar.cpp @@ -42,6 +42,7 @@  #include "llfloaterbuycurrency.h"  #include "llfloaterchat.h"  #include "llfloaterlagmeter.h" +#include "llfloatervolumepulldown.h"  #include "llfloaterregioninfo.h"  #include "llfloaterscriptdebug.h"  #include "llhudicon.h" @@ -159,6 +160,7 @@ LLStatusBar::LLStatusBar(const LLRect& rect)  	mBtnVolume = getChild<LLButton>( "volume_btn" );  	mBtnVolume->setClickedCallback( onClickVolume, this ); +	mBtnVolume->setMouseEnterCallback(boost::bind(&LLStatusBar::onMouseEnterVolume, this));  	gSavedSettings.getControl("MuteAudio")->getSignal()->connect(boost::bind(&LLStatusBar::onVolumeChanged, this, _2)); @@ -203,7 +205,6 @@ LLStatusBar::LLStatusBar(const LLRect& rect)  	addChild(mSGPacketLoss);  	childSetActionTextbox("stat_btn", onClickStatGraph); -  }  LLStatusBar::~LLStatusBar() @@ -244,7 +245,6 @@ BOOL LLStatusBar::handleRightMouseDown(S32 x, S32 y, MASK mask)  BOOL LLStatusBar::postBuild()  { -  	gMenuBarView->setRightMouseDownCallback(boost::bind(&show_navbar_context_menu, _1, _2, _3));  	return TRUE; @@ -506,6 +506,13 @@ static void onClickScriptDebug(void*)  	LLFloaterScriptDebug::show(LLUUID::null);  } +//static +void LLStatusBar::onMouseEnterVolume(LLUICtrl* ctrl) +{ +	// show the master volume pull-down +	LLFloaterReg::showInstance("volume_pulldown"); +} +  static void onClickVolume(void* data)  {  	// toggle the master mute setting diff --git a/indra/newview/llstatusbar.h b/indra/newview/llstatusbar.h index bdaacce981..f77cc1acb8 100644 --- a/indra/newview/llstatusbar.h +++ b/indra/newview/llstatusbar.h @@ -47,6 +47,7 @@ class LLUICtrl;  class LLUUID;  class LLFrameTimer;  class LLStatGraph; +class LLPanelVolumePulldown;  class LLStatusBar  :	public LLPanel @@ -92,8 +93,8 @@ private:  	void onVolumeChanged(const LLSD& newvalue); +	static void onMouseEnterVolume(LLUICtrl* ctrl);  	static void onClickStatGraph(void* data); -	  private:  	LLTextBox	*mTextHealth; diff --git a/indra/newview/llviewerfloaterreg.cpp b/indra/newview/llviewerfloaterreg.cpp index 227f6c4971..1a8edb1f6a 100644 --- a/indra/newview/llviewerfloaterreg.cpp +++ b/indra/newview/llviewerfloaterreg.cpp @@ -106,6 +106,7 @@  #include "llfloateruipreview.h"  #include "llfloaterurldisplay.h"  #include "llfloatervoicedevicesettings.h" +#include "llfloatervolumepulldown.h"  #include "llfloaterwater.h"  #include "llfloaterwhitelistentry.h"  #include "llfloaterwindlight.h" @@ -248,6 +249,7 @@ void LLViewerFloaterReg::registerFloaters()  	LLFloaterReg::add("upload_image", "floater_image_preview.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterImagePreview>, "upload");  	LLFloaterReg::add("upload_sound", "floater_sound_preview.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterSoundPreview>, "upload"); +	LLFloaterReg::add("volume_pulldown", "floater_volume_pulldown.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterVolumePulldown>);  	LLFloaterReg::add("voice_call", "floater_call.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLFloaterCall>);  	LLFloaterReg::add("voice_controls", "floater_voice_controls.xml", (LLFloaterBuildFunc)&LLFloaterReg::build<LLCallFloater>); diff --git a/indra/newview/skins/default/xui/en/panel_media_settings_general.xml b/indra/newview/skins/default/xui/en/panel_media_settings_general.xml index 3ac0f52b7d..b82a435b41 100644 --- a/indra/newview/skins/default/xui/en/panel_media_settings_general.xml +++ b/indra/newview/skins/default/xui/en/panel_media_settings_general.xml @@ -231,12 +231,23 @@     width="50" />    <text bottom_delta="0" follows="top|left" height="15" left_delta="60" name="X_label"> -    X +	X    </text> -  <spinner bottom_delta="0" -	     decimal_digits="0" enabled="true" follows="left|top" height="16" -	     increment="1" initial_val="256" label="" label_width="0" -	     left_delta="20" max_val="2048" min_val="0" mouse_opaque="true" -	     name="height_pixels" width="50" /> +  <spinner  +	  bottom_delta="0" +	  decimal_digits="0" +	  enabled="true" +	  follows="left|top"  +	  height="16" +	  increment="1" +	  initial_val="256"  +	  label="" +	  label_width="0" +	  left_delta="20"  +	  max_val="2048"  +	  min_val="0" +	  mouse_opaque="true" +	  name="height_pixels" +	  width="50" />  </panel> diff --git a/indra/newview/skins/default/xui/en/panel_status_bar.xml b/indra/newview/skins/default/xui/en/panel_status_bar.xml index 65bc48265d..9c66653e3c 100644 --- a/indra/newview/skins/default/xui/en/panel_status_bar.xml +++ b/indra/newview/skins/default/xui/en/panel_status_bar.xml @@ -81,6 +81,17 @@       name="volume_btn"       tool_tip="Global Volume Control"       width="16" /> +    <panel +     class="panel_volume_pulldown" +     follows="all" +     height="533" +     layout="topleft" +     left="0" +     name="volume_pulldown" +     top="5" +     visible="false" +     width="313" /> +      <text       enabled="true"       follows="right|bottom"  | 
