summaryrefslogtreecommitdiff
path: root/indra/newview/lltoastpanel.cpp
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/lltoastpanel.cpp
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/lltoastpanel.cpp')
-rw-r--r--indra/newview/lltoastpanel.cpp142
1 files changed, 71 insertions, 71 deletions
diff --git a/indra/newview/lltoastpanel.cpp b/indra/newview/lltoastpanel.cpp
index d43da93c61..2834143dd6 100644
--- a/indra/newview/lltoastpanel.cpp
+++ b/indra/newview/lltoastpanel.cpp
@@ -1,25 +1,25 @@
-/**
+/**
* @file lltoastpanel.cpp
* @brief Creates a panel of a specific kind for a toast
*
* $LicenseInfo:firstyear=2000&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$
*/
@@ -44,110 +44,110 @@ const S32 LLToastPanel::MAX_TEXT_LENGTH = 512 + 20 + DB_FIRST_NAME_BUF_SIZE + DB
LLToastPanel::LLToastPanel(const LLNotificationPtr& notification)
{
- mNotification = notification;
+ mNotification = notification;
}
-LLToastPanel::~LLToastPanel()
+LLToastPanel::~LLToastPanel()
{
}
//virtual
std::string LLToastPanel::getTitle()
{
- // *TODO: create Title and localize it. If it will be required.
- return mNotification->getMessage();
+ // *TODO: create Title and localize it. If it will be required.
+ return mNotification->getMessage();
}
//virtual
const std::string& LLToastPanel::getNotificationName()
{
- return mNotification->getName();
+ return mNotification->getName();
}
//virtual
const LLUUID& LLToastPanel::getID()
{
- return mNotification->id();
+ return mNotification->id();
}
S32 LLToastPanel::computeSnappedToMessageHeight(LLTextBase* message, S32 maxLineCount)
{
- S32 heightDelta = 0;
- S32 maxTextHeight = message->getFont()->getLineHeight() * maxLineCount;
+ S32 heightDelta = 0;
+ S32 maxTextHeight = message->getFont()->getLineHeight() * maxLineCount;
- LLRect messageRect = message->getRect();
- S32 oldTextHeight = messageRect.getHeight();
+ LLRect messageRect = message->getRect();
+ S32 oldTextHeight = messageRect.getHeight();
- //Knowing the height is set to max allowed, getTextPixelHeight returns needed text height
- //Perhaps we need to pass maxLineCount as parameter to getTextPixelHeight to avoid previous reshape.
- S32 requiredTextHeight = message->getTextBoundingRect().getHeight();
- S32 newTextHeight = llmin(requiredTextHeight, maxTextHeight);
+ //Knowing the height is set to max allowed, getTextPixelHeight returns needed text height
+ //Perhaps we need to pass maxLineCount as parameter to getTextPixelHeight to avoid previous reshape.
+ S32 requiredTextHeight = message->getTextBoundingRect().getHeight();
+ S32 newTextHeight = llmin(requiredTextHeight, maxTextHeight);
- heightDelta = newTextHeight - oldTextHeight;
- S32 new_panel_height = llmax(getRect().getHeight() + heightDelta, MIN_PANEL_HEIGHT);
+ heightDelta = newTextHeight - oldTextHeight;
+ S32 new_panel_height = llmax(getRect().getHeight() + heightDelta, MIN_PANEL_HEIGHT);
- return new_panel_height;
+ return new_panel_height;
}
//snap to the message height if it is visible
void LLToastPanel::snapToMessageHeight(LLTextBase* message, S32 maxLineCount)
{
- if(!message)
- {
- return;
- }
-
- //Add message height if it is visible
- if (message->getVisible())
- {
- S32 new_panel_height = computeSnappedToMessageHeight(message, maxLineCount);
-
- //reshape the panel with new height
- if (new_panel_height != getRect().getHeight())
- {
- reshape( getRect().getWidth(), new_panel_height);
- }
- }
+ if(!message)
+ {
+ return;
+ }
+
+ //Add message height if it is visible
+ if (message->getVisible())
+ {
+ S32 new_panel_height = computeSnappedToMessageHeight(message, maxLineCount);
+
+ //reshape the panel with new height
+ if (new_panel_height != getRect().getHeight())
+ {
+ reshape( getRect().getWidth(), new_panel_height);
+ }
+ }
}
// static
LLToastPanel* LLToastPanel::buidPanelFromNotification(
- const LLNotificationPtr& notification)
+ const LLNotificationPtr& notification)
{
LL_PROFILE_ZONE_SCOPED
LLToastPanel* res = NULL;
- //process tip toast panels
- if ("notifytip" == notification->getType())
- {
- // if it is online/offline notification
- if ("FriendOnlineOffline" == notification->getName())
- {
- res = new LLPanelOnlineStatus(notification);
- }
- // in all other case we use generic tip panel
- else
- {
- res = new LLPanelGenericTip(notification);
- }
- }
- else if("notify" == notification->getType())
- {
- if (notification->getPriority() == NOTIFICATION_PRIORITY_CRITICAL)
- {
- res = new LLToastScriptQuestion(notification);
- }
- else
- {
- res = new LLToastNotifyPanel(notification);
- }
- }
- /*
- else if(...)
- create all other specific non-public toast panel
- */
-
- return res;
+ //process tip toast panels
+ if ("notifytip" == notification->getType())
+ {
+ // if it is online/offline notification
+ if ("FriendOnlineOffline" == notification->getName())
+ {
+ res = new LLPanelOnlineStatus(notification);
+ }
+ // in all other case we use generic tip panel
+ else
+ {
+ res = new LLPanelGenericTip(notification);
+ }
+ }
+ else if("notify" == notification->getType())
+ {
+ if (notification->getPriority() == NOTIFICATION_PRIORITY_CRITICAL)
+ {
+ res = new LLToastScriptQuestion(notification);
+ }
+ else
+ {
+ res = new LLToastNotifyPanel(notification);
+ }
+ }
+ /*
+ else if(...)
+ create all other specific non-public toast panel
+ */
+
+ return res;
}
LLCheckBoxToastPanel::LLCheckBoxToastPanel(const LLNotificationPtr& p_ntf)
@@ -164,7 +164,7 @@ void LLCheckBoxToastPanel::setCheckBoxes(const S32 &h_pad, const S32 &v_pad, LLV
if (form->getIgnoreType() == LLNotificationForm::IGNORE_CHECKBOX_ONLY)
{
- // Normally text is only used to describe notification in preferences,
+ // Normally text is only used to describe notification in preferences,
// but this one is not displayed in preferences and works on case by case
// basis.
// Display text if present, display 'always chose' if not.