summaryrefslogtreecommitdiff
path: root/indra/newview/llbottomtray.cpp
blob: 908fe15be6979bbf72562dfe947dc5904ba39dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
/** 
 * @file llbottomtray.cpp
 * @brief LLBottomTray class implementation
 *
 * $LicenseInfo:firstyear=2009&license=viewergpl$
 * 
 * Copyright (c) 2009, Linden Research, Inc.
 * 
 * Second Life Viewer Source Code
 * The source code in this file ("Source Code") is provided by Linden Lab
 * to you under the terms of the GNU General Public License, version 2.0
 * ("GPL"), unless you have obtained a separate licensing agreement
 * ("Other License"), formally executed by you and Linden Lab.  Terms of
 * the GPL can be found in doc/GPL-license.txt in this distribution, or
 * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
 * 
 * There are special exceptions to the terms and conditions of the GPL as
 * it is applied to this Source Code. View the full text of the exception
 * in the file doc/FLOSS-exception.txt in this software distribution, or
 * online at
 * http://secondlifegrid.net/programs/open_source/licensing/flossexception
 * 
 * By copying, modifying or distributing this software, you acknowledge
 * that you have read and understood your obligations described above,
 * and agree to abide by those obligations.
 * 
 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
 * COMPLETENESS OR PERFORMANCE.
 * $/LicenseInfo$
 */

#include "llviewerprecompiledheaders.h" // must be first include
#include "llbottomtray.h"

#include "llagent.h"
#include "llchiclet.h"
#include "llfloaterreg.h"
#include "llflyoutbutton.h"
#include "llimfloater.h" // for LLIMFloater
#include "lllayoutstack.h"
#include "llnearbychatbar.h"
#include "llsplitbutton.h"
#include "llsyswellwindow.h"
#include "llfloatercamera.h"

LLBottomTray::LLBottomTray(const LLSD&)
:	mChicletPanel(NULL),
	mSysWell(NULL),
	mSpeakBtn(NULL),
	mNearbyChatBar(NULL),
	mToolbarStack(NULL)
,	mMovementButton(NULL)
// Add more members

{
	mFactoryMap["chat_bar"] = LLCallbackMap(LLBottomTray::createNearbyChatBar, NULL);

	LLUICtrlFactory::getInstance()->buildPanel(this,"panel_bottomtray.xml");

	mChicletPanel = getChild<LLChicletPanel>("chiclet_list");
	mSysWell = getChild<LLNotificationChiclet>("sys_well");

	// init mSysWell
	// set handler for a Click operation
	mSysWell->setClickCallback(boost::bind(&LLSysWellWindow::onChicletClick, LLFloaterReg::getTypedInstance<LLSysWellWindow>("syswell_window")));

	mChicletPanel->setChicletClickedCallback(boost::bind(&LLBottomTray::onChicletClick,this,_1));

	LLUICtrl::CommitCallbackRegistry::defaultRegistrar().add("CameraPresets.ChangeView", boost::bind(&LLFloaterCamera::onClickCameraPresets, _2));
	LLIMMgr::getInstance()->addSessionObserver(this);

	//this is to fix a crash that occurs because LLBottomTray is a singleton
	//and thus is deleted at the end of the viewers lifetime, but to be cleanly
	//destroyed LLBottomTray requires some subsystems that are long gone
	LLUI::getRootView()->addChild(this);

	// Necessary for focus movement among child controls
	setFocusRoot(TRUE);
}

LLBottomTray::~LLBottomTray()
{
	if (!LLSingleton<LLIMMgr>::destroyed())
	{
		LLIMMgr::getInstance()->removeSessionObserver(this);
	}
}

void LLBottomTray::onChicletClick(LLUICtrl* ctrl)
{
	LLIMChiclet* chiclet = dynamic_cast<LLIMChiclet*>(ctrl);
	if (chiclet)
	{
		// Until you can type into an IM Window and have a conversation,
		// still show the old communicate window
		//LLFloaterReg::showInstance("communicate", chiclet->getSessionId());

		// Show after comm window so it is frontmost (and hence will not
		// auto-hide)

// this logic has been moved to LLIMChiclet::handleMouseDown
//		LLIMFloater::show(chiclet->getSessionId());
//		chiclet->setCounter(0);
	}
}

// *TODO Vadim: why void* ?
void* LLBottomTray::createNearbyChatBar(void* userdata)
{
	return new LLNearbyChatBar();
}

LLIMChiclet* LLBottomTray::createIMChiclet(const LLUUID& session_id)
{
	LLIMChiclet::EType im_chiclet_type = LLIMChiclet::getIMSessionType(session_id);

	switch (im_chiclet_type)
	{
	case LLIMChiclet::TYPE_IM:
		return getChicletPanel()->createChiclet<LLIMP2PChiclet>(session_id);
	case LLIMChiclet::TYPE_GROUP:
		return getChicletPanel()->createChiclet<LLIMGroupChiclet>(session_id);
	case LLIMChiclet::TYPE_AD_HOC:
		return getChicletPanel()->createChiclet<LLAdHocChiclet>(session_id);
	case LLIMChiclet::TYPE_UNKNOWN:
		break;
	}

	return NULL;
}

//virtual
void LLBottomTray::sessionAdded(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id)
{
	if(getChicletPanel())
	{
		if(getChicletPanel()->findChiclet<LLChiclet>(session_id))
		{

		}
		else
		{
			LLIMChiclet* chiclet = createIMChiclet(session_id);
			if(chiclet)
			{
				chiclet->setIMSessionName(name);
				chiclet->setOtherParticipantId(other_participant_id);
			}
			else
			{
				llerrs << "Could not create chiclet" << llendl;
			}
		}
	}
}

//virtual
void LLBottomTray::sessionRemoved(const LLUUID& session_id)
{
	if(getChicletPanel())
	{
		// IM floater should be closed when session removed and associated chiclet closed
		LLIMFloater* iMfloater = LLFloaterReg::findTypedInstance<LLIMFloater>(
				"impanel", session_id);
		if (iMfloater != NULL)
		{
			iMfloater->closeFloater();
		}

		getChicletPanel()->removeChiclet(session_id);
	}
}

void LLBottomTray::sessionIDUpdated(const LLUUID& old_session_id, const LLUUID& new_session_id)
{
	//this is only needed in case of outgoing ad-hoc/group chat sessions
	LLChicletPanel* chiclet_panel = getChicletPanel();
	if (chiclet_panel)
	{
		//it should be ad-hoc im chiclet or group im chiclet
		LLChiclet* chiclet = chiclet_panel->findChiclet<LLChiclet>(old_session_id);
		if (chiclet) chiclet->setSessionId(new_session_id);
	}
}

//virtual
void LLBottomTray::onFocusLost()
{
	if (gAgent.cameraMouselook())
	{
		setVisible(FALSE);
	}
}

//virtual
// setVisible used instead of onVisibilityChange, since LLAgent calls it on entering/leaving mouselook mode.
// If bottom tray is already visible in mouselook mode, then onVisibilityChange will not be called from setVisible(true),
void LLBottomTray::setVisible(BOOL visible)
{
	LLPanel::setVisible(visible);

	// *NOTE: we must check mToolbarStack against NULL because setVisible is called from the 
	// LLPanel::initFromParams BEFORE postBuild is called and child controls are not exist yet
	if (NULL != mToolbarStack)
	{
		BOOL visibility = gAgent.cameraMouselook() ? false : true;

		for ( child_list_const_iter_t child_it = mToolbarStack->getChildList()->begin(); 
			child_it != mToolbarStack->getChildList()->end(); child_it++)
		{
			LLView* viewp = *child_it;
			std::string name = viewp->getName();
			
			if ("chat_bar" == name || "movement_panel" == name || "cam_panel" == name || "snapshot_panel" == name)
				continue;
			else 
			{
				viewp->setVisible(visibility);
			}
		}
	}
}

void LLBottomTray::showBottomTrayContextMenu(S32 x, S32 y, MASK mask)
{
	// We should show BottomTrayContextMenu in last  turn
	if (mBottomTrayContextMenu && !LLMenuGL::sMenuContainer->getVisibleMenu())
	{
		//there are no other context menu (IM chiclet etc ), so we can show BottomTrayContextMenu
			mBottomTrayContextMenu->buildDrawLabels();
			mBottomTrayContextMenu->updateParent(LLMenuGL::sMenuContainer);
			LLMenuGL::showPopup(this, mBottomTrayContextMenu, x, y);
		
	}
}

void LLBottomTray::showGestureButton(BOOL visible)
{
	mGesturePanel->setVisible(visible);
}

void LLBottomTray::showMoveButton(BOOL visible)
{
	mMovementPanel->setVisible(visible);
}

void LLBottomTray::showCameraButton(BOOL visible)
{
	mCamPanel->setVisible(visible);
}

void LLBottomTray::showSnapshotButton(BOOL visible)
{
	mSnapshotPanel->setVisible(visible);
}

typedef enum e_resize_status_type
{
	RS_NORESIZE			= 0x0000
	, RS_CHICLET_PANEL		= 0x0001
	, RS_CHATBAR_INPUT		= 0x0002
	, RS_BUTTON_SNAPSHOT	= 0x0004
	, RS_BUTTON_CAMERA		= 0x0008
	, RS_BUTTON_MOVEMENT	= 0x0010
	, RS_BUTTON_GESTURES	= 0x0020
	, RS_BUTTON_SPEAK		= 0x0040
	, RS_RESIZABLE_BUTTONS			= /*RS_BUTTON_SNAPSHOT | */RS_BUTTON_CAMERA | RS_BUTTON_MOVEMENT | RS_BUTTON_GESTURES
}EResizeState;



namespace
{
	const std::string& PANEL_CHICLET_NAME	= "chiclet_list_panel";
	const std::string& PANEL_CHATBAR_NAME	= "chat_bar";
	const std::string& PANEL_MOVEMENT_NAME	= "movement_panel";
	const std::string& PANEL_CAMERA_NAME	= "cam_panel";
	const std::string& PANEL_GESTURE_NAME	= "gesture_panel";
}

BOOL LLBottomTray::postBuild()
{
	mBottomTrayContextMenu =  LLUICtrlFactory::getInstance()->createFromFile<LLMenuGL>("menu_bottomtray.xml", gMenuHolder, LLViewerMenuHolderGL::child_registry_t::instance());
	gMenuHolder->addChild(mBottomTrayContextMenu);

	mNearbyChatBar = getChild<LLNearbyChatBar>("chat_bar");
	mToolbarStack = getChild<LLLayoutStack>("toolbar_stack");
	mMovementPanel = getChild<LLPanel>("movement_panel");
	mMovementButton = mMovementPanel->getChild<LLButton>("movement_btn");
	mGesturePanel = getChild<LLPanel>("gesture_panel");
	mCamPanel = getChild<LLPanel>("cam_panel");
	mCamButton = mCamPanel->getChild<LLButton>("camera_btn");
	mSnapshotPanel = getChild<LLPanel>("snapshot_panel");
	setRightMouseDownCallback(boost::bind(&LLBottomTray::showBottomTrayContextMenu,this, _2, _3,_4));

	if (mChicletPanel && mToolbarStack && mNearbyChatBar)
	{
		verifyChildControlsSizes();
	}

	return TRUE;
}

void LLBottomTray::log(LLView* panel, const std::string& descr)
{
	if (NULL == panel) return;
	LLView* layout = panel->getParent();
	llwarns << descr << ": "
		<< "panel: " << panel->getName()
		<< ", rect: " << panel->getRect()
 
 
		<< "layout: " << layout->getName()
		<< ", rect: " << layout->getRect()
		<< llendl
		; 
}

void LLBottomTray::verifyChildControlsSizes()
{
	LLRect rect = mChicletPanel->getRect();
	/*
	if (rect.getWidth() < mChicletPanel->getMinWidth())
	{
		llwarns << "QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ: chiclet panel less then min" << llendl;
		mChicletPanel->reshape(mChicletPanel->getMinWidth(), rect.getHeight());
	}
*/
	rect = mNearbyChatBar->getRect();
/*
	if (rect.getWidth() < mNearbyChatBar->getMinWidth())
	{
		llwarns << "WWWWWWWWWWWWWWWWWWWWWWWWWWWWW: near chat panel less then min" << llendl;
		mNearbyChatBar->reshape(mNearbyChatBar->getMinWidth(), rect.getHeight());
	}
	else 
*/
		if (rect.getWidth() > mNearbyChatBar->getMaxWidth())
	{
		llerrs << "WWWWWWWWWWWWWWWWWWWWWWWWWWWWW: near chat panel more then max width" << llendl;

		rect.setLeftTopAndSize(rect.mLeft, rect.mTop, mNearbyChatBar->getMaxWidth(), rect.getHeight());
		mNearbyChatBar->reshape(mNearbyChatBar->getMaxWidth(), rect.getHeight());
		mNearbyChatBar->setRect(rect);
	}
}
#define __FEATURE_EXT_991
void LLBottomTray::reshape(S32 width, S32 height, BOOL called_from_parent)
{
	static S32 depth = 0;
if (0 == depth) lldebugs << "****************************************" << llendl;

	S32 prev_width = getRect().getWidth();
	lldebugs << "Reshaping: depth: " << ++depth
		<< ", width: " << width
		<< ", height: " << height
		<< ", called_from_parent: " << called_from_parent
		<< ", cur width: " << prev_width
		<< ", cur height: " << getRect().getHeight()
		<< llendl;

	if (mNearbyChatBar)			log(mNearbyChatBar, "before");
	if (mChicletPanel)			log(mChicletPanel, "before");

	if (mChicletPanel && mToolbarStack && mNearbyChatBar)
	{
 		verifyChildControlsSizes();
 		updateResizeState(width, prev_width);

		if (RS_NORESIZE != mResizeState)
		{

//		mToolbarStack->updatePanelAutoResize(PANEL_CHICLET_NAME, mResizeState & RS_CHICLET_PANEL);
		mToolbarStack->updatePanelAutoResize(PANEL_CHICLET_NAME, TRUE);

//		mToolbarStack->updatePanelAutoResize(PANEL_CHATBAR_NAME, mResizeState & RS_CHATBAR_INPUT);
		}
	}

	LLPanel::reshape(width, height, called_from_parent);


	if (mNearbyChatBar)			log(mNearbyChatBar, "after");
	if (mChicletPanel)			log(mChicletPanel, "after");

	--depth;
}

void LLBottomTray::updateResizeState(S32 width, S32 height)
{
	mResizeState = RS_NORESIZE;
	static MASK prev_resize_state = mResizeState;
	MASK compensative_view_item_mask = RS_CHATBAR_INPUT;
	LLPanel* compansative_view = mNearbyChatBar;

	S32 delta_width = width - height;
//	if (delta_width == 0) return;
	bool shrink = width < height;

	const S32 chiclet_panel_width = mChicletPanel->getParent()->getRect().getWidth();
	const S32 chiclet_panel_min_width = mChicletPanel->getMinWidth();

	const S32 chatbar_panel_width = mNearbyChatBar->getRect().getWidth();
	const S32 chatbar_panel_min_width = mNearbyChatBar->getMinWidth();
	const S32 chatbar_panel_max_width = mNearbyChatBar->getMaxWidth();

	lldebugs << "chatbar_panel_width: " << chatbar_panel_width
		<< ", chatbar_panel_min_width: " << chatbar_panel_min_width
		<< ", chatbar_panel_max_width: " << chatbar_panel_max_width
		<< ", chiclet_panel_width: " << chiclet_panel_width
		<< ", chiclet_panel_min_width: " << chiclet_panel_min_width
		<< llendl;

	bool still_should_be_processed = true;
	// bottom tray is narrowed
	if (shrink)
	{
		S32 compensative_delta_width = 0;
		if (chiclet_panel_width > chiclet_panel_min_width)
		{
			// we have some space to decrease chiclet panel
			S32 panel_delta_min = chiclet_panel_width - chiclet_panel_min_width;
			mResizeState |= RS_CHICLET_PANEL;

			S32 delta_panel = llmin(-delta_width, panel_delta_min);

			lldebugs << "delta_width: " << delta_width
				<< ", panel_delta_min: " << panel_delta_min
				<< ", delta_panel: " << delta_panel
				<< llendl;

			// is chiclet panel width enough to process resizing?
			delta_width += panel_delta_min;

			still_should_be_processed = delta_width < 0;

			mChicletPanel->getParent()->reshape(mChicletPanel->getParent()->getRect().getWidth() - delta_panel, mChicletPanel->getParent()->getRect().getHeight());
			log(mChicletPanel, "after processing panel decreasing via chiclet panel");

			lldebugs << "RS_CHICLET_PANEL" 
				<< ", delta_width: " << delta_width
				<< llendl;
		}
		
		if (still_should_be_processed && chatbar_panel_width > chatbar_panel_min_width)
		{
			// we have some space to decrease chatbar panel
			S32 panel_delta_min = chatbar_panel_width - chatbar_panel_min_width;
			mResizeState |= RS_CHATBAR_INPUT;

			S32 delta_panel = llmin(-delta_width, panel_delta_min);

			// is chatbar panel width enough to process resizing?
			delta_width += panel_delta_min;
			

			still_should_be_processed = delta_width < 0;

			mNearbyChatBar->reshape(mNearbyChatBar->getRect().getWidth() - delta_panel, mNearbyChatBar->getRect().getHeight());

			lldebugs << "RS_CHATBAR_INPUT"
				<< ", delta_panel: " << delta_panel
				<< ", delta_width: " << delta_width
				<< llendl;

			log(mChicletPanel, "after nearby was processed");

		}
		if (still_should_be_processed)
		{
			mResizeState |= compensative_view_item_mask;

			if (mSnapshotPanel->getVisible())
			{
				mResizeState |= RS_BUTTON_SNAPSHOT;
				delta_width += mSnapshotPanel->getRect().getWidth();

				if (delta_width > 0)
				{
					compensative_delta_width += delta_width;
				}
				lldebugs << "RS_BUTTON_SNAPSHOT" 
					<< ", compensative_delta_width: " << compensative_delta_width
					<< ", delta_width: " << delta_width
					<< llendl;
				showSnapshotButton(false);
			}

			if (delta_width < 0 && mCamPanel->getVisible())
			{
				mResizeState |= RS_BUTTON_CAMERA;
				delta_width += mCamPanel->getRect().getWidth();
				if (delta_width > 0)
				{
					compensative_delta_width += delta_width;
				}
				lldebugs << "RS_BUTTON_CAMERA"
					<< ", compensative_delta_width: " << compensative_delta_width
					<< ", delta_width: " << delta_width
					<< llendl;
				showCameraButton(false);
			}

			if (delta_width < 0 && mMovementPanel->getVisible())
			{
				mResizeState |= RS_BUTTON_MOVEMENT;
				delta_width += mMovementPanel->getRect().getWidth();
				if (delta_width > 0)
				{
					compensative_delta_width += delta_width;
				}
				lldebugs << "RS_BUTTON_MOVEMENT"
					<< ", compensative_delta_width: " << compensative_delta_width
					<< ", delta_width: " << delta_width
					<< llendl;
				showMoveButton(false);
			}

			if (delta_width < 0 && mGesturePanel->getVisible())
			{
				mResizeState |= RS_BUTTON_GESTURES;
				delta_width += mGesturePanel->getRect().getWidth();
				if (delta_width > 0)
				{
					compensative_delta_width += delta_width;
				}
				lldebugs << "RS_BUTTON_GESTURES"
					<< ", compensative_delta_width: " << compensative_delta_width
					<< ", delta_width: " << delta_width
					<< llendl;
				showGestureButton(false);
			}

			if (delta_width < 0)
			{
				llwarns << "WARNING: there is no enough room for bottom tray, resizing still should be processed" << llendl;
			}

			if (compensative_delta_width != 0)
			{
				if (compansative_view)			log(compansative_view, "before applying compensative width: ");
				compansative_view->reshape(compansative_view->getRect().getWidth() + compensative_delta_width, compansative_view->getRect().getHeight() );
				if (compansative_view)			log(compansative_view, "after applying compensative width: ");
				lldebugs << compensative_delta_width << llendl;

			}
		}
	}
	// bottom tray is widen
	else
	{
		S32 chatbar_available_shrink_width = chatbar_panel_width - chatbar_panel_min_width;
		S32 available_width_chiclet = chiclet_panel_width - chiclet_panel_min_width;
		S32 available_width = delta_width + chatbar_available_shrink_width + available_width_chiclet;
		S32 buttons_required_width = 0; //How many room will take shown buttons
		if (available_width > 0 && processShowButton(mGesturePanel, &available_width))
		{
			mResizeState |= RS_BUTTON_GESTURES | compensative_view_item_mask;
			delta_width -= mGesturePanel->getRect().getWidth();
			buttons_required_width += mGesturePanel->getRect().getWidth();
			lldebugs << "RS_BUTTON_GESTURES"
				<< ", buttons_required_width: " << buttons_required_width
				<< ", delta_width: " << delta_width
				<< llendl;
			showGestureButton(true);
		}

		if (available_width > 0 && processShowButton(mMovementPanel, &available_width))
		{
			mResizeState |= RS_BUTTON_MOVEMENT | compensative_view_item_mask;
			delta_width -= mMovementPanel->getRect().getWidth();
			buttons_required_width += mMovementPanel->getRect().getWidth();

			lldebugs << "RS_BUTTON_MOVEMENT"
				<< ", buttons_required_width: " << buttons_required_width
				<< ", delta_width: " << delta_width
				<< llendl;
			showMoveButton(true);
		}

		if (available_width > 0 && processShowButton(mCamPanel, &available_width))
		{
			mResizeState |= RS_BUTTON_CAMERA | compensative_view_item_mask;
			delta_width -= mCamPanel->getRect().getWidth();
			buttons_required_width += mCamPanel->getRect().getWidth();

			lldebugs << "RS_BUTTON_CAMERA "
				<< ", buttons_required_width: " << buttons_required_width
				<< ", delta_width: " << delta_width
				<< llendl;
			showCameraButton(true);
		}

		if (available_width > 0 && processShowButton(mSnapshotPanel, &available_width))
		{
			mResizeState |= RS_BUTTON_SNAPSHOT | compensative_view_item_mask;
			delta_width -= mSnapshotPanel->getRect().getWidth();
			buttons_required_width += mSnapshotPanel->getRect().getWidth();

			lldebugs << "RS_BUTTON_SNAPSHOT"
				<< ", buttons_required_width: " << buttons_required_width
				<< ", delta_width: " << delta_width
				<< llendl;
			showSnapshotButton(true);
		}

		S32 total_delta_width = width - height;

		// if we have to show some buttons but whidth increasing is not enough...
		if (buttons_required_width > 0 && total_delta_width < buttons_required_width)
		{
			// ... let's shrink nearby chat & chiclet panels
			S32 required_to_process_width = buttons_required_width;

			// 1. use delta width of resizing
			required_to_process_width -= total_delta_width;

			// 2. use delta width available via decreasing of nearby chat panel
			S32 chatbar_shrink_width = required_to_process_width;
			if (chatbar_available_shrink_width < chatbar_shrink_width)
			{
				chatbar_shrink_width = chatbar_available_shrink_width;
			}

			log(compansative_view, "increase width: before applying compensative width: ");
			compansative_view->reshape(compansative_view->getRect().getWidth() - chatbar_shrink_width, compansative_view->getRect().getHeight() );
			if (compansative_view)			log(compansative_view, "after applying compensative width: ");
			lldebugs << chatbar_shrink_width << llendl;

			// 3. use delta width available via decreasing of chiclet panel
			required_to_process_width -= chatbar_shrink_width;

			if (required_to_process_width > 0)
			{
				mChicletPanel->getParent()->reshape(mChicletPanel->getParent()->getRect().getWidth() - required_to_process_width, mChicletPanel->getParent()->getRect().getHeight());
				log(mChicletPanel, "after applying compensative width for chiclets: ");
				lldebugs << required_to_process_width << llendl;
			}

		}
// TODO: mantipov: probably need delta_width -= buttons_required_width & remove calculating from the buttons processing
		// how many space can nearby chat take?
		S32 chatbar_panel_width_ = mNearbyChatBar->getRect().getWidth();
		if (delta_width > 0 && chatbar_panel_width_ < chatbar_panel_max_width)
		{
			mResizeState |= RS_CHATBAR_INPUT;
			S32 delta_panel_max = chatbar_panel_max_width - chatbar_panel_width_;
			S32 delta_panel = llmin(delta_width, delta_panel_max);
			delta_width -= delta_panel_max;
			mNearbyChatBar->reshape(chatbar_panel_width_ + delta_panel, mNearbyChatBar->getRect().getHeight());
		}

		if (delta_width > 0)
		{
			mResizeState |= RS_CHICLET_PANEL;
		}
	}

	prev_resize_state = mResizeState;
	lldebugs << "New resize state: " << mResizeState << llendl;
}

bool LLBottomTray::processShowButton(LLPanel* panel, S32* available_width)
{
	bool can_be_shown = canButtonBeShown(panel);
	if (can_be_shown)
	{
		//validate if we have enough room to show this button
		const S32 required_width = panel->getRect().getWidth();
		can_be_shown = *available_width >= required_width;
		if (can_be_shown)
		{
			*available_width -= required_width;
		}

	}
	return can_be_shown;
}

bool LLBottomTray::canButtonBeShown(LLPanel* panel) const
{
	bool can_be_shown = !panel->getVisible();
	if (can_be_shown)
	{
		// *TODO: mantipov: synchronize with situation when button was hidden via context menu;
	}
	return can_be_shown;
}
//EOF