diff --git a/Cocoa/English.lproj/InfoWindow.nib/classes.nib b/Cocoa/English.lproj/InfoWindow.nib/classes.nib
index 12e42cd..50a1c82 100644
--- a/Cocoa/English.lproj/InfoWindow.nib/classes.nib
+++ b/Cocoa/English.lproj/InfoWindow.nib/classes.nib
@@ -1,6 +1,11 @@
{
IBClasses = (
- {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
+ {
+ ACTIONS = {creatorChanged = id; typeChanged = id; };
+ CLASS = FirstResponder;
+ LANGUAGE = ObjC;
+ SUPERCLASS = NSObject;
+ },
{
ACTIONS = {attributesChanged = id; };
CLASS = InfoWindowController;
@@ -8,13 +13,15 @@
OUTLETS = {
attributesMatrix = NSMatrix;
documentView = NSBox;
+ filePropertyForm = NSForm;
iconView = NSImageView;
nameView = NSTextField;
placeholderView = NSBox;
resourceView = NSBox;
};
SUPERCLASS = NSWindowController;
- }
+ },
+ {CLASS = SizeFormatter; LANGUAGE = ObjC; SUPERCLASS = NSNumberFormatter; }
);
IBVersion = 1;
}
\ No newline at end of file
diff --git a/Cocoa/English.lproj/InfoWindow.nib/info.nib b/Cocoa/English.lproj/InfoWindow.nib/info.nib
index 092795f..99dbf52 100644
--- a/Cocoa/English.lproj/InfoWindow.nib/info.nib
+++ b/Cocoa/English.lproj/InfoWindow.nib/info.nib
@@ -6,7 +6,11 @@
142 473 384 240 0 0 1024 746
IBFramework Version
248.0
+ IBOpenObjects
+
+ 50
+
IBSystem Version
- 5P48
+ 5Q45
diff --git a/Cocoa/English.lproj/InfoWindow.nib/objects.nib b/Cocoa/English.lproj/InfoWindow.nib/objects.nib
index f789db6..d769b21 100644
Binary files a/Cocoa/English.lproj/InfoWindow.nib/objects.nib and b/Cocoa/English.lproj/InfoWindow.nib/objects.nib differ
diff --git a/Cocoa/English.lproj/Localizable.strings b/Cocoa/English.lproj/Localizable.strings
index cc1f3e4..4195aba 100644
--- a/Cocoa/English.lproj/Localizable.strings
+++ b/Cocoa/English.lproj/Localizable.strings
@@ -1,14 +1,6 @@
/* Localized versions of application-critical strings */
-/* Save sheet contents */
-"Save Document?" = "Save Document?";
-"Do you wish to save %@?" = "Do you wish to save %@?";
-"this document" = "this document";
-"Save" = "Save";
-"DonÕt Save" = "DonÕt Save";
-"Cancel" = "Cancel";
-
-/* File window default (grey) resource names */
+/* Document window default (grey) resource names */
"Untitled Resource" = "Untitled Resource";
"Custom Icon" = "Custom Icon";
@@ -35,12 +27,8 @@
"Show Resource Information Window" = "Show Resource Information Window";
/* Undo/Redo menu item titles */
-"Add Resource" = "Add Resource";
-"Add Resource Ò%@Ó" = "Add Resource Ò%@Ó";
"Create Resource" = "Create Resource";
"Create Resource Ò%@Ó" = "Create Resource Ò%@Ó";
-"Remove Resource" = "Remove Resource";
-"Remove Resource Ò%@Ó" = "Remove Resource Ò%@Ó";
"Delete Resource" = "Delete Resource";
"Delete Resource Ò%@Ó" = "Delete Resource Ò%@Ó";
"Name Change" = "Name Change";
diff --git a/Cocoa/English.lproj/PrefsWindow.nib/objects.nib b/Cocoa/English.lproj/PrefsWindow.nib/objects.nib
index 84c8444..2888fa4 100644
Binary files a/Cocoa/English.lproj/PrefsWindow.nib/objects.nib and b/Cocoa/English.lproj/PrefsWindow.nib/objects.nib differ
diff --git a/Cocoa/English.lproj/ResourceDocument.nib/classes.nib b/Cocoa/English.lproj/ResourceDocument.nib/classes.nib
index 893f4eb..25bf16d 100644
--- a/Cocoa/English.lproj/ResourceDocument.nib/classes.nib
+++ b/Cocoa/English.lproj/ResourceDocument.nib/classes.nib
@@ -1,57 +1,45 @@
{
IBClasses = (
{CLASS = AttributesFormatter; LANGUAGE = ObjC; SUPERCLASS = NSFormatter; },
- {
- ACTIONS = {
- hideCreateResourceSheet = id;
- showCreateResourceSheet = id;
- typePopupSelection = id;
- };
- CLASS = CreateResourceSheetController;
- LANGUAGE = ObjC;
- OUTLETS = {
- attributesMatrix = NSMatrix;
- cancelButton = NSButton;
- createButton = NSButton;
- dataSource = ResourceDataSource;
- document = ResourceDocument;
- nameView = NSTextField;
- parent = NSWindow;
- resIDView = NSTextField;
- typePopup = NSPopUpButton;
- typeView = NSTextField;
- };
- SUPERCLASS = NSWindowController;
- },
{CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
- {CLASS = NameFormatter; LANGUAGE = ObjC; SUPERCLASS = NSFormatter; },
+ {
+ CLASS = NameFormatter;
+ LANGUAGE = ObjC;
+ OUTLETS = {outlineView = NSOutlineView; };
+ SUPERCLASS = NSFormatter;
+ },
{
CLASS = OutlineViewDelegate;
LANGUAGE = ObjC;
OUTLETS = {
- attributesFormatter = id;
- nameFormatter = id;
- sizeFormatter = id;
- window = id;
+ attributesFormatter = NSFormatter;
+ nameFormatter = NSFormatter;
+ sizeFormatter = NSNumberFormatter;
+ window = NSWindow;
};
SUPERCLASS = NSObject;
},
{
CLASS = ResourceDataSource;
LANGUAGE = ObjC;
- OUTLETS = {
- createResourceSheetController = CreateResourceSheetController;
- document = ResourceDocument;
- outlineView = NSOutlineView;
- window = NSWindow;
- };
+ OUTLETS = {document = ResourceDocument; outlineView = NSOutlineView; window = NSWindow; };
SUPERCLASS = NSObject;
},
{
- ACTIONS = {showCreateResourceSheet = id; };
+ ACTIONS = {
+ clear = id;
+ openResource = id;
+ openResourceAsHex = id;
+ playSound = id;
+ showCreateResourceSheet = id;
+ };
CLASS = ResourceDocument;
LANGUAGE = ObjC;
- OUTLETS = {dataSource = ResourceDataSource; outlineView = NSOutlineView; };
+ OUTLETS = {
+ dataSource = ResourceDataSource;
+ mainWindow = NSWindow;
+ outlineView = NSOutlineView;
+ };
SUPERCLASS = NSDocument;
},
{CLASS = SizeFormatter; LANGUAGE = ObjC; SUPERCLASS = NSNumberFormatter; }
diff --git a/Cocoa/English.lproj/ResourceDocument.nib/info.nib b/Cocoa/English.lproj/ResourceDocument.nib/info.nib
index ecaedd9..4d653da 100644
--- a/Cocoa/English.lproj/ResourceDocument.nib/info.nib
+++ b/Cocoa/English.lproj/ResourceDocument.nib/info.nib
@@ -3,11 +3,11 @@
IBDocumentLocation
- 153 217 480 547 0 0 1280 1002
+ 306 119 486 325 0 0 1280 1002
IBFramework Version
248.0
IBSystem Version
- 5P48
+ 5Q45
IBUserGuides
CreateResourceSheet
diff --git a/Cocoa/English.lproj/ResourceDocument.nib/objects.nib b/Cocoa/English.lproj/ResourceDocument.nib/objects.nib
index d773625..33cc3f2 100644
Binary files a/Cocoa/English.lproj/ResourceDocument.nib/objects.nib and b/Cocoa/English.lproj/ResourceDocument.nib/objects.nib differ