2016-06-04 15:24:23 +02:00
|
|
|
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
|
|
#include "vgui_helpers.h"
|
|
|
|
|
|
|
|
|
|
using namespace vgui;
|
|
|
|
|
|
2021-10-27 03:35:11 +02:00
|
|
|
|
void AlignPanel( Panel *pChild, Panel *pParent, int alignment )
|
2016-06-04 15:24:23 +02:00
|
|
|
|
{
|
|
|
|
|
int w, h, cw, ch;
|
2021-10-27 03:35:11 +02:00
|
|
|
|
|
|
|
|
|
pParent->getSize( w, h );
|
|
|
|
|
pChild->getSize( cw, ch );
|
|
|
|
|
|
|
|
|
|
int xCenter = ( w - cw ) / 2;
|
|
|
|
|
int yCenter = ( h - ch ) / 2;
|
|
|
|
|
|
|
|
|
|
if( alignment == Label::a_west )
|
|
|
|
|
pChild->setPos( 0, yCenter );
|
|
|
|
|
else if( alignment == Label::a_northwest )
|
|
|
|
|
pChild->setPos( 0, 0 );
|
|
|
|
|
else if( alignment == Label::a_north )
|
|
|
|
|
pChild->setPos( xCenter, 0 );
|
|
|
|
|
else if( alignment == Label::a_northeast )
|
|
|
|
|
pChild->setPos( w - cw, 0 );
|
|
|
|
|
else if( alignment == Label::a_east )
|
|
|
|
|
pChild->setPos( w - cw, yCenter );
|
|
|
|
|
else if( alignment == Label::a_southeast )
|
|
|
|
|
pChild->setPos( w - cw, h - ch );
|
|
|
|
|
else if( alignment == Label::a_south )
|
|
|
|
|
pChild->setPos( xCenter, h - ch );
|
|
|
|
|
else if( alignment == Label::a_southwest )
|
|
|
|
|
pChild->setPos( 0, h - ch );
|
|
|
|
|
else if( alignment == Label::a_center )
|
|
|
|
|
pChild->setPos( xCenter, yCenter );
|
2016-06-04 15:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|