summaryrefslogtreecommitdiff
path: root/indra/newview/llpreviewnotecard.h
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-05-14 21:02:28 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-05-14 21:02:28 -0400
commit094dcc07f8c1d90ae723dbe60eddacb90a09eae8 (patch)
treee750942e5f22ed677b543bd49509c2a7cdc5ce56 /indra/newview/llpreviewnotecard.h
parentd4043d3b011c32eb503c43c551872f9c24d7344f (diff)
parent38c2a5bde985a6a8a96d912d432f8bdf7e5b60be (diff)
Merge DRTVWR-591-maint-X to main on promotion of secondlife/viewer #705: Maintenance X
Diffstat (limited to 'indra/newview/llpreviewnotecard.h')
-rw-r--r--indra/newview/llpreviewnotecard.h94
1 files changed, 47 insertions, 47 deletions
diff --git a/indra/newview/llpreviewnotecard.h b/indra/newview/llpreviewnotecard.h
index 321f44a1ea..a5cd5510a3 100644
--- a/indra/newview/llpreviewnotecard.h
+++ b/indra/newview/llpreviewnotecard.h
@@ -1,25 +1,25 @@
-/**
+/**
* @file llpreviewnotecard.h
* @brief LLPreviewNotecard class header file
*
* $LicenseInfo:firstyear=2002&license=viewerlgpl$
* Second Life Viewer Source Code
* Copyright (C) 2010, Linden Research, Inc.
- *
+ *
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License only.
- *
+ *
* 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
- *
+ *
* Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
* $/LicenseInfo$
*/
@@ -45,36 +45,36 @@ class LLButton;
class LLPreviewNotecard : public LLPreview, public LLVOInventoryListener
{
public:
- LLPreviewNotecard(const LLSD& key);
- virtual ~LLPreviewNotecard();
-
- bool saveItem();
- void setObjectID(const LLUUID& object_id) override;
+ LLPreviewNotecard(const LLSD& key);
+ virtual ~LLPreviewNotecard();
+
+ bool saveItem();
+ void setObjectID(const LLUUID& object_id) override;
- // llview
- void draw() override;
- BOOL handleKeyHere(KEY key, MASK mask) override;
- void setEnabled( BOOL enabled ) override;
+ // llview
+ void draw() override;
+ BOOL handleKeyHere(KEY key, MASK mask) override;
+ void setEnabled( BOOL enabled ) override;
- // llfloater
- BOOL canClose() override;
+ // llfloater
+ BOOL canClose() override;
- // llpanel
- BOOL postBuild() override;
+ // llpanel
+ BOOL postBuild() override;
- // reach into the text editor, and grab the drag item
- const LLInventoryItem* getDragItem();
+ // reach into the text editor, and grab the drag item
+ const LLInventoryItem* getDragItem();
- // return true if there is any embedded inventory.
- bool hasEmbeddedInventory();
+ // return true if there is any embedded inventory.
+ bool hasEmbeddedInventory();
- // After saving a notecard, the tcp based upload system will
- // change the asset, therefore, we need to re-fetch it from the
- // asset system. :(
- void refreshFromInventory(const LLUUID& item_id = LLUUID::null);
+ // After saving a notecard, the tcp based upload system will
+ // change the asset, therefore, we need to re-fetch it from the
+ // asset system. :(
+ void refreshFromInventory(const LLUUID& item_id = LLUUID::null);
- void syncExternal();
+ void syncExternal();
void inventoryChanged(LLViewerObject* object,
LLInventoryObject::object_list_t* inventory,
@@ -83,28 +83,28 @@ public:
protected:
- void updateTitleButtons() override;
- void loadAsset() override;
- bool saveIfNeeded(LLInventoryItem* copyitem = NULL, bool sync = true);
+ void updateTitleButtons() override;
+ void loadAsset() override;
+ bool saveIfNeeded(LLInventoryItem* copyitem = NULL, bool sync = true);
- void deleteNotecard();
+ void deleteNotecard();
- static void onLoadComplete(const LLUUID& asset_uuid,
- LLAssetType::EType type,
- void* user_data, S32 status, LLExtStat ext_status);
+ static void onLoadComplete(const LLUUID& asset_uuid,
+ LLAssetType::EType type,
+ void* user_data, S32 status, LLExtStat ext_status);
- static void onClickSave(void* data);
+ static void onClickSave(void* data);
- static void onClickDelete(void* data);
+ static void onClickDelete(void* data);
- static void onClickEdit(void* data);
+ static void onClickEdit(void* data);
- static void onSaveComplete(const LLUUID& asset_uuid,
- void* user_data,
- S32 status, LLExtStat ext_status);
+ static void onSaveComplete(const LLUUID& asset_uuid,
+ void* user_data,
+ S32 status, LLExtStat ext_status);
- bool handleSaveChangesDialog(const LLSD& notification, const LLSD& response);
- bool handleConfirmDeleteDialog(const LLSD& notification, const LLSD& response);
+ bool handleSaveChangesDialog(const LLSD& notification, const LLSD& response);
+ bool handleConfirmDeleteDialog(const LLSD& notification, const LLSD& response);
static void finishInventoryUpload(LLUUID itemId, LLUUID newAssetId, LLUUID newItemId);
static void finishTaskUpload(LLUUID itemId, LLUUID newAssetId, LLUUID taskId);
@@ -116,14 +116,14 @@ protected:
std::string getTmpFileName();
protected:
- LLViewerTextEditor* mEditor;
- LLButton* mSaveBtn;
+ LLViewerTextEditor* mEditor;
+ LLButton* mSaveBtn;
- LLUUID mAssetID;
+ LLUUID mAssetID;
- LLUUID mObjectID;
+ LLUUID mObjectID;
- LLLiveLSLFile* mLiveFile;
+ LLLiveLSLFile* mLiveFile;
};