You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.5 KiB
53 lines
2.5 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
// $NoKeywords: $ |
|
//=============================================================================// |
|
|
|
#ifndef CSBACKGROUND_H |
|
#define CSBACKGROUND_H |
|
|
|
#include <vgui_controls/Frame.h> |
|
#include <vgui_controls/EditablePanel.h> |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Creates background image panels |
|
//----------------------------------------------------------------------------- |
|
void CreateBackground( vgui::EditablePanel *pWindow ); |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Resizes windows to fit completely on-screen (for 1280x1024), and |
|
// centers them on the screen. Sub-controls are also resized and moved. |
|
//----------------------------------------------------------------------------- |
|
void LayoutBackgroundPanel( vgui::EditablePanel *pWindow ); |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Sets colors etc for background image panels |
|
//----------------------------------------------------------------------------- |
|
void ApplyBackgroundSchemeSettings( vgui::EditablePanel *pWindow, vgui::IScheme *pScheme ); |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: |
|
//----------------------------------------------------------------------------- |
|
void ResizeWindowControls( vgui::EditablePanel *pWindow, int tall, int wide, int offsetX, int offsetY ); |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: transform a standard scaled value into one that is scaled based the minimum |
|
// of the horizontal and vertical ratios |
|
//----------------------------------------------------------------------------- |
|
int GetAlternateProportionalValueFromScaled( vgui::HScheme scheme, int scaledValue ); |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: |
|
//----------------------------------------------------------------------------- |
|
void DrawRoundedBackground( Color bgColor, int wide, int tall ); |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: |
|
//----------------------------------------------------------------------------- |
|
void DrawRoundedBorder( Color borderColor, int wide, int tall ); |
|
|
|
//----------------------------------------------------------------------------- |
|
|
|
#endif // CSBACKGROUND_H
|
|
|