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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llstatusbar.h
  3.  * @brief LLStatusBar class definition
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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_LLSTATUSBAR_H
  33. #define LL_LLSTATUSBAR_H
  34. #include "llpanel.h"
  35. // "Constants" loaded from settings.xml at start time
  36. extern S32 STATUS_BAR_HEIGHT;
  37. class LLButton;
  38. class LLLineEditor;
  39. class LLMessageSystem;
  40. class LLTextBox;
  41. class LLTextEditor;
  42. class LLUICtrl;
  43. class LLUUID;
  44. class LLFrameTimer;
  45. class LLStatGraph;
  46. class LLPanelVolumePulldown;
  47. class LLPanelNearByMedia;
  48. class LLStatusBar
  49. : public LLPanel
  50. {
  51. public:
  52. LLStatusBar(const LLRect& rect );
  53. /*virtual*/ ~LLStatusBar();
  54. /*virtual*/ void draw();
  55. /*virtual*/ BOOL handleRightMouseDown(S32 x, S32 y, MASK mask);
  56. /*virtual*/ BOOL postBuild();
  57. // MANIPULATORS
  58. void setBalance(S32 balance);
  59. void debitBalance(S32 debit);
  60. void creditBalance(S32 credit);
  61. // Request the latest currency balance from the server
  62. static void sendMoneyBalanceRequest();
  63. void setHealth(S32 percent);
  64. void setLandCredit(S32 credit);
  65. void setLandCommitted(S32 committed);
  66. void refresh();
  67. void setVisibleForMouselook(bool visible);
  68. // some elements should hide in mouselook
  69. // ACCESSORS
  70. S32 getBalance() const;
  71. S32 getHealth() const;
  72. BOOL isUserTiered() const;
  73. S32 getSquareMetersCredit() const;
  74. S32 getSquareMetersCommitted() const;
  75. S32 getSquareMetersLeft() const;
  76. LLPanelNearByMedia* getNearbyMediaPanel() { return mPanelNearByMedia; }
  77. private:
  78. // simple method to setup the part that holds the date
  79. void setupDate();
  80. void onClickBuyCurrency();
  81. void onVolumeChanged(const LLSD& newvalue);
  82. void onMouseEnterVolume();
  83. void onMouseEnterNearbyMedia();
  84. void onClickScreen(S32 x, S32 y);
  85. static void onClickStatGraph(void* data);
  86. static void onClickMediaToggle(void* data);
  87. private:
  88. LLTextBox *mTextHealth;
  89. LLTextBox *mTextTime;
  90. LLStatGraph *mSGBandwidth;
  91. LLStatGraph *mSGPacketLoss;
  92. LLButton *mBtnVolume;
  93. LLButton *mMediaToggle;
  94. S32 mBalance;
  95. S32 mHealth;
  96. S32 mSquareMetersCredit;
  97. S32 mSquareMetersCommitted;
  98. LLFrameTimer* mBalanceTimer;
  99. LLFrameTimer* mHealthTimer;
  100. LLPanelVolumePulldown* mPanelVolumePulldown;
  101. LLPanelNearByMedia* mPanelNearByMedia;
  102. static std::vector<std::string> sDays;
  103. static std::vector<std::string> sMonths;
  104. static const U32 MAX_DATE_STRING_LENGTH;
  105. };
  106. // *HACK: Status bar owns your cached money balance. JC
  107. BOOL can_afford_transaction(S32 cost);
  108. extern LLStatusBar *gStatusBar;
  109. #endif