Add a WebView in preparation for the page info. Refactor SidebarEntry out of Mod. Add an "Other" category with links for support/credits+legal.

This commit is contained in:
Paul Chote
2010-11-16 17:02:34 +13:00
parent 7271dd5248
commit de7668e8ff
11 changed files with 334 additions and 162 deletions

View File

@@ -7,14 +7,17 @@
*/
#import <Cocoa/Cocoa.h>
@class ModEntry;
#import <WebKit/WebKit.h>
@class Mod;
@class SidebarEntry;
@class GameInstall;
@interface Controller : NSObject
{
ModEntry *sidebarItems;
SidebarEntry *sidebarItems;
GameInstall *game;
IBOutlet NSOutlineView *outlineView;
IBOutlet WebView *webView;
}
- (IBAction)launchGame:(id)sender;
- (SidebarEntry *)sidebarModsTree;
@end