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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file lltoastnotifypanel.h
  3.  * @brief Panel for notify 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 LLTOASTNOTIFYPANEL_H_
  33. #define LLTOASTNOTIFYPANEL_H_
  34. #include "llpanel.h"
  35. #include "llfontgl.h"
  36. #include "llnotificationptr.h"
  37. #include "llbutton.h"
  38. #include "lltoastpanel.h"
  39. #include "lliconctrl.h"
  40. #include "lltexteditor.h"
  41. #include "lltextbox.h"
  42. class LLNotificationForm;
  43. /**
  44.  * Toast panel for notification.
  45.  * Notification panel should be used for notifications that require a response from the user.
  46.  *
  47.  * Replaces class LLNotifyBox.
  48.  */
  49. class LLToastNotifyPanel: public LLToastPanel 
  50. {
  51. public:
  52. LLToastNotifyPanel(LLNotificationPtr&);
  53. virtual ~LLToastNotifyPanel();
  54. LLPanel * getControlPanel() { return mControlPanel; }
  55. protected:
  56. LLButton* createButton(const LLSD& form_element, BOOL is_option);
  57. // Used for callbacks
  58. struct InstanceAndS32
  59. {
  60. LLToastNotifyPanel* mSelf;
  61. std::string mButtonName;
  62. };
  63. std::vector<InstanceAndS32*> mBtnCallbackData;
  64. private:
  65. typedef std::pair<int,LLButton*> index_button_pair_t; 
  66. void adjustPanelForScriptNotice(S32 max_width, S32 max_height);
  67. void adjustPanelForTipNotice();
  68. void addDefaultButton();
  69. /*
  70.  * It lays out buttons of the notification in  mControlPanel.
  71.  * Buttons will be placed from BOTTOM to TOP.
  72.  * @param  h_pad horizontal space between buttons. It is depent on number of buttons.
  73.  * @param buttons vector of button to be added. 
  74.  */
  75. void updateButtonsLayout(const std::vector<index_button_pair_t>& buttons, S32 h_pad);
  76. // panel elements
  77. LLTextBase* mTextBox;
  78. LLPanel* mInfoPanel; // a panel, that contains an information
  79. LLPanel* mControlPanel; // a panel, that contains buttons (if present)
  80. // internal handler for button being clicked
  81. static void onClickButton(void* data);
  82. bool mIsTip;
  83. bool mAddedDefaultBtn;
  84. bool mIsScriptDialog;
  85. bool mIsCaution; 
  86. std::string mMessage;
  87. S32 mNumOptions;
  88. S32 mNumButtons;
  89. static const LLFontGL* sFont;
  90. static const LLFontGL* sFontSmall;
  91. };
  92. #endif /* LLTOASTNOTIFYPANEL_H_ */