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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file lltoastalertpanel.h
  3.  * @brief Panel for alert toasts.
  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. #ifndef LL_TOASTALERTPANEL_H
  33. #define LL_TOASTALERTPANEL_H
  34. #include "lltoastpanel.h"
  35. #include "llfloater.h"
  36. #include "llui.h"
  37. #include "llnotificationptr.h"
  38. #include "llerror.h"
  39. class LLButton;
  40. class LLCheckBoxCtrl;
  41. class LLLineEditor;
  42. /**
  43.  * Toast panel for alert notification.
  44.  * Alerts notifications doesn't require user interaction.
  45.  *
  46.  * Replaces class LLAlertDialog.
  47.  * https://wiki.lindenlab.com/mediawiki/index.php?title=LLAlertDialog&oldid=81388
  48.  */
  49. class LLToastAlertPanel
  50. : public LLToastPanel
  51. {
  52. LOG_CLASS(LLToastAlertPanel);
  53. public:
  54. typedef bool (*display_callback_t)(S32 modal);
  55. class URLLoader
  56. {
  57. public:
  58. virtual void load(const std::string& url, bool force_open_externally = 0) = 0;
  59. virtual ~URLLoader()
  60. {
  61. }
  62. };
  63. static void setURLLoader(URLLoader* loader)
  64. {
  65. sURLLoader = loader;
  66. }
  67. public:
  68. // User's responsibility to call show() after creating these.
  69. LLToastAlertPanel( LLNotificationPtr notep, bool is_modal );
  70. virtual BOOL handleKeyHere(KEY key, MASK mask );
  71. virtual void draw();
  72. virtual void setVisible( BOOL visible );
  73. bool  setCheckBox( const std::string&, const std::string& );
  74. void setCaution(BOOL val = TRUE) { mCaution = val; }
  75. // If mUnique==TRUE only one copy of this message should exist
  76. void setUnique(BOOL val = TRUE) { mUnique = val; }
  77. void setEditTextArgs(const LLSD& edit_args);
  78. void onClickIgnore(LLUICtrl* ctrl);
  79. void onButtonPressed(const LLSD& data, S32 button);
  80. private:
  81. static std::map<std::string, LLToastAlertPanel*> sUniqueActiveMap;
  82. virtual ~LLToastAlertPanel();
  83. // No you can't kill it.  It can only kill itself.
  84. // Does it have a readable title label, or minimize or close buttons?
  85. BOOL hasTitleBar() const;
  86. private:
  87. static URLLoader* sURLLoader;
  88. static LLControlGroup* sSettings;
  89. struct ButtonData
  90. {
  91. LLButton* mButton;
  92. std::string mURL;
  93. U32 mURLExternal;
  94. };
  95. std::vector<ButtonData> mButtonData;
  96. S32 mDefaultOption;
  97. LLCheckBoxCtrl* mCheck;
  98. BOOL mCaution;
  99. BOOL mUnique;
  100. LLUIString mLabel;
  101. LLFrameTimer mDefaultBtnTimer;
  102. // For Dialogs that take a line as text as input:
  103. LLLineEditor* mLineEditor;
  104. };
  105. #endif  // LL_TOASTALERTPANEL_H