Difference between revisions of "NSDocument"

From GNUstepWiki
Jump to navigation Jump to search
m (Defined NSDocument more completely)
Line 22: Line 22:
 
     }
 
     }
 
  }
 
  }
 +
mastrlynx

Revision as of 12:42, 1 August 2005

NSDocument is an AppKit class used to implement document-based applications. It is subclassed so that instances represent specific "document" types.

Code chunks

Multiple editors

If your document uses multiple editors and each is represented with a single NSWindowController, you can commit all edits like in the following (obvious) code. Requirement is, that each NSWindowController should implement commitEditing.

- (void)commitEdits
{
   NSWindowController *controller;
   NSEnumerator       *enumerator;
   
   enumerator = [[self windowControllers] objectEnumerator];
   
   while( (controller = [enumerator nextObject]) )
   {
       if([controller respondsToSelector:@selector(commitEditing)])
       {
           [controller commitEditing];
       }
   }
}

mastrlynx