git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@4697 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Michael Silva 1999-08-04 09:15:07 +00:00
parent 2378751761
commit 1fc4e353c9
2 changed files with 10 additions and 4 deletions

View file

@ -216,10 +216,10 @@ AppKit/NSSplitView.h \
AppKit/NSStringDrawing.h \
AppKit/NSTabView.h \
AppKit/NSTabViewItem.h \
AppKit/NSTableColumn.m \
AppKit/NSTableHeaderView.m \
AppKit/NSTableHeaderCell.m \
AppKit/NSTableView.m \
AppKit/NSTableColumn.h \
AppKit/NSTableHeaderView.h \
AppKit/NSTableHeaderCell.h \
AppKit/NSTableView.h \
AppKit/NSText.h \
AppKit/NSTextAttachment.h \
AppKit/NSTextContainer.h \

View file

@ -268,6 +268,12 @@ NSString* const NSMenuDidChangeItemNotification = @"MenuDidChangeItem";
// NSPopUpButton notification
NSString *NSPopUpButtonWillPopUpNotification = @"PopUpButtonWillPopUp";
// NSTable notifications
NSString *NSTableViewSelectionDidChangeNotification = @"TableViewSelectionDidChange";
NSString *NSTableViewColumnDidMoveNotification = @"TableViewColumnDidMove";
NSString *NSTableViewColumnDidResizeNotification = @"TableViewColumnDidResize";
NSString *NSTableViewSelectionIsChangingNotification = @"TableViewSelectionIsChanging";
// NSWindow notifications
NSString *NSWindowDidBecomeKeyNotification = @"WindowDidBecomeKey";
NSString *NSWindowDidBecomeMainNotification = @"WindowDidBecomeMain";