summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerwindow.cpp
diff options
context:
space:
mode:
authorMark Palange (Mani) <palange@lindenlab.com>2009-10-02 10:35:42 -0700
committerMark Palange (Mani) <palange@lindenlab.com>2009-10-02 10:35:42 -0700
commit4d53e235c2445b820bb0ae7303b269648dd86037 (patch)
treec1ab3643cf257099822e7a0e1e832d76813555f6 /indra/newview/llviewerwindow.cpp
parent80f27013b2d2a7ca6509db033c8f0c31562e04c7 (diff)
parentdde2153014cd7d7b8fa704f7067a41344bfbb1c2 (diff)
merge of latest viewer/viewer-20
Diffstat (limited to 'indra/newview/llviewerwindow.cpp')
-rw-r--r--indra/newview/llviewerwindow.cpp39
1 files changed, 27 insertions, 12 deletions
diff --git a/indra/newview/llviewerwindow.cpp b/indra/newview/llviewerwindow.cpp
index ae94fc6649..6af97e4b4c 100644
--- a/indra/newview/llviewerwindow.cpp
+++ b/indra/newview/llviewerwindow.cpp
@@ -1565,9 +1565,19 @@ void LLViewerWindow::initWorldUI()
navbar->showFavoritesPanel(FALSE);
}
- if (!gSavedSettings.getBOOL("ShowCameraAndMoveControls"))
+ if (!gSavedSettings.getBOOL("ShowCameraButton"))
{
- LLBottomTray::getInstance()->showCameraAndMoveControls(FALSE);
+ LLBottomTray::getInstance()->showCameraButton(FALSE);
+ }
+
+ if (!gSavedSettings.getBOOL("ShowMoveButton"))
+ {
+ LLBottomTray::getInstance()->showMoveButton(FALSE);
+ }
+
+ if (!gSavedSettings.getBOOL("ShowGestureButton"))
+ {
+ LLBottomTray::getInstance()->showGestureButton(FALSE);
}
getRootView()->addChild(gStatusBar);
@@ -1583,13 +1593,6 @@ void LLViewerWindow::initWorldUI()
// menu holder appears on top to get first pass at all mouse events
getRootView()->sendChildToFront(gMenuHolder);
- //Channel Manager
- LLNotificationsUI::LLChannelManager* channel_manager = LLNotificationsUI::LLChannelManager::getInstance();
- getRootView()->addChild(channel_manager);
- //Notification Manager
- LLNotificationsUI::LLNotificationManager* notify_manager = LLNotificationsUI::LLNotificationManager::getInstance();
- getRootView()->addChild(notify_manager);
-
if ( gHUDView == NULL )
{
LLRect hud_rect = full_window;
@@ -2865,6 +2868,9 @@ void LLViewerWindow::updateWorldViewRect(bool use_full_window)
if (mWorldViewRect != new_world_rect)
{
+ // sending a signal with a new WorldView rect
+ mOnWorldViewRectUpdated(mWorldViewRect, new_world_rect);
+
mWorldViewRect = new_world_rect;
gResizeScreenTexture = TRUE;
LLViewerCamera::getInstance()->setViewHeightInPixels( mWorldViewRect.getHeight() );
@@ -3221,9 +3227,18 @@ LLPickInfo LLViewerWindow::pickImmediate(S32 x, S32 y_from_bot, BOOL pick_trans
pickAsync(x, y_from_bot, gKeyboard->currentMask(TRUE), NULL, pick_transparent);
// assume that pickAsync put the results in the back of the mPicks list
- mLastPick = mPicks.back();
- mLastPick.fetchResults();
- mPicks.pop_back();
+ if(mPicks.size() != 0)
+ {
+ mLastPick = mPicks.back();
+ mLastPick.fetchResults();
+ mPicks.pop_back();
+ }
+ else
+ {
+ llwarns << "List of last picks is empty" << llendl;
+ llwarns << "Using stub pick" << llendl;
+ mLastPick = LLPickInfo();
+ }
return mLastPick;
}