mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-30 11:04:50 +00:00
14 lines
513 B
Objective-C
14 lines
513 B
Objective-C
#import "Wesnoth_Scenario_Editor_Prefix.h"
|
|
#import "WNMainTabViewDelegate.h"
|
|
|
|
@implementation WNMainTabViewDelegate
|
|
-(void)tabView:(NSTabView *)tabView didSelectTabViewItem:(NSTabViewItem *)tabViewItem
|
|
{
|
|
fprintf(stderr, "didSelectTabViewItem called\n");
|
|
NSString *thisTab = [tabViewItem identifier];
|
|
if ([thisTab isEqualTo:@"mapTab"])
|
|
[[NSNotificationCenter defaultCenter] postNotificationName:@"mapTabSelected" object:self];
|
|
fprintf(stderr, "Now viewing tab %s\n", [thisTab UTF8String]);
|
|
}
|
|
@end
|