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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file llfloaterurlentry.cpp
  3.  * @brief LLFloaterURLEntry class implementation
  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. #include "llviewerprecompiledheaders.h"
  33. #include "llhttpclient.h"
  34. #include "llfloaterurlentry.h"
  35. #include "llpanellandmedia.h"
  36. #include "llpanelface.h"
  37. #include "llcombobox.h"
  38. #include "llnotificationsutil.h"
  39. #include "llurlhistory.h"
  40. #include "lluictrlfactory.h"
  41. #include "llwindow.h"
  42. #include "llviewerwindow.h"
  43. static LLFloaterURLEntry* sInstance = NULL;
  44. // Move this to its own file.
  45. // helper class that tries to download a URL from a web site and calls a method
  46. // on the Panel Land Media and to discover the MIME type
  47. class LLMediaTypeResponder : public LLHTTPClient::Responder
  48. {
  49. public:
  50. LLMediaTypeResponder( const LLHandle<LLFloater> parent ) :
  51.   mParent( parent )
  52.   {}
  53.   LLHandle<LLFloater> mParent;
  54.   virtual void completedHeader(U32 status, const std::string& reason, const LLSD& content)
  55.   {
  56.   std::string media_type = content["content-type"].asString();
  57.   std::string::size_type idx1 = media_type.find_first_of(";");
  58.   std::string mime_type = media_type.substr(0, idx1);
  59.   completeAny(status, mime_type);
  60.   }
  61.   virtual void error( U32 status, const std::string& reason )
  62.   {
  63.   completeAny(status, "none/none");
  64.   }
  65.   void completeAny(U32 status, const std::string& mime_type)
  66.   {
  67.   // Set empty type to none/none.  Empty string is reserved for legacy parcels
  68.   // which have no mime type set.
  69.   std::string resolved_mime_type = ! mime_type.empty() ? mime_type : "none/none";
  70.   LLFloaterURLEntry* floater_url_entry = (LLFloaterURLEntry*)mParent.get();
  71.   if ( floater_url_entry )
  72.   floater_url_entry->headerFetchComplete( status, resolved_mime_type );
  73.   }
  74. };
  75. //-----------------------------------------------------------------------------
  76. // LLFloaterURLEntry()
  77. //-----------------------------------------------------------------------------
  78. LLFloaterURLEntry::LLFloaterURLEntry(LLHandle<LLPanel> parent)
  79. : LLFloater(LLSD()),
  80.   mPanelLandMediaHandle(parent)
  81. {
  82. LLUICtrlFactory::getInstance()->buildFloater(this, "floater_url_entry.xml", NULL);
  83. }
  84. //-----------------------------------------------------------------------------
  85. // ~LLFloaterURLEntry()
  86. //-----------------------------------------------------------------------------
  87. LLFloaterURLEntry::~LLFloaterURLEntry()
  88. {
  89. sInstance = NULL;
  90. }
  91. BOOL LLFloaterURLEntry::postBuild()
  92. {
  93. mMediaURLEdit = getChild<LLComboBox>("media_entry");
  94. // Cancel button
  95. childSetAction("cancel_btn", onBtnCancel, this);
  96. // Cancel button
  97. childSetAction("clear_btn", onBtnClear, this);
  98. // clear media list button
  99. LLSD parcel_history = LLURLHistory::getURLHistory("parcel");
  100. bool enable_clear_button = parcel_history.size() > 0 ? true : false;
  101. childSetEnabled( "clear_btn", enable_clear_button );
  102. // OK button
  103. childSetAction("ok_btn", onBtnOK, this);
  104. setDefaultBtn("ok_btn");
  105. buildURLHistory();
  106. return TRUE;
  107. }
  108. void LLFloaterURLEntry::buildURLHistory()
  109. {
  110. LLCtrlListInterface* url_list = childGetListInterface("media_entry");
  111. if (url_list)
  112. {
  113. url_list->operateOnAll(LLCtrlListInterface::OP_DELETE);
  114. }
  115. // Get all of the entries in the "parcel" collection
  116. LLSD parcel_history = LLURLHistory::getURLHistory("parcel");
  117. LLSD::array_iterator iter_history =
  118. parcel_history.beginArray();
  119. LLSD::array_iterator end_history =
  120. parcel_history.endArray();
  121. for(; iter_history != end_history; ++iter_history)
  122. {
  123. url_list->addSimpleElement((*iter_history).asString());
  124. }
  125. }
  126. void LLFloaterURLEntry::headerFetchComplete(U32 status, const std::string& mime_type)
  127. {
  128. LLPanelLandMedia* panel_media = dynamic_cast<LLPanelLandMedia*>(mPanelLandMediaHandle.get());
  129. if (panel_media)
  130. {
  131. // status is ignored for now -- error = "none/none"
  132. panel_media->setMediaType(mime_type);
  133. panel_media->setMediaURL(mMediaURLEdit->getValue().asString());
  134. }
  135. else
  136. {
  137. LLPanelFace* panel_face = dynamic_cast<LLPanelFace*>(mPanelLandMediaHandle.get());
  138. if(panel_face)
  139. {
  140. panel_face->setMediaType(mime_type);
  141. panel_face->setMediaURL(mMediaURLEdit->getValue().asString());
  142. }
  143. }
  144. // Decrement the cursor
  145. getWindow()->decBusyCount();
  146. childSetVisible("loading_label", false);
  147. closeFloater();
  148. }
  149. // static
  150. LLHandle<LLFloater> LLFloaterURLEntry::show(LLHandle<LLPanel> parent, const std::string media_url)
  151. {
  152. if (!sInstance)
  153. {
  154. sInstance = new LLFloaterURLEntry(parent);
  155. }
  156. sInstance->openFloater();
  157. sInstance->addURLToCombobox(media_url);
  158. return sInstance->getHandle();
  159. }
  160. bool LLFloaterURLEntry::addURLToCombobox(const std::string& media_url)
  161. {
  162. if(! mMediaURLEdit->setSimple( media_url ) && ! media_url.empty())
  163. {
  164. mMediaURLEdit->add( media_url );
  165. mMediaURLEdit->setSimple( media_url );
  166. return true;
  167. }
  168. // URL was not added for whatever reason (either it was empty or already existed)
  169. return false;
  170. }
  171. // static
  172. //-----------------------------------------------------------------------------
  173. // onBtnOK()
  174. //-----------------------------------------------------------------------------
  175. void LLFloaterURLEntry::onBtnOK( void* userdata )
  176. {
  177. LLFloaterURLEntry *self =(LLFloaterURLEntry *)userdata;
  178. std::string media_url = self->mMediaURLEdit->getValue().asString();
  179. self->mMediaURLEdit->remove(media_url);
  180. LLURLHistory::removeURL("parcel", media_url);
  181. if(self->addURLToCombobox(media_url))
  182. {
  183. // Add this url to the parcel collection
  184. LLURLHistory::addURL("parcel", media_url);
  185. }
  186. // leading whitespace causes problems with the MIME-type detection so strip it
  187. LLStringUtil::trim( media_url );
  188. // First check the URL scheme
  189. LLURI url(media_url);
  190. std::string scheme = url.scheme();
  191. // We assume that an empty scheme is an http url, as this is how we will treat it.
  192. if(scheme == "")
  193. {
  194. scheme = "http";
  195. }
  196. // Discover the MIME type only for "http" scheme.
  197. if(scheme == "http" || scheme == "https")
  198. {
  199. LLHTTPClient::getHeaderOnly( media_url,
  200. new LLMediaTypeResponder(self->getHandle()));
  201. }
  202. else
  203. {
  204. self->headerFetchComplete(0, scheme);
  205. }
  206. // Grey the buttons until we get the header response
  207. self->childSetEnabled("ok_btn", false);
  208. self->childSetEnabled("cancel_btn", false);
  209. self->childSetEnabled("media_entry", false);
  210. // show progress bar here?
  211. getWindow()->incBusyCount();
  212. self->childSetVisible("loading_label", true);
  213. }
  214. // static
  215. //-----------------------------------------------------------------------------
  216. // onBtnCancel()
  217. //-----------------------------------------------------------------------------
  218. void LLFloaterURLEntry::onBtnCancel( void* userdata )
  219. {
  220. LLFloaterURLEntry *self =(LLFloaterURLEntry *)userdata;
  221. self->closeFloater();
  222. }
  223. // static
  224. //-----------------------------------------------------------------------------
  225. // onBtnClear()
  226. //-----------------------------------------------------------------------------
  227. void LLFloaterURLEntry::onBtnClear( void* userdata )
  228. {
  229. LLNotificationsUtil::add( "ConfirmClearMediaUrlList", LLSD(), LLSD(), 
  230. boost::bind(&LLFloaterURLEntry::callback_clear_url_list, (LLFloaterURLEntry*)userdata, _1, _2) );
  231. }
  232. bool LLFloaterURLEntry::callback_clear_url_list(const LLSD& notification, const LLSD& response)
  233. {
  234. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  235. if ( option == 0 ) // YES
  236. {
  237. // clear saved list
  238. LLCtrlListInterface* url_list = childGetListInterface("media_entry");
  239. if ( url_list )
  240. {
  241. url_list->operateOnAll( LLCtrlListInterface::OP_DELETE );
  242. }
  243. // clear current contents of combo box
  244. mMediaURLEdit->clear();
  245. // clear stored version of list
  246. LLURLHistory::clear("parcel");
  247. // cleared the list so disable Clear button
  248. childSetEnabled( "clear_btn", false );
  249. }
  250. return false;
  251. }