llpanelmediasettingsgeneral.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llpanelmediasettingsgeneral.h
  3.  * @brief LLPanelMediaSettingsGeneral class definition
  4.  *
  5.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2007-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLPANELMEDIAMEDIASETTINGSGENERAL_H
  33. #define LL_LLPANELMEDIAMEDIASETTINGSGENERAL_H
  34. #include "llpanel.h"
  35. class LLButton;
  36. class LLCheckBoxCtrl;
  37. class LLLineEditor;
  38. class LLSpinCtrl;
  39. class LLTextureCtrl;
  40. class LLMediaCtrl;
  41. class LLTextBox;
  42. class LLFloaterMediaSettings;
  43. class LLPanelMediaSettingsGeneral : public LLPanel
  44. {
  45. public:
  46. LLPanelMediaSettingsGeneral();
  47. ~LLPanelMediaSettingsGeneral();
  48. // XXX TODO: put these into a common parent class?
  49. // Hook that the floater calls before applying changes from the panel
  50. void preApply();
  51. // Function that asks the panel to fill in values associated with the panel
  52. // 'include_tentative' means fill in tentative values as well, otherwise do not
  53. void getValues(LLSD &fill_me_in, bool include_tentative = true);
  54. // Hook that the floater calls after applying changes to the panel
  55. void postApply();
  56. BOOL postBuild();
  57. /*virtual*/ void draw();
  58. /*virtual*/ void onClose(bool app_quitting);
  59. void setParent( LLFloaterMediaSettings* parent );
  60. static void initValues( void* userdata, const LLSD& media_settings ,bool editable);
  61. static void clearValues( void* userdata, bool editable);
  62. // Navigates the current selected face to the Home URL.
  63. // If 'only_if_current_is_empty' is "true", it only performs
  64. // the operation if: 1) the current URL is empty, and 2) auto play is true.
  65. bool navigateHomeSelectedFace(bool only_if_current_is_empty);
  66. void updateMediaPreview();
  67. const std::string getHomeUrl();
  68. protected:
  69. LLFloaterMediaSettings* mParent;
  70. bool mMediaEditable;
  71. private:
  72. void updateCurrentUrl();
  73. static void onBtnResetCurrentUrl(LLUICtrl* ctrl, void *userdata);
  74. static void onCommitHomeURL(LLUICtrl* ctrl, void *userdata );
  75. static bool isMultiple();
  76. void checkHomeUrlPassesWhitelist();
  77. LLCheckBoxCtrl* mAutoLoop;
  78. LLCheckBoxCtrl* mFirstClick;
  79. LLCheckBoxCtrl* mAutoZoom;
  80. LLCheckBoxCtrl* mAutoPlay;
  81. LLCheckBoxCtrl* mAutoScale;
  82. LLSpinCtrl* mWidthPixels;
  83. LLSpinCtrl* mHeightPixels;
  84. LLLineEditor* mHomeURL;
  85. LLTextBox* mCurrentURL;
  86. LLMediaCtrl* mPreviewMedia;
  87. LLTextBox* mFailWhiteListText;
  88. };
  89. #endif  // LL_LLPANELMEDIAMEDIASETTINGSGENERAL_H