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.
 
 
 
 
 

28 lines
562 B

//
// IKAppDelegate.h
// ShortcutRecorderDemo
//
// Created by ILya Kulakov on 18.01.13.
// Copyright (c) 2013 Ilya Kulakov. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface IKAppDelegate : NSObject <NSApplicationDelegate>
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSButton *pingButton;
@property (assign) IBOutlet NSMenuItem *pingItem;
- (IBAction)showIBAutoLayout:(id)aSender;
- (IBAction)showCodeAutoLayout:(id)aSender;
- (IBAction)showAutoresizingMasks:(id)aSender;
- (IBAction)ping:(id)aSender;
@end