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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsearchhistory.h
  3.  * @brief Search history container definition
  4.  *
  5.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2009-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_LLSEARCHHISTORY_H
  33. #define LL_LLSEARCHHISTORY_H
  34. #include "llsingleton.h"
  35. #include "llui.h"
  36. /**
  37.  * Search history container able to save and load history from file.
  38.  * History is stored in chronological order, most recent at the beginning.
  39.  */
  40. class LLSearchHistory : public LLSingleton<LLSearchHistory>, private LLDestroyClass<LLSearchHistory>
  41. {
  42. friend class LLDestroyClass<LLSearchHistory>;
  43. public:
  44. // Forward declaration
  45. class LLSearchHistoryItem;
  46. // Search history container
  47. typedef std::list<LLSearchHistoryItem> search_history_list_t;
  48. /**
  49.  * Saves search history to file
  50.  */
  51. bool save();
  52. /**
  53.  * loads search history from file
  54.  */
  55. bool load();
  56. /**
  57.  * Returns search history list
  58.  */
  59. search_history_list_t& getSearchHistoryList() { return mSearchHistory; }
  60. /**
  61.  * Deletes all search history queries from list.
  62.  */
  63. void clearHistory() { mSearchHistory.clear(); }
  64. /**
  65.  * Adds unique entry to front of search history list, case insensitive
  66.  * If entry is already in list, it will be deleted and added to front.
  67.  */
  68. void addEntry(const std::string& search_text);
  69. LLSearchHistory();
  70. /**
  71.  * Class for storing data about single search request.
  72.  */
  73. class LLSearchHistoryItem
  74. {
  75. public:
  76. LLSearchHistoryItem()
  77. {}
  78. LLSearchHistoryItem(const std::string& query)
  79. : search_query(query)
  80. {}
  81. LLSearchHistoryItem(const LLSD& item)
  82. {
  83. if(item.has(SEARCH_QUERY))
  84. search_query = item[SEARCH_QUERY].asString();
  85. }
  86. std::string search_query;
  87. /**
  88.  * Allows std::list sorting
  89.  */
  90. bool operator < (const LLSearchHistory::LLSearchHistoryItem& right);
  91. /**
  92.  * Allows std::list sorting
  93.  */
  94. bool operator > (const LLSearchHistory::LLSearchHistoryItem& right);
  95. bool operator==(const LLSearchHistoryItem& right);
  96. bool operator==(const std::string& right);
  97. /**
  98.  * Serializes search history item to LLSD
  99.  */
  100. LLSD toLLSD() const;
  101. };
  102. protected:
  103. /**
  104.  * Returns path to search history file.
  105.  */
  106. std::string getHistoryFilePath();
  107. static std::string SEARCH_HISTORY_FILE_NAME;
  108. static std::string SEARCH_QUERY;
  109. private:
  110. // Implementation of LLDestroyClass<LLSearchHistory>
  111. static void destroyClass()
  112. {
  113. LLSearchHistory::getInstance()->save();
  114. }
  115. search_history_list_t mSearchHistory;
  116. };
  117. class LLSearchComboBox;
  118. #endif //LL_LLSEARCHHISTORY_H