mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 11:41:05 +00:00
* English.lproj/GormDocument.gorm: Corrected possition.
* GormCore/GormInspectorsManager.m: Show the name of the object which is being edited in the inspector title. * Palettes/1Windows/GormNSWindowInspector.gorm: Added support for setting the frame save name. * Palettes/1Windows/GormWindowAttributesInspector.h: Added ivar * Palettes/1Windows/GormWindowAttributesInspector.m: Modified ok: and revert: git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@26474 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
685a9a4409
commit
0a0af253db
6 changed files with 25 additions and 2 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
|||
2008-04-25 17:41-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* English.lproj/GormDocument.gorm: Corrected possition.
|
||||
* GormCore/GormInspectorsManager.m: Show the name of the object
|
||||
which is being edited in the inspector title.
|
||||
* Palettes/1Windows/GormNSWindowInspector.gorm: Added support for
|
||||
setting the frame save name.
|
||||
* Palettes/1Windows/GormWindowAttributesInspector.h: Added ivar
|
||||
* Palettes/1Windows/GormWindowAttributesInspector.m: Modified ok: and
|
||||
revert:
|
||||
|
||||
2008-04-24 18:57-EDT Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* English.lproj/GormDocument.gorm: Correct position of window.
|
||||
|
|
Binary file not shown.
|
@ -28,6 +28,7 @@
|
|||
#include <InterfaceBuilder/IBInspectorMode.h>
|
||||
#include <InterfaceBuilder/IBObjectAdditions.h>
|
||||
#include <InterfaceBuilder/IBInspectorManager.h>
|
||||
#include <InterfaceBuilder/IBDocuments.h>
|
||||
#include "GormPrivate.h"
|
||||
#include "GormImage.h"
|
||||
#include "GormSound.h"
|
||||
|
@ -273,6 +274,7 @@
|
|||
NSArray *selection = [[(id<IB>)NSApp selectionOwner] selection];
|
||||
unsigned count = [selection count];
|
||||
id obj = [selection lastObject];
|
||||
id<IBDocuments> document = [(id<IB>)NSApp activeDocument];
|
||||
NSView *newView = nil;
|
||||
NSView *oldView = nil;
|
||||
NSString *newInspector = nil;
|
||||
|
@ -340,8 +342,9 @@
|
|||
}
|
||||
else
|
||||
{
|
||||
NSString *newTitle = [selectedObject objectNameForInspectorTitle];
|
||||
[panel setTitle: [NSString stringWithFormat:_(@"%@ Inspector"), newTitle]];
|
||||
NSString *newTitle = [selectedObject objectNameForInspectorTitle];
|
||||
NSString *objName = [document nameForObject: selectedObject];
|
||||
[panel setTitle: [NSString stringWithFormat:_(@"%@ (%@) Inspector"), newTitle,objName]];
|
||||
}
|
||||
|
||||
if (newInspector == nil)
|
||||
|
|
Binary file not shown.
|
@ -65,6 +65,7 @@
|
|||
/* Miniaturized Window Icon */
|
||||
NSForm *iconNameForm;
|
||||
NSButton *clearButton;
|
||||
NSForm *autosaveName;
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -62,6 +62,11 @@
|
|||
{
|
||||
[object setTitle: [[sender cellAtIndex: 0] stringValue] ];
|
||||
}
|
||||
/* title */
|
||||
else if (sender == autosaveName)
|
||||
{
|
||||
[object setFrameAutosaveName: [[sender cellAtIndex: 0] stringValue] ];
|
||||
}
|
||||
/* backing Type */
|
||||
else if (sender == backingMatrix)
|
||||
{
|
||||
|
@ -190,6 +195,9 @@
|
|||
/* Title */
|
||||
[[titleForm cellAtIndex: 0] setStringValue: [object title] ];
|
||||
|
||||
// Autosave name
|
||||
[[autosaveName cellAtIndex: 0] setStringValue: [object frameAutosaveName] ];
|
||||
|
||||
/* Backing */
|
||||
[backingMatrix selectCellWithTag: [object backingType] ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue