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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lluploaddialog.cpp
  3.  * @brief LLUploadDialog class implementation
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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 "lluploaddialog.h"
  34. #include "llviewerwindow.h"
  35. #include "llfontgl.h"
  36. #include "llresmgr.h"
  37. #include "lltextbox.h"
  38. #include "llbutton.h"
  39. #include "llkeyboard.h"
  40. #include "llfocusmgr.h"
  41. #include "llviewercontrol.h"
  42. #include "llrootview.h"
  43. // static
  44. LLUploadDialog* LLUploadDialog::sDialog = NULL;
  45. // static
  46. LLUploadDialog* LLUploadDialog::modalUploadDialog(const std::string& msg)
  47. {
  48. // Note: object adds, removes, and destroys itself.
  49. return new LLUploadDialog(msg);
  50. }
  51. // static
  52. void LLUploadDialog::modalUploadFinished()
  53. {
  54. // Note: object adds, removes, and destroys itself.
  55. delete LLUploadDialog::sDialog;
  56. LLUploadDialog::sDialog = NULL;
  57. }
  58. ////////////////////////////////////////////////////////////
  59. // Private methods
  60. LLUploadDialog::LLUploadDialog( const std::string& msg)
  61.   : LLPanel()
  62. {
  63. setBackgroundVisible( TRUE );
  64. if( LLUploadDialog::sDialog )
  65. {
  66. delete LLUploadDialog::sDialog;
  67. }
  68. LLUploadDialog::sDialog = this;
  69. const LLFontGL* font = LLFontGL::getFontSansSerif();
  70. LLRect msg_rect;
  71. for (int line_num=0; line_num<16; ++line_num)
  72. {
  73. LLTextBox::Params params;
  74. params.name("Filename");
  75. params.rect(msg_rect);
  76. params.initial_value("Filename");
  77. params.font(font);
  78. mLabelBox[line_num] = LLUICtrlFactory::create<LLTextBox> (params);
  79. addChild(mLabelBox[line_num]);
  80. }
  81. setMessage(msg);
  82. // The dialog view is a root view
  83. gFocusMgr.setTopCtrl( this );
  84. }
  85. void LLUploadDialog::setMessage( const std::string& msg)
  86. {
  87. const LLFontGL* font = LLFontGL::getFontSansSerif();
  88. const S32 VPAD = 16;
  89. const S32 HPAD = 25;
  90. // Make the text boxes a little wider than the text
  91. const S32 TEXT_PAD = 8;
  92. // Split message into lines, separated by 'n'
  93. S32 max_msg_width = 0;
  94. std::list<std::string> msg_lines;
  95. S32 size = msg.size() + 1;
  96. std::vector<char> temp_msg(size); // non-const copy to make strtok happy
  97. strcpy( &temp_msg[0], msg.c_str());
  98. char* token = strtok( &temp_msg[0], "n" );
  99. while( token )
  100. {
  101. std::string tokstr(token);
  102. S32 cur_width = S32(font->getWidth(tokstr) + 0.99f) + TEXT_PAD;
  103. max_msg_width = llmax( max_msg_width, cur_width );
  104. msg_lines.push_back( tokstr );
  105. token = strtok( NULL, "n" );
  106. }
  107. S32 line_height = S32( font->getLineHeight() + 0.99f );
  108. S32 dialog_width = max_msg_width + 2 * HPAD;
  109. S32 dialog_height = line_height * msg_lines.size() + 2 * VPAD;
  110. reshape( dialog_width, dialog_height, FALSE );
  111. // Message
  112. S32 msg_x = (getRect().getWidth() - max_msg_width) / 2;
  113. S32 msg_y = getRect().getHeight() - VPAD - line_height;
  114. int line_num;
  115. for (line_num=0; line_num<16; ++line_num)
  116. {
  117. mLabelBox[line_num]->setVisible(FALSE);
  118. }
  119. line_num = 0;
  120. for (std::list<std::string>::iterator iter = msg_lines.begin();
  121.  iter != msg_lines.end(); ++iter)
  122. {
  123. std::string& cur_line = *iter;
  124. LLRect msg_rect;
  125. msg_rect.setOriginAndSize( msg_x, msg_y, max_msg_width, line_height );
  126. mLabelBox[line_num]->setRect(msg_rect);
  127. mLabelBox[line_num]->setText(cur_line);
  128. mLabelBox[line_num]->setColor( LLUIColorTable::instance().getColor( "LabelTextColor" ) );
  129. mLabelBox[line_num]->setVisible(TRUE);
  130. msg_y -= line_height;
  131. ++line_num;
  132. }
  133. centerWithin(gViewerWindow->getRootView()->getRect());
  134. }
  135. LLUploadDialog::~LLUploadDialog()
  136. {
  137. gFocusMgr.releaseFocusIfNeeded( this );
  138. //    LLFilePicker::instance().reset();
  139. LLUploadDialog::sDialog = NULL;
  140. }