Code cleanup.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@20010 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-09-06 21:41:32 +00:00
parent 0e4837f371
commit 5203d67e8d
7 changed files with 26 additions and 39 deletions

View file

@ -1,4 +1,15 @@
2004-09-06 08:52 Gregory John Casamento <greg_casamento@yahoo.com> 2004-09-06 17:39 Gregory John Casamento <greg_casamento@yahoo.com>
* Gorm.m:
* GormInspectorsManager.m:
* GormInternalViewEditor.m:
* GormMatrixEditor.m:
* GormViewKnobs.m:
* GormWindowEditor.m: Removed some old FIXME comments which
were no longer appropriate or which have already been
addressed.
2004-09-06 15:30 Gregory John Casamento <greg_casamento@yahoo.com>
* GormDocument.m: Temporary fix for crash. Corrects a * GormDocument.m: Temporary fix for crash. Corrects a
problem with document deallocation, until I can find a more problem with document deallocation, until I can find a more

6
Gorm.m
View file

@ -69,9 +69,9 @@ static BOOL _isInInterfaceBuilder = NO;
} }
else else
{ {
/* FIXME/TODO. What do we do if we are an attributed string. /* TODO: What do we do if we are an attributed string.
Think about what happens when the user ends editing. Think about what happens when the user ends editing.
Allows editing text attributes... Formatter... TODO. */ Allows editing text attributes... Formatter. */
} }
[textObject setEditable: _cell.is_editable]; [textObject setEditable: _cell.is_editable];
[textObject setSelectable: _cell.is_selectable || _cell.is_editable]; [textObject setSelectable: _cell.is_selectable || _cell.is_editable];
@ -843,7 +843,7 @@ static BOOL _isInInterfaceBuilder = NO;
- (void) selectAllItems: (id)sender - (void) selectAllItems: (id)sender
{ {
/* FIXME */ /* TODO: Select all items in the current selection owner. */
return; return;
} }

View file

@ -190,21 +190,6 @@
[panel orderFront: self]; [panel orderFront: self];
} }
} }
else if ([name isEqual: NSWindowDidResignKeyNotification] == YES)
{
if (current == 1)
{
/* FIXME - need to fix window focus handling for this to work */
// [NSApp stopConnecting];
}
}
else if ([name isEqual: IBWillCloseDocumentNotification] == YES)
{
// FIXME
// show an empty selection of the document closes
// [self setEmptyInspector];
// [panel orderOut: self];
}
} }
- (id) init - (id) init
@ -319,22 +304,11 @@
selector: @selector(handleNotification:) selector: @selector(handleNotification:)
name: IBWillEndTestingInterfaceNotification name: IBWillEndTestingInterfaceNotification
object: nil]; object: nil];
[nc addObserver: self
selector: @selector(handleNotification:)
name: NSWindowDidResignKeyNotification
object: panel];
[nc addObserver: self [nc addObserver: self
selector: @selector(updateInspectorPopUp:) selector: @selector(updateInspectorPopUp:)
name: NSPopUpButtonWillPopUpNotification name: NSPopUpButtonWillPopUpNotification
object: popup]; object: popup];
[nc addObserver: self
selector: @selector(handleNotification:)
name: NSPopUpButtonWillPopUpNotification
object: popup];
[nc addObserver: self
selector: @selector(handleNotification:)
name: IBWillCloseDocumentNotification
object: [(id<IB>)NSApp activeDocument]];
[popup setTarget: self]; [popup setTarget: self];
[popup setAction: @selector(updateInspectorPopUp:)]; [popup setAction: @selector(updateInspectorPopUp:)];
return self; return self;

View file

@ -889,7 +889,6 @@ static NSImage *horizontalImage;
[NSArray arrayWithObject: editor]]; [NSArray arrayWithObject: editor]];
} }
} }
// FIXME we should maybe open ourself
} }
return YES; return YES;

View file

@ -116,9 +116,7 @@ static BOOL done_editing;
} }
/* Called when we double-click on a text/editable cell or form. Overlay /* Called when we double-click on a text/editable cell or form. Overlay
a text field so the user can edit the title. a text field so the user can edit the title. */
FIXME: Only works with NSForms now, doesn't handle different fonts
or cell sizes, etc. Needs some work.*/
- (void) editTitleWithEvent: (NSEvent *)theEvent - (void) editTitleWithEvent: (NSEvent *)theEvent
{ {
int row, col; int row, col;
@ -134,7 +132,7 @@ static BOOL done_editing;
if (isForm == NO && [selected type] != NSTextCellType) if (isForm == NO && [selected type] != NSTextCellType)
return; return;
/* FIXME: Seems wierd to do this. */ // get the superview we are to edit from.
edit_view = [_EO superview]; edit_view = [_EO superview];
[_EO getRow: &row column: &col ofCell: selected]; [_EO getRow: &row column: &col ofCell: selected];

View file

@ -201,7 +201,6 @@ GormDrawKnobsForRect(NSRect aRect)
} }
/* Draw these around an NSBox whose contents are being edited. /* Draw these around an NSBox whose contents are being edited.
FIXME: Need some more representative indication of an edited view.
*/ */
void void
GormDrawOpenKnobsForRect(NSRect aRect) GormDrawOpenKnobsForRect(NSRect aRect)

View file

@ -266,11 +266,17 @@
*/ */
- (void) draggedImage: (NSImage*)i endedAt: (NSPoint)p deposited: (BOOL)f - (void) draggedImage: (NSImage*)i endedAt: (NSPoint)p deposited: (BOOL)f
{ {
NSDebugLog(@"draggedImage");
/* /*
* FIXME - handle this.
* Notification that a drag failed/succeeded. * Notification that a drag failed/succeeded.
*/ */
NSDebugLog(@"draggedImage");
if(f == NO)
{
NSRunAlertPanel(NULL, _(@"Window drag failed."),
_(@"OK"), NULL, NULL);
}
} }
- (unsigned int) draggingSourceOperationMaskForLocal: (BOOL)flag - (unsigned int) draggingSourceOperationMaskForLocal: (BOOL)flag