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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llpanellogin.h
  3.  * @brief Login username entry fields.
  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_LLPANELLOGIN_H
  33. #define LL_LLPANELLOGIN_H
  34. #include "llpanel.h"
  35. #include "llpointer.h" // LLPointer<>
  36. #include "llmediactrl.h" // LLMediaCtrlObserver
  37. #include <boost/scoped_ptr.hpp>
  38. class LLLineEditor;
  39. class LLUIImage;
  40. class LLPanelLoginListener;
  41. class LLPanelLogin:
  42. public LLPanel,
  43. public LLViewerMediaObserver
  44. {
  45. LOG_CLASS(LLPanelLogin);
  46. public:
  47. LLPanelLogin(const LLRect &rect, BOOL show_server, 
  48. void (*callback)(S32 option, void* user_data),
  49. void *callback_data);
  50. ~LLPanelLogin();
  51. virtual BOOL handleKeyHere(KEY key, MASK mask);
  52. virtual void draw();
  53. virtual void setFocus( BOOL b );
  54. // Show the XUI first name, last name, and password widgets.  They are
  55. // hidden on startup for reg-in-client
  56. static void showLoginWidgets();
  57. static void show(const LLRect &rect, BOOL show_server, 
  58. void (*callback)(S32 option, void* user_data), 
  59. void* callback_data);
  60. // Remember password checkbox is set via gSavedSettings "RememberPassword"
  61. static void setFields(const std::string& firstname, const std::string& lastname, 
  62. const std::string& password);
  63. static void addServer(const std::string& server, S32 domain_name);
  64. static void refreshLocation( bool force_visible );
  65. static void updateLocationUI();
  66. static void getFields(std::string *firstname, std::string *lastname,
  67.   std::string *password);
  68. static BOOL isGridComboDirty();
  69. static void getLocation(std::string &location);
  70. static void closePanel();
  71. void setSiteIsAlive( bool alive );
  72. static void loadLoginPage();
  73. static void giveFocus();
  74. static void setAlwaysRefresh(bool refresh); 
  75. static void mungePassword(LLUICtrl* caller, void* user_data);
  76. // inherited from LLViewerMediaObserver
  77. /*virtual*/ void handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event);
  78. private:
  79. friend class LLPanelLoginListener;
  80. void reshapeBrowser();
  81. static void onClickConnect(void*);
  82. static void onClickNewAccount(void*);
  83. // static bool newAccountAlertCallback(const LLSD& notification, const LLSD& response);
  84. static void onClickVersion(void*);
  85. static void onClickForgotPassword(void*);
  86. static void onClickHelp(void*);
  87. static void onPassKey(LLLineEditor* caller, void* user_data);
  88. static void onSelectServer(LLUICtrl*, void*);
  89. static void onServerComboLostFocus(LLFocusableElement*);
  90. private:
  91. LLPointer<LLUIImage> mLogoImage;
  92. boost::scoped_ptr<LLPanelLoginListener> mListener;
  93. void (*mCallback)(S32 option, void *userdata);
  94. void* mCallbackData;
  95. std::string mIncomingPassword;
  96. std::string mMungedPassword;
  97. static LLPanelLogin* sInstance;
  98. static BOOL sCapslockDidNotification;
  99. BOOL mHtmlAvailable;
  100. };
  101. std::string load_password_from_disk(void);
  102. void save_password_to_disk(const char* hashed_password);
  103. #endif