Code Search for Developers
 
 
  

HandledURLWindow.m from redshed at Krugle


Show HandledURLWindow.m syntax highlighted

#import "HandledURLWindow.h"

@implementation HandledURLWindow

- (id)initWithHandledURL:(NSString*)url_ {
    self = [super initWithWindowNibName:@"HandledURLWindow"];
    if( self ) {
        handledURL = [url_ retain];
        [self showWindow:nil];
    }
    return self;
}

- (void)dealloc {
    [handledURL release];
    [super dealloc];
}

@end




See more files for this project here

redshed

Code for Mac+WebObjects.

Project homepage: http://sourceforge.net/projects/redshed
Programming language(s): C,Java,Objective C
License: other

  English.lproj/
    HandledURLWindow.nib/
      classes.nib
      info.nib
      keyedobjects.nib
    MainMenu.nib/
      classes.nib
      info.nib
      keyedobjects.nib
    InfoPlist.strings
  SampleProtocolHandler.app/
    Contents/
      MacOS/
        SampleProtocolHandler
      Resources/
        English.lproj/
          HandledURLWindow.nib/
            classes.nib
            info.nib
            keyedobjects.nib
          MainMenu.nib/
            classes.nib
            info.nib
            keyedobjects.nib
          InfoPlist.strings
      Info.plist
      PkgInfo
  SampleProtocolHandler.xcodeproj/
    project.pbxproj
    wolf.mode1
    wolf.pbxuser
  AppDelegate.h
  AppDelegate.m
  HandledURLWindow.h
  HandledURLWindow.m
  Info.plist
  SampleProtocolHandler_Prefix.pch
  main.m