mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
16 lines
271 B
Plaintext
16 lines
271 B
Plaintext
|
|
@import <Foundation/CPObject.j>
|
|
|
|
|
|
#import "CoreGraphics/CGGeometry.h"
|
|
|
|
@implementation CPScreen : CPObject
|
|
{
|
|
}
|
|
|
|
- (CGRect)visibleFrame
|
|
{
|
|
return _CGRectMake(window.screen.availLeft, window.screen.availTop, window.screen.availWidth, window.screen.availHeight);
|
|
}
|
|
|
|
@end |