home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Resources
/
Online
/
Term
/
Extras
/
Source
/
gtlayout-source.lha
/
LTP_SizeDimensions.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-03-18
|
2KB
|
94 lines
/*
** GadTools layout toolkit
**
** Copyright © 1993-1996 by Olaf `Olsen' Barthel
** Freely distributable.
**
** :ts=4
*/
#ifndef _GTLAYOUT_GLOBAL_H
#include "gtlayout_global.h"
#endif
/*****************************************************************************/
STATIC VOID
LTP_GetSizeDimensions(LayoutHandle *Handle,ULONG *SizeWidth,ULONG *SizeHeight)
{
Object *SizeImage;
LONG SizeType;
if(Handle->Screen->Flags & SCREENHIRES)
{
if(SizeWidth)
*SizeWidth = 18;
if(SizeHeight)
*SizeHeight = 10;
SizeType = SYSISIZE_MEDRES;
}
else
{
if(SizeWidth)
*SizeWidth = 13;
if(SizeHeight)
*SizeHeight = 11;
SizeType = SYSISIZE_LOWRES;
}
if(SizeImage = NewObject(NULL,SYSICLASS,
SYSIA_Size, SizeType,
SYSIA_Which, SIZEIMAGE,
SYSIA_DrawInfo, Handle->DrawInfo,
TAG_DONE))
{
if(SizeWidth)
GetAttr(IA_Width,SizeImage,SizeWidth);
if(SizeHeight)
GetAttr(IA_Height,SizeImage,SizeHeight);
DisposeObject(SizeImage);
}
}
/*****************************************************************************/
ULONG
LTP_GetSizeWidth(struct LayoutHandle *handle)
{
ULONG SizeWidth;
LTP_GetSizeDimensions(handle,&SizeWidth,NULL);
if(SizeWidth < handle->Screen->WBorRight)
return(handle->Screen->WBorRight);
else
return(SizeWidth);
}
/*****************************************************************************/
ULONG
LTP_GetSizeHeight(struct LayoutHandle *handle)
{
ULONG SizeHeight;
LTP_GetSizeDimensions(handle,NULL,&SizeHeight);
if(SizeHeight < handle->Screen->WBorBottom)
return(handle->Screen->WBorBottom);
else
return(SizeHeight);
}