hop-2012/osx-server-gui/hopOsxAppDelegate.h

33 lines
1001 B
C
Raw Permalink Normal View History

2012-05-04 02:08:55 +00:00
// Copyright 2012 Tony Garnock-Jones <tonygarnockjones@gmail.com>.
2012-05-01 15:13:56 +00:00
//
2012-05-04 02:08:55 +00:00
// This file is part of Hop.
2012-05-01 15:13:56 +00:00
//
2012-05-04 02:08:55 +00:00
// Hop is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by the
// Free Software Foundation, either version 3 of the License, or (at your
// option) any later version.
//
// Hop is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Hop. If not, see <http://www.gnu.org/licenses/>.
2012-05-01 15:13:56 +00:00
//
#import <Cocoa/Cocoa.h>
2012-05-01 17:16:53 +00:00
#import <WebKit/WebKit.h>
2012-05-01 15:13:56 +00:00
2012-05-01 21:51:56 +00:00
@interface hopOsxAppDelegate : NSObject <NSApplicationDelegate> {
2012-05-01 15:13:56 +00:00
NSWindow *window;
2012-05-01 17:16:53 +00:00
WebView *webview;
NSTask *task;
2012-05-01 15:13:56 +00:00
}
@property (assign) IBOutlet NSWindow *window;
2012-05-01 17:16:53 +00:00
@property (assign) IBOutlet WebView *webview;
2012-05-01 15:13:56 +00:00
@end