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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llmimetypes.h
  3.  * @brief Translates a MIME type like "video/quicktime" into a
  4.  * localizable user-friendly string like "QuickTime Movie"
  5.  *
  6.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2007-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  18.  * There are special exceptions to the terms and conditions of the GPL as
  19.  * it is applied to this Source Code. View the full text of the exception
  20.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  21.  * online at
  22.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #ifndef LLMIMETYPES_H
  34. #define LLMIMETYPES_H
  35. #include <string>
  36. #include <map>
  37. class LLMIMETypes
  38. {
  39. public:
  40. static bool parseMIMETypes(const std::string& xml_file_path);
  41. // Loads the MIME string definition XML file, usually
  42. // from the application skins directory
  43. static std::string translate(const std::string& mime_type);
  44. // Returns "QuickTime Movie" from "video/quicktime"
  45. static std::string widgetType(const std::string& mime_type);
  46. // Type of control widgets for this MIME type
  47. // Returns "movie" from "video/quicktime"
  48. static std::string implType(const std::string& mime_type);
  49. // Type of Impl to use for decoding media.
  50. static std::string findIcon(const std::string& mime_type);
  51. // Icon from control widget type for this MIME type
  52. static std::string findToolTip(const std::string& mime_type);
  53. // Tool tip from control widget type for this MIME type
  54. static std::string findPlayTip(const std::string& mime_type);
  55. // Play button tool tip from control widget type for this MIME type
  56. static std::string findDefaultMimeType(const std::string& widget_type);
  57. // Canonical mime type associated with this widget set
  58. static bool findAllowResize(const std::string& mime_type);
  59. // accessor for flag to enable/disable media size edit fields
  60. static bool findAllowLooping(const std::string& mime_type);
  61. // accessor for flag to enable/disable media looping checkbox
  62. static bool isTypeHandled(const std::string& mime_type);
  63. // determines if the specific mime type is handled by the media system
  64. static void reload(void*);
  65. // re-loads the MIME types file from the file path last passed into parseMIMETypes
  66. public:
  67. struct LLMIMEInfo
  68. {
  69. std::string mLabel;
  70. // friendly label like "QuickTime Movie"
  71. std::string mWidgetType;
  72. // "web" means use web media UI widgets
  73. std::string mImpl;
  74. // which impl to use with this mime type
  75. };
  76. struct LLMIMEWidgetSet
  77. {
  78. std::string mLabel;
  79. // friendly label like "QuickTime Movie"
  80. std::string mIcon;
  81. // Name of icon asset to display in toolbar
  82. std::string mDefaultMimeType;
  83. // Mime type string to use in absence of a specific one
  84. std::string mToolTip;
  85. // custom tool tip for this mime type
  86. std::string mPlayTip;
  87. // custom tool tip to display for Play button
  88. BOOL mAllowResize;
  89. // enable/disable media size edit fields
  90. BOOL mAllowLooping;
  91. // enable/disable media looping checkbox
  92. };
  93. typedef std::map< std::string, LLMIMEInfo > mime_info_map_t;
  94. typedef std::map< std::string, LLMIMEWidgetSet > mime_widget_set_map_t;
  95. // Public so users can iterate over it
  96. static mime_info_map_t sMap;
  97. static mime_widget_set_map_t sWidgetMap;
  98. private:
  99. };
  100. #endif