summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterautoreplacesettings.h
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-04-29 07:43:28 +0300
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-04-29 07:56:09 +0300
commit1b68f71348ecf3983b76b40d7940da8377f049b7 (patch)
tree2974eddaef130a067c26033d60a59fc790365b3d /indra/newview/llfloaterautoreplacesettings.h
parentaf4ea94efc1999f3b19fd8d643d0331f0b77e265 (diff)
#824 Process source files in bulk: replace tabs with spaces, convert CRLF to LF, and trim trailing whitespaces as needed
Diffstat (limited to 'indra/newview/llfloaterautoreplacesettings.h')
-rw-r--r--indra/newview/llfloaterautoreplacesettings.h150
1 files changed, 75 insertions, 75 deletions
diff --git a/indra/newview/llfloaterautoreplacesettings.h b/indra/newview/llfloaterautoreplacesettings.h
index 2109aa7026..7f1953d485 100644
--- a/indra/newview/llfloaterautoreplacesettings.h
+++ b/indra/newview/llfloaterautoreplacesettings.h
@@ -1,4 +1,4 @@
-/**
+/**
* @file llfloaterautoreplacesettings.h
* @brief Auto Replace List floater
* @copyright Copyright (c) 2011 LordGregGreg Back
@@ -11,12 +11,12 @@
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
- *
+ *
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
- *
+ *
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
@@ -38,83 +38,83 @@
class LLFloaterAutoReplaceSettings : public LLFloater
{
public:
- LLFloaterAutoReplaceSettings(const LLSD& key);
+ LLFloaterAutoReplaceSettings(const LLSD& key);
- /*virtual*/ BOOL postBuild();
- /*virtual*/ void onClose(bool app_quitting);
+ /*virtual*/ BOOL postBuild();
+ /*virtual*/ void onClose(bool app_quitting);
- void setData(void * data);
+ void setData(void * data);
private:
- /** @{ @name Local Copies of Settings
- * These are populated in the postBuild method with the values
- * current when the floater is instantiated, and then either
- * discarded when Cancel is pressed, or copied back to the active
- * settings if Ok is pressed.
- */
- bool mEnabled; ///< the global preference for AutoReplace
- LLAutoReplaceSettings mSettings; ///< settings being modified
- /** @} */
-
- /// convenience variable - the name of the currently selected list (if any)
- std::string mSelectedListName;
- /// the scrolling list of list names (one column, no headings, order manually controlled)
- LLScrollListCtrl* mListNames;
- /// the scroling list of keyword->replacement pairs
- LLScrollListCtrl* mReplacementsList;
-
- /// the keyword for the entry editing pane
- LLLineEditor* mKeyword;
- /// saved keyword value
- std::string mPreviousKeyword;
- /// the replacement for the entry editing pane
- LLLineEditor* mReplacement;
-
- /// callback for when the feature enable/disable checkbox changes
- void onAutoReplaceToggled();
- /// callback for when an entry in the list of list names is selected
- void onSelectList();
-
- void onImportList();
- void onExportList();
- void onNewList();
- void onDeleteList();
-
- void onListUp();
- void onListDown();
-
- void onSelectEntry();
- void onAddEntry();
- void onDeleteEntry();
- void onSaveEntry();
-
- void onSaveChanges();
- void onCancel();
-
- /// updates the contents of the mListNames
- void updateListNames();
- /// updates the controls associated with mListNames (depends on whether a name is selected or not)
- void updateListNamesControls();
- /// updates the contents of the mReplacementsList
- void updateReplacementsList();
- /// enables the components that should only be active when a keyword is selected
- void enableReplacementEntry();
- /// disables the components that should only be active when a keyword is selected
- void disableReplacementEntry();
-
- /// called from the AddAutoReplaceList notification dialog
- bool callbackNewListName(const LLSD& notification, const LLSD& response);
- /// called from the RenameAutoReplaceList notification dialog
- bool callbackListNameConflict(const LLSD& notification, const LLSD& response);
-
- bool selectedListIsFirst();
- bool selectedListIsLast();
-
- void cleanUp();
-
- void loadListFromFile(const std::vector<std::string>& filenames);
- void saveListToFile(const std::vector<std::string>& filenames, std::string listName);
+ /** @{ @name Local Copies of Settings
+ * These are populated in the postBuild method with the values
+ * current when the floater is instantiated, and then either
+ * discarded when Cancel is pressed, or copied back to the active
+ * settings if Ok is pressed.
+ */
+ bool mEnabled; ///< the global preference for AutoReplace
+ LLAutoReplaceSettings mSettings; ///< settings being modified
+ /** @} */
+
+ /// convenience variable - the name of the currently selected list (if any)
+ std::string mSelectedListName;
+ /// the scrolling list of list names (one column, no headings, order manually controlled)
+ LLScrollListCtrl* mListNames;
+ /// the scroling list of keyword->replacement pairs
+ LLScrollListCtrl* mReplacementsList;
+
+ /// the keyword for the entry editing pane
+ LLLineEditor* mKeyword;
+ /// saved keyword value
+ std::string mPreviousKeyword;
+ /// the replacement for the entry editing pane
+ LLLineEditor* mReplacement;
+
+ /// callback for when the feature enable/disable checkbox changes
+ void onAutoReplaceToggled();
+ /// callback for when an entry in the list of list names is selected
+ void onSelectList();
+
+ void onImportList();
+ void onExportList();
+ void onNewList();
+ void onDeleteList();
+
+ void onListUp();
+ void onListDown();
+
+ void onSelectEntry();
+ void onAddEntry();
+ void onDeleteEntry();
+ void onSaveEntry();
+
+ void onSaveChanges();
+ void onCancel();
+
+ /// updates the contents of the mListNames
+ void updateListNames();
+ /// updates the controls associated with mListNames (depends on whether a name is selected or not)
+ void updateListNamesControls();
+ /// updates the contents of the mReplacementsList
+ void updateReplacementsList();
+ /// enables the components that should only be active when a keyword is selected
+ void enableReplacementEntry();
+ /// disables the components that should only be active when a keyword is selected
+ void disableReplacementEntry();
+
+ /// called from the AddAutoReplaceList notification dialog
+ bool callbackNewListName(const LLSD& notification, const LLSD& response);
+ /// called from the RenameAutoReplaceList notification dialog
+ bool callbackListNameConflict(const LLSD& notification, const LLSD& response);
+
+ bool selectedListIsFirst();
+ bool selectedListIsLast();
+
+ void cleanUp();
+
+ void loadListFromFile(const std::vector<std::string>& filenames);
+ void saveListToFile(const std::vector<std::string>& filenames, std::string listName);
};
#endif // LLFLOATERAUTOREPLACESETTINGS_H