From ec992377f492b9b4bc6ec594abaef19c748eab90 Mon Sep 17 00:00:00 2001 From: lmsilva Date: Mon, 15 Dec 2008 10:06:07 +0000 Subject: [PATCH] --- TagEditor/TagEditorController.h | 21 +++++++++++++++++++ TagEditor/TagEditorController.m | 37 +++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 TagEditor/TagEditorController.h create mode 100644 TagEditor/TagEditorController.m diff --git a/TagEditor/TagEditorController.h b/TagEditor/TagEditorController.h new file mode 100644 index 000000000..1eecb3492 --- /dev/null +++ b/TagEditor/TagEditorController.h @@ -0,0 +1,21 @@ +// +// TagEditorController.h +// Cog +// +// Created by Safari on 08/11/17. +// Copyright 2008 __MyCompanyName__. All rights reserved. +// + +#import + + +@interface TagEditorController : NSObject { + + IBOutlet NSWindow* tageditorWindow; +} +- (id)init; +- (void)showInfoForURL:(NSURL*)url; +- (IBAction)cancel:(id)sender; + + +@end diff --git a/TagEditor/TagEditorController.m b/TagEditor/TagEditorController.m new file mode 100644 index 000000000..61a9b0791 --- /dev/null +++ b/TagEditor/TagEditorController.m @@ -0,0 +1,37 @@ +// +// TagEditorController.m +// Cog +// +// Created by Safari on 08/11/17. +// Copyright 2008 __MyCompanyName__. All rights reserved. +// + +#import "TagEditorController.h" +#import "PlaylistController.h" + + +@implementation TagEditorController + +- (id)init +{ + self = [super init]; + + if( self ) + { + // initialize the class + } + + return self; +} + +- (void)showInfoForURL:(NSURL*)url +{ + [tageditorWindow showWindow:self]; +} + +- (IBAction)cancel:(id)sender +{ + [tageditorWindow close]; +} + +@end