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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsearcheditor.h
  3.  * @brief Text editor widget that represents a search operation
  4.  *
  5.  * Features: 
  6.  * Text entry of a single line (text, delete, left and right arrow, insert, return).
  7.  * Callbacks either on every keystroke or just on the return key.
  8.  * Focus (allow multiple text entry widgets)
  9.  * Clipboard (cut, copy, and paste)
  10.  * Horizontal scrolling to allow strings longer than widget size allows 
  11.  * Pre-validation (limit which keys can be used)
  12.  * Optional line history so previous entries can be recalled by CTRL UP/DOWN
  13.  *
  14.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  15.  * 
  16.  * Copyright (c) 2001-2010, Linden Research, Inc.
  17.  * 
  18.  * Second Life Viewer Source Code
  19.  * The source code in this file ("Source Code") is provided by Linden Lab
  20.  * to you under the terms of the GNU General Public License, version 2.0
  21.  * ("GPL"), unless you have obtained a separate licensing agreement
  22.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  23.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  24.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  25.  * 
  26.  * There are special exceptions to the terms and conditions of the GPL as
  27.  * it is applied to this Source Code. View the full text of the exception
  28.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  29.  * online at
  30.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  31.  * 
  32.  * By copying, modifying or distributing this software, you acknowledge
  33.  * that you have read and understood your obligations described above,
  34.  * and agree to abide by those obligations.
  35.  * 
  36.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  37.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  38.  * COMPLETENESS OR PERFORMANCE.
  39.  * $/LicenseInfo$
  40.  */
  41. #ifndef LL_SEARCHEDITOR_H
  42. #define LL_SEARCHEDITOR_H
  43. #include "lllineeditor.h"
  44. #include "llbutton.h"
  45. class LLSearchEditor : public LLUICtrl
  46. {
  47. public:
  48. struct Params : public LLInitParam::Block<Params, LLLineEditor::Params>
  49. {
  50. Optional<LLButton::Params> search_button, 
  51. clear_button;
  52. Optional<bool> search_button_visible, 
  53. clear_button_visible;
  54. Optional<commit_callback_t> keystroke_callback;
  55. Params()
  56. : search_button("search_button"),
  57. search_button_visible("search_button_visible"),
  58. clear_button("clear_button"), 
  59. clear_button_visible("clear_button_visible")
  60. {
  61. name = "search_editor";
  62. }
  63. };
  64. protected:
  65. LLSearchEditor(const Params&);
  66. friend class LLUICtrlFactory;
  67. public:
  68. virtual ~LLSearchEditor() {}
  69. /*virtual*/ void draw();
  70. void setText(const LLStringExplicit &new_text) { mSearchEditor->setText(new_text); }
  71. const std::string& getText() const { return mSearchEditor->getText(); }
  72. // LLUICtrl interface
  73. virtual void setValue(const LLSD& value );
  74. virtual LLSD getValue() const;
  75. virtual BOOL setTextArg( const std::string& key, const LLStringExplicit& text );
  76. virtual BOOL setLabelArg( const std::string& key, const LLStringExplicit& text );
  77. virtual void setLabel( const LLStringExplicit &new_label );
  78. virtual void clear();
  79. virtual void setFocus( BOOL b );
  80. void setKeystrokeCallback( commit_callback_t cb ) { mKeystrokeCallback = cb; }
  81. protected:
  82. void onClearButtonClick(const LLSD& data);
  83. virtual void handleKeystroke();
  84. commit_callback_t mKeystrokeCallback;
  85. LLLineEditor* mSearchEditor;
  86. LLButton* mSearchButton;
  87. LLButton* mClearButton;
  88. };
  89. #endif  // LL_SEARCHEDITOR_H