Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Mac: size of window does not take into account title bar height, view cut off at top #1393

Open
LearnCocos2D opened this issue Mar 1, 2015 · 4 comments

Comments

@LearnCocos2D
Copy link
Contributor

To reproduce, create a new project, add a label that's top-left aligned with position 0,0 and anchorpoint 0,1 .. something like this:

screen shot 2015-03-01 at 14 47 38

Run Mac build, first two lines are cut off in this example:
screen shot 2015-03-01 at 14 49 06

The problem is with how the AppDelegate initializes window and view with the same size:

    CGSize windowSize = CGSizeMake(480.0f, 320.0f);
    [_window setFrame:CGRectMake(0, 0, windowSize.width, windowSize.height) display:true animate:false];
    [_glView setFrame:_window.frame];

This does not take into account that the window creates a title bar which covers the top area of the window, so any view must be "titlebar height" smaller than the window, respectively the window's height must be increased by that amount.

Commonly title bar height is determined like so:

- (float) titleBarHeight
{
    NSRect frame = NSMakeRect (0, 0, 200, 200);
    NSRect contentRect;
    contentRect = [NSWindow contentRectForFrameRect:frame styleMask:NSTitledWindowMask];
    return (frame.size.height - contentRect.size.height);
}

To fix this, change the initialization of window and view to this:

    CGSize windowSize = CGSizeMake(480.0f, 320.0f);
    [_window setFrame:CGRectMake(0, 0, windowSize.width, windowSize.height + [self titleBarHeight]) display:true animate:false];
    [_glView setFrame:CGRectMake(0, 0, windowSize.width, windowSize.height)];
@slembcke
Copy link
Contributor

slembcke commented Mar 1, 2015

Is this broken in 3.4 or just develop? There is a fix in a branch that hasn't gotten merged into develop yet.

@LearnCocos2D
Copy link
Contributor Author

Using this version:

#define COCOS2D_VERSION 0x00030403
#define COCOS2D_BUILD @"develop"

The project was created with SB 1.4.8.rc if I remember correctly.

LearnCocos2D added a commit to KoboldKit/SpriteBuilder that referenced this issue Mar 3, 2015
…nt title bar height, view cut off at top
LearnCocos2D added a commit to KoboldKit/SpriteBuilder that referenced this issue Mar 3, 2015
…nt title bar height, view cut off at top
@LearnCocos2D
Copy link
Contributor Author

Fixed it in the SB template project for now.

LearnCocos2D added a commit to KoboldKit/SpriteBuilder that referenced this issue Mar 4, 2015
…nt title bar height, view cut off at top
LearnCocos2D added a commit to KoboldKit/SpriteBuilder that referenced this issue Mar 4, 2015
@Mazyod
Copy link
Contributor

Mazyod commented Mar 12, 2015

+1 seeing this too

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants