Revision: 11133
http://bibdesk.svn.sourceforge.net/bibdesk/?rev=11133&view=rev
Author: hofman
Date: 2007-09-23 02:32:39 -0700 (Sun, 23 Sep 2007)
Log Message:
-----------
Move splitview mousedown override to restrict to divider to our splitview
subclass and use the subclass in the nib
Modified Paths:
--------------
branches/TRY_ARM_FILE_INTERFACE/bibdesk/BDSKSplitView.m
branches/TRY_ARM_FILE_INTERFACE/bibdesk/BibEditor.m
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/classes.nib
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/info.nib
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/keyedobjects.nib
Modified: branches/TRY_ARM_FILE_INTERFACE/bibdesk/BDSKSplitView.m
===================================================================
--- branches/TRY_ARM_FILE_INTERFACE/bibdesk/BDSKSplitView.m 2007-09-22
22:34:44 UTC (rev 11132)
+++ branches/TRY_ARM_FILE_INTERFACE/bibdesk/BDSKSplitView.m 2007-09-23
09:32:39 UTC (rev 11133)
@@ -122,4 +122,35 @@
drawEnd = flag;
}
+- (void)mouseDown:(NSEvent *)theEvent {
+ BOOL inDivider = NO;
+ NSPoint mouseLoc = [self convertPoint:[theEvent locationInWindow]
fromView:nil];
+ NSArray *subviews = [self subviews];
+ int i, count = [subviews count];
+ id view;
+ NSRect divRect;
+
+ for (i = 0; i < count - 1; i++) {
+ view = [subviews objectAtIndex:i];
+ divRect = [view frame];
+ if ([self isVertical]) {
+ divRect.origin.x = NSMaxX(divRect);
+ divRect.size.width = [self dividerThickness];
+ } else {
+ divRect.origin.y = NSMaxY(divRect);
+ divRect.size.height = [self dividerThickness];
+ }
+
+ if (NSPointInRect(mouseLoc, divRect)) {
+ inDivider = YES;
+ break;
+ }
+ }
+
+ if (inDivider)
+ [super mouseDown:theEvent];
+ else
+ [[self nextResponder] mouseDown:theEvent];
+}
+
@end
\ No newline at end of file
Modified: branches/TRY_ARM_FILE_INTERFACE/bibdesk/BibEditor.m
===================================================================
--- branches/TRY_ARM_FILE_INTERFACE/bibdesk/BibEditor.m 2007-09-22 22:34:44 UTC
(rev 11132)
+++ branches/TRY_ARM_FILE_INTERFACE/bibdesk/BibEditor.m 2007-09-23 09:32:39 UTC
(rev 11133)
@@ -93,71 +93,6 @@
BDSKDrawerStateRightMask = 8,
};
[EMAIL PROTECTED] PosingSplitView : NSSplitView
[EMAIL PROTECTED]
-
[EMAIL PROTECTED] PosingSplitView
-/*
- FileView uses mouseDragged: for dragging, but NSSplitView swallows those
events in its own mini-event loop. I consider this a bug, since NSSplitView is
only useful as a container view, unlike NSButton.
- */
-+ (void)load
-{
- NSAutoreleasePool *p = [NSAutoreleasePool new];
- [self poseAsClass:NSClassFromString(@"NSSplitView")];
- [p release];
-}
-
-- (void)mouseDown:(NSEvent *)event;
-{
- NSPoint p = [self convertPoint:[event locationInWindow] fromView:nil];
- NSRect f1, f2;
- NSEnumerator *se = [[self subviews] objectEnumerator];
- NSView *v1, *v2;
- v1 = [se nextObject];
- BOOL inDivider = NO;
- while (v2 = [se nextObject]) {
-
- f1 = [v1 frame];
- f2 = [v2 frame];
- if ([self isVertical]) {
-
- NSRect left, right;
- if (f1.origin.x > f2.origin.x) {
- left = f2;
- right = f1;
- }
- else {
- left = f1;
- right = f2;
- }
-
- if (NSMinX(right) > p.x && p.x > NSMaxX(left))
- inDivider = YES;
- }
- else {
- NSRect top, bottom;
- if (f1.origin.y > f2.origin.y) {
- top = f1;
- bottom = f2;
- }
- else {
- bottom = f1;
- top = f2;
- }
-
- if (NSMinY(top) > p.y && p.y > NSMaxY(bottom))
- inDivider = YES;
- }
- }
-
- if (inDivider)
- [super mouseDown:event];
- else
- [[self nextResponder] mouseDown:event];
-}
-
[EMAIL PROTECTED]
-
// offset of the form from the left window edge
#define FORM_OFFSET 13.0
Modified:
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/classes.nib
===================================================================
---
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/classes.nib
2007-09-22 22:34:44 UTC (rev 11132)
+++
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/classes.nib
2007-09-23 09:32:39 UTC (rev 11133)
@@ -1,404 +1,147 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>IBClasses</key>
- <array>
- <dict>
- <key>CLASS</key>
- <string>BDSKGradientView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSView</string>
- </dict>
- <dict>
- <key>ACTIONS</key>
- <dict>
- <key>bibTypeDidChange</key>
- <string>id</string>
- <key>changeFlag</key>
- <string>id</string>
- <key>changeRating</key>
- <string>id</string>
- <key>chooseLocalURL</key>
- <string>id</string>
- <key>consolidateLinkedFiles</key>
- <string>id</string>
- <key>copyNotesForLinkedFile</key>
- <string>id</string>
- <key>createNewPubUsingCrossrefAction</key>
- <string>id</string>
- <key>deletePub</key>
- <string>id</string>
- <key>dismissChangeFieldNameSheet</key>
- <string>id</string>
- <key>downloadLinkedFileAsLocalUrl</key>
- <string>id</string>
- <key>duplicateTitleToBooktitle</key>
- <string>id</string>
- <key>editNextPub</key>
- <string>id</string>
- <key>editPreviousPub</key>
- <string>id</string>
- <key>editSelectedFieldAsRawBibTeX</key>
- <string>id</string>
- <key>generateCiteKey</key>
- <string>id</string>
- <key>moveLinkedFile</key>
- <string>id</string>
- <key>openLinkedFile</key>
- <string>id</string>
- <key>openParentItem</key>
- <string>id</string>
- <key>openRemoteURL</key>
- <string>id</string>
- <key>raiseAddField</key>
- <string>id</string>
- <key>raiseChangeFieldName</key>
- <string>id</string>
- <key>raiseDelField</key>
- <string>id</string>
- <key>revealLinkedFile</key>
- <string>id</string>
- <key>saveFileAsLocalUrl</key>
- <string>id</string>
- <key>selectCrossrefParentAction</key>
- <string>id</string>
- <key>setLocalURLPathFromMenuItem</key>
- <string>NSMenuItem</string>
- <key>setRemoteURLFromMenuItem</key>
- <string>NSMenuItem</string>
- <key>showCiteKeyWarning</key>
- <string>id</string>
- <key>showNotesForLinkedFile</key>
- <string>id</string>
- <key>showPersonDetailCmd</key>
- <string>id</string>
- <key>toggleSnoopDrawer</key>
- <string>id</string>
- <key>toggleStatusBar</key>
- <string>id</string>
- </dict>
- <key>CLASS</key>
- <string>BibEditor</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>OUTLETS</key>
- <dict>
- <key>abstractView</key>
- <string>NSTextView</string>
- <key>actionButton</key>
- <string>BDSKImagePopUpButton</string>
- <key>actionMenu</key>
- <string>NSMenu</string>
- <key>actionMenuButton</key>
- <string>BDSKImagePopUpButton</string>
- <key>addFieldButton</key>
- <string>NSButton</string>
- <key>authorScrollView</key>
- <string>NSScrollView</string>
- <key>authorTableView</key>
- <string>NSTableView</string>
- <key>bibFields</key>
- <string>BDSKForm</string>
- <key>bibTypeButton</key>
- <string>NSPopUpButton</string>
- <key>changeFieldNameSheet</key>
- <string>NSPanel</string>
- <key>citeKeyField</key>
- <string>NSTextField</string>
- <key>citeKeyTitle</key>
- <string>NSTextField</string>
- <key>citeKeyWarningButton</key>
- <string>NSButton</string>
- <key>documentSnoopButton</key>
- <string>BDSKImagePopUpButton</string>
- <key>documentSnoopDrawer</key>
- <string>NSDrawer</string>
- <key>documentSnoopImageView</key>
- <string>PDFImageView</string>
- <key>documentSnoopPDFView</key>
- <string>BDSKZoomablePDFView</string>
- <key>documentSnoopScrollView</key>
- <string>NSScrollView</string>
- <key>documentSnoopTextView</key>
- <string>NSTextView</string>
- <key>extraBibFields</key>
- <string>NSMatrix</string>
- <key>fieldsAccessoryView</key>
- <string>NSView</string>
- <key>fieldsPopUpButton</key>
- <string>NSPopUpButton</string>
- <key>fileView</key>
- <string>FileView</string>
- <key>newFieldNameComboBox</key>
- <string>NSComboBox</string>
- <key>notesView</key>
- <string>NSTextView</string>
- <key>oldFieldNamePopUp</key>
- <string>NSPopUpButton</string>
- <key>pdfSnoopContainerView</key>
- <string>NSView</string>
- <key>remoteSnoopWebView</key>
- <string>WebView</string>
- <key>rssDescriptionView</key>
- <string>NSTextView</string>
- <key>splitView</key>
- <string>OASplitView</string>
- <key>statusBar</key>
- <string>BDSKStatusBar</string>
- <key>tabView</key>
- <string>NSTabView</string>
- <key>textSnoopContainerView</key>
- <string>NSView</string>
- <key>viewLocalButton</key>
- <string>BDSKImagePopUpButton</string>
- <key>viewRemoteButton</key>
- <string>BDSKImagePopUpButton</string>
- <key>webSnoopContainerView</key>
- <string>NSView</string>
- </dict>
- <key>SUPERCLASS</key>
- <string>NSWindowController</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKDragWindow</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSWindow</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKFormCell</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSFormCell</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>NSMenu</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSObject</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>NSControl</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSView</string>
- </dict>
- <dict>
- <key>ACTIONS</key>
- <dict>
- <key>hideWindow</key>
- <string>id</string>
- <key>toggleShowingWindow</key>
- <string>id</string>
- </dict>
- <key>CLASS</key>
- <string>NSWindowController</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSResponder</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>FileView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>OUTLETS</key>
- <dict>
- <key>_delegate</key>
- <string>id</string>
- </dict>
- <key>SUPERCLASS</key>
- <string>NSView</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>NSObject</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKEdgeView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>BDSKContainerView</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKTabView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSTabView</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>NSWindow</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSResponder</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>NSMenuItem</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSObject</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>OASplitView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSSplitView</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKSplitView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>OASplitView</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>FirstResponder</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSObject</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKEditorTextView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSTextView</string>
- </dict>
- <dict>
- <key>ACTIONS</key>
- <dict>
- <key>scalePopUpAction</key>
- <string>id</string>
- </dict>
- <key>CLASS</key>
- <string>BDSKZoomablePDFView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>PDFView</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKImagePopUpButton</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>OUTLETS</key>
- <dict>
- <key>delegate</key>
- <string>id</string>
- </dict>
- <key>SUPERCLASS</key>
- <string>NSPopUpButton</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKForm</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>OUTLETS</key>
- <dict>
- <key>dragSourceCell</key>
- <string>id</string>
- </dict>
- <key>SUPERCLASS</key>
- <string>NSForm</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>PDFImageView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSImageView</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>NSTextView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSText</string>
- </dict>
- <dict>
- <key>CLASS</key>
- <string>BDSKContainerView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>OUTLETS</key>
- <dict>
- <key>contentView</key>
- <string>id</string>
- </dict>
- <key>SUPERCLASS</key>
- <string>NSView</string>
- </dict>
- <dict>
- <key>ACTIONS</key>
- <dict>
- <key>startAnimation</key>
- <string>id</string>
- <key>stopAnimation</key>
- <string>id</string>
- </dict>
- <key>CLASS</key>
- <string>BDSKStatusBar</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>OUTLETS</key>
- <dict>
- <key>delegate</key>
- <string>id</string>
- <key>textCell</key>
- <string>id</string>
- </dict>
- <key>SUPERCLASS</key>
- <string>BDSKGradientView</string>
- </dict>
- <dict>
- <key>ACTIONS</key>
- <dict>
- <key>changeFont</key>
- <string>id</string>
- <key>invertSelection</key>
- <string>id</string>
- </dict>
- <key>CLASS</key>
- <string>NSTableView</string>
- <key>LANGUAGE</key>
- <string>ObjC</string>
- <key>SUPERCLASS</key>
- <string>NSControl</string>
- </dict>
- </array>
- <key>IBVersion</key>
- <string>1</string>
-</dict>
-</plist>
+{
+ IBClasses = (
+ {
+ CLASS = BDSKContainerView;
+ LANGUAGE = ObjC;
+ OUTLETS = {contentView = id; };
+ SUPERCLASS = NSView;
+ },
+ {CLASS = BDSKDragWindow; LANGUAGE = ObjC; SUPERCLASS = NSWindow; },
+ {CLASS = BDSKEdgeView; LANGUAGE = ObjC; SUPERCLASS =
BDSKContainerView; },
+ {CLASS = BDSKEditorTextView; LANGUAGE = ObjC; SUPERCLASS = NSTextView;
},
+ {
+ CLASS = BDSKForm;
+ LANGUAGE = ObjC;
+ OUTLETS = {dragSourceCell = id; };
+ SUPERCLASS = NSForm;
+ },
+ {CLASS = BDSKFormCell; LANGUAGE = ObjC; SUPERCLASS = NSFormCell; },
+ {CLASS = BDSKGradientView; LANGUAGE = ObjC; SUPERCLASS = NSView; },
+ {
+ CLASS = BDSKImagePopUpButton;
+ LANGUAGE = ObjC;
+ OUTLETS = {delegate = id; };
+ SUPERCLASS = NSPopUpButton;
+ },
+ {CLASS = BDSKSplitView; LANGUAGE = ObjC; SUPERCLASS = OASplitView; },
+ {
+ ACTIONS = {startAnimation = id; stopAnimation = id; };
+ CLASS = BDSKStatusBar;
+ LANGUAGE = ObjC;
+ OUTLETS = {delegate = id; textCell = id; };
+ SUPERCLASS = BDSKGradientView;
+ },
+ {CLASS = BDSKTabView; LANGUAGE = ObjC; SUPERCLASS = NSTabView; },
+ {
+ ACTIONS = {scalePopUpAction = id; };
+ CLASS = BDSKZoomablePDFView;
+ LANGUAGE = ObjC;
+ SUPERCLASS = PDFView;
+ },
+ {
+ ACTIONS = {
+ bibTypeDidChange = id;
+ changeFlag = id;
+ changeRating = id;
+ chooseLocalURL = id;
+ consolidateLinkedFiles = id;
+ copyNotesForLinkedFile = id;
+ createNewPubUsingCrossrefAction = id;
+ deletePub = id;
+ dismissChangeFieldNameSheet = id;
+ downloadLinkedFileAsLocalUrl = id;
+ duplicateTitleToBooktitle = id;
+ editNextPub = id;
+ editPreviousPub = id;
+ editSelectedFieldAsRawBibTeX = id;
+ generateCiteKey = id;
+ moveLinkedFile = id;
+ openLinkedFile = id;
+ openParentItem = id;
+ openRemoteURL = id;
+ raiseAddField = id;
+ raiseChangeFieldName = id;
+ raiseDelField = id;
+ revealLinkedFile = id;
+ saveFileAsLocalUrl = id;
+ selectCrossrefParentAction = id;
+ setLocalURLPathFromMenuItem = NSMenuItem;
+ setRemoteURLFromMenuItem = NSMenuItem;
+ showCiteKeyWarning = id;
+ showNotesForLinkedFile = id;
+ showPersonDetailCmd = id;
+ toggleSnoopDrawer = id;
+ toggleStatusBar = id;
+ };
+ CLASS = BibEditor;
+ LANGUAGE = ObjC;
+ OUTLETS = {
+ abstractView = NSTextView;
+ actionButton = BDSKImagePopUpButton;
+ actionMenu = NSMenu;
+ actionMenuButton = BDSKImagePopUpButton;
+ addFieldButton = NSButton;
+ authorScrollView = NSScrollView;
+ authorTableView = NSTableView;
+ bibFields = BDSKForm;
+ bibTypeButton = NSPopUpButton;
+ changeFieldNameSheet = NSPanel;
+ citeKeyField = NSTextField;
+ citeKeyTitle = NSTextField;
+ citeKeyWarningButton = NSButton;
+ documentSnoopButton = BDSKImagePopUpButton;
+ documentSnoopDrawer = NSDrawer;
+ documentSnoopImageView = PDFImageView;
+ documentSnoopPDFView = BDSKZoomablePDFView;
+ documentSnoopScrollView = NSScrollView;
+ documentSnoopTextView = NSTextView;
+ extraBibFields = NSMatrix;
+ fieldsAccessoryView = NSView;
+ fieldsPopUpButton = NSPopUpButton;
+ fileView = FileView;
+ newFieldNameComboBox = NSComboBox;
+ notesView = NSTextView;
+ oldFieldNamePopUp = NSPopUpButton;
+ pdfSnoopContainerView = NSView;
+ remoteSnoopWebView = WebView;
+ rssDescriptionView = NSTextView;
+ splitView = OASplitView;
+ statusBar = BDSKStatusBar;
+ tabView = NSTabView;
+ textSnoopContainerView = NSView;
+ viewLocalButton = BDSKImagePopUpButton;
+ viewRemoteButton = BDSKImagePopUpButton;
+ webSnoopContainerView = NSView;
+ };
+ SUPERCLASS = NSWindowController;
+ },
+ {
+ CLASS = FileView;
+ LANGUAGE = ObjC;
+ OUTLETS = {"_delegate" = id; };
+ SUPERCLASS = NSView;
+ },
+ {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
+ {CLASS = NSControl; LANGUAGE = ObjC; SUPERCLASS = NSView; },
+ {CLASS = NSMenu; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
+ {CLASS = NSMenuItem; LANGUAGE = ObjC; SUPERCLASS = NSObject; },
+ {CLASS = NSObject; LANGUAGE = ObjC; },
+ {
+ ACTIONS = {changeFont = id; invertSelection = id; };
+ CLASS = NSTableView;
+ LANGUAGE = ObjC;
+ SUPERCLASS = NSControl;
+ },
+ {CLASS = NSTextView; LANGUAGE = ObjC; SUPERCLASS = NSText; },
+ {CLASS = NSWindow; LANGUAGE = ObjC; SUPERCLASS = NSResponder; },
+ {
+ ACTIONS = {hideWindow = id; toggleShowingWindow = id; };
+ CLASS = NSWindowController;
+ LANGUAGE = ObjC;
+ SUPERCLASS = NSResponder;
+ },
+ {CLASS = OASplitView; LANGUAGE = ObjC; SUPERCLASS = NSSplitView; },
+ {CLASS = PDFImageView; LANGUAGE = ObjC; SUPERCLASS = NSImageView; }
+ );
+ IBVersion = 1;
+}
\ No newline at end of file
Modified:
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/info.nib
===================================================================
---
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/info.nib
2007-09-22 22:34:44 UTC (rev 11132)
+++
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/info.nib
2007-09-23 09:32:39 UTC (rev 11133)
@@ -1,19 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
+ <key>IBDocumentLocation</key>
+ <string>69 58 356 240 0 0 1440 938 </string>
<key>IBFramework Version</key>
- <string>623</string>
+ <string>446.1</string>
<key>IBLastKnownRelativeProjectPath</key>
<string>../../Bibdesk.xcodeproj</string>
<key>IBOldestOS</key>
<integer>5</integer>
<key>IBOpenObjects</key>
<array>
- <integer>869</integer>
+ <integer>74</integer>
</array>
<key>IBSystem Version</key>
- <string>9A527</string>
+ <string>8R218</string>
<key>targetFramework</key>
<string>IBCocoaFramework</string>
</dict>
Modified:
branches/TRY_ARM_FILE_INTERFACE/bibdesk/English.lproj/BibEditor.nib/keyedobjects.nib
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit