Revision: 28427
http://sourceforge.net/p/bibdesk/svn/28427
Author: hofman
Date: 2023-11-07 10:30:12 +0000 (Tue, 07 Nov 2023)
Log Message:
-----------
Set collectionBehavior and tabbingMode in nibs
Modified Paths:
--------------
trunk/bibdesk/BDSKBookmarkController.m
trunk/bibdesk/BDSKEditor.m
trunk/bibdesk/BDSKFileMatcher.m
trunk/bibdesk/BDSKFileMigrationController.m
trunk/bibdesk/BDSKFiler.m
trunk/bibdesk/BDSKFindController.m
trunk/bibdesk/BDSKMacroWindowController.m
trunk/bibdesk/BDSKNotesWindowController.m
trunk/bibdesk/BDSKPersonController.m
trunk/bibdesk/BDSKReadMeController.m
trunk/bibdesk/BDSKSearchBookmarkController.m
trunk/bibdesk/BDSKWebViewModalDialogController.m
trunk/bibdesk/Base.lproj/AutoFileProgress.xib
trunk/bibdesk/Base.lproj/BDSKEditor.xib
trunk/bibdesk/Base.lproj/BDSKFileMigration.xib
trunk/bibdesk/Base.lproj/BDSKFindPanel.xib
trunk/bibdesk/Base.lproj/BDSKPersonWindow.xib
trunk/bibdesk/Base.lproj/BookmarksWindow.xib
trunk/bibdesk/Base.lproj/FileMatcher.xib
trunk/bibdesk/Base.lproj/MacroWindow.xib
trunk/bibdesk/Base.lproj/NotesWindow.xib
trunk/bibdesk/Base.lproj/ReadMe.xib
trunk/bibdesk/Base.lproj/SearchBookmarksWindow.xib
Modified: trunk/bibdesk/BDSKBookmarkController.m
===================================================================
--- trunk/bibdesk/BDSKBookmarkController.m 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/BDSKBookmarkController.m 2023-11-07 10:30:12 UTC (rev
28427)
@@ -126,7 +126,6 @@
}
- (void)windowDidLoad {
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
[self setupToolbar];
[self setWindowFrameAutosaveName:BDSKBookmarksWindowFrameAutosaveName];
[outlineView setAutoresizesOutlineColumn:NO];
Modified: trunk/bibdesk/BDSKEditor.m
===================================================================
--- trunk/bibdesk/BDSKEditor.m 2023-11-07 10:16:13 UTC (rev 28426)
+++ trunk/bibdesk/BDSKEditor.m 2023-11-07 10:30:12 UTC (rev 28427)
@@ -187,8 +187,6 @@
// we should have a document at this point, as the nib is not loaded
before -window is called, which shouldn't happen before the document shows us
BDSKASSERT([self document]);
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
-
[[self window] setAutorecalculatesContentBorderThickness:NO
forEdge:NSMinYEdge];
[[self window] setContentBorderThickness:NSHeight([statusBar frame])
forEdge:NSMinYEdge];
Modified: trunk/bibdesk/BDSKFileMatcher.m
===================================================================
--- trunk/bibdesk/BDSKFileMatcher.m 2023-11-07 10:16:13 UTC (rev 28426)
+++ trunk/bibdesk/BDSKFileMatcher.m 2023-11-07 10:30:12 UTC (rev 28427)
@@ -121,8 +121,6 @@
- (void)windowDidLoad
{
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
-
[self setWindowFrameAutosaveName:@"Orphaned File Matcher Panel"];
[outlineView setStronglyReferencesItems:YES];
Modified: trunk/bibdesk/BDSKFileMigrationController.m
===================================================================
--- trunk/bibdesk/BDSKFileMigrationController.m 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/BDSKFileMigrationController.m 2023-11-07 10:30:12 UTC (rev
28427)
@@ -98,7 +98,6 @@
- (void)windowDidLoad
{
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
[self
setWindowFrameAutosaveNameOrCascade:BDSKFileMigrationFrameAutosaveName];
[tableView setDoubleAction:@selector(editPublication:)];
[tableView setTarget:self];
Modified: trunk/bibdesk/BDSKFiler.m
===================================================================
--- trunk/bibdesk/BDSKFiler.m 2023-11-07 10:16:13 UTC (rev 28426)
+++ trunk/bibdesk/BDSKFiler.m 2023-11-07 10:30:12 UTC (rev 28427)
@@ -75,10 +75,6 @@
return [super initWithWindowNibName:@"AutoFileProgress"];
}
-- (void)windowDidLoad {
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
-}
-
#pragma mark Auto file methods
- (BOOL)checkPapersFolder {
Modified: trunk/bibdesk/BDSKFindController.m
===================================================================
--- trunk/bibdesk/BDSKFindController.m 2023-11-07 10:16:13 UTC (rev 28426)
+++ trunk/bibdesk/BDSKFindController.m 2023-11-07 10:30:12 UTC (rev 28427)
@@ -119,8 +119,6 @@
- (void)windowDidLoad{
[self setWindowFrameAutosaveName:BDSKFindPanelFrameAutosaveName];
- [[self window]
setCollectionBehavior:NSWindowCollectionBehaviorMoveToActiveSpace];
-
BDSKTypeManager *btm = [BDSKTypeManager sharedManager];
NSMutableArray *extraFields = [NSMutableArray
arrayWithObjects:BDSKCiteKeyString, BDSKPubTypeString, BDSKRemoteURLString,
nil];
[extraFields addObjectsFromArray:[[btm noteFieldsSet] allObjects]];
Modified: trunk/bibdesk/BDSKMacroWindowController.m
===================================================================
--- trunk/bibdesk/BDSKMacroWindowController.m 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/BDSKMacroWindowController.m 2023-11-07 10:30:12 UTC (rev
28427)
@@ -134,8 +134,6 @@
}
- (void)windowDidLoad{
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
-
if ([[macroResolver owner] isDocument])
[self
setWindowFrameAutosaveNameOrCascade:BDSKMacroWindowFrameAutosaveName];
Modified: trunk/bibdesk/BDSKNotesWindowController.m
===================================================================
--- trunk/bibdesk/BDSKNotesWindowController.m 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/BDSKNotesWindowController.m 2023-11-07 10:30:12 UTC (rev
28427)
@@ -91,8 +91,6 @@
}
- (void)windowDidLoad {
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
-
[self setWindowFrameAutosaveNameOrCascade:@"NotesWindow"];
[splitView setAutosaveName:BDSKNotesWindowAutosaveName];
Modified: trunk/bibdesk/BDSKPersonController.m
===================================================================
--- trunk/bibdesk/BDSKPersonController.m 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/BDSKPersonController.m 2023-11-07 10:30:12 UTC (rev
28427)
@@ -102,8 +102,6 @@
}
- (void)windowDidLoad{
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
-
[publicationTableView
setFontNamePreferenceKey:BDSKPersonTableViewFontNameKey];
[publicationTableView
setFontSizePreferenceKey:BDSKPersonTableViewFontSizeKey];
Modified: trunk/bibdesk/BDSKReadMeController.m
===================================================================
--- trunk/bibdesk/BDSKReadMeController.m 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/BDSKReadMeController.m 2023-11-07 10:30:12 UTC (rev
28427)
@@ -75,7 +75,6 @@
- (void)windowDidLoad {
[super windowDidLoad];
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
[self setWindowFrameAutosaveName:[self autosaveName]];
[[self window] setTitle:[self title]];
[textView setString:@""];
Modified: trunk/bibdesk/BDSKSearchBookmarkController.m
===================================================================
--- trunk/bibdesk/BDSKSearchBookmarkController.m 2023-11-07 10:16:13 UTC
(rev 28426)
+++ trunk/bibdesk/BDSKSearchBookmarkController.m 2023-11-07 10:30:12 UTC
(rev 28427)
@@ -118,7 +118,6 @@
}
- (void)windowDidLoad {
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
[self setupToolbar];
[self
setWindowFrameAutosaveName:BDSKSearchBookmarksWindowFrameAutosaveName];
[outlineView setAutoresizesOutlineColumn:NO];
Modified: trunk/bibdesk/BDSKWebViewModalDialogController.m
===================================================================
--- trunk/bibdesk/BDSKWebViewModalDialogController.m 2023-11-07 10:16:13 UTC
(rev 28426)
+++ trunk/bibdesk/BDSKWebViewModalDialogController.m 2023-11-07 10:30:12 UTC
(rev 28427)
@@ -50,6 +50,7 @@
NSWindow *window = [[[NSWindow alloc] initWithContentRect:NSMakeRect(0.0,
0.0, 200.0, 200.0) styleMask:mask backing:NSBackingStoreBuffered defer:YES]
autorelease];
self = [self initWithWindow:window];
if (self) {
+ [window setTabbingMode:NSWindowTabbingModeDisallowed];
[window setDelegate:self];
webView = [[BDSKWebView alloc] init];
[webView setDelegate:self];
@@ -67,10 +68,6 @@
[super dealloc];
}
-- (void)windowDidLoad {
- [[self window] setTabbingMode:NSWindowTabbingModeDisallowed];
-}
-
- (void)windowWillClose:(NSNotification *)notification {
[NSApp stopModal];
[self autorelease];
Modified: trunk/bibdesk/Base.lproj/AutoFileProgress.xib
===================================================================
--- trunk/bibdesk/Base.lproj/AutoFileProgress.xib 2023-11-07 10:16:13 UTC
(rev 28426)
+++ trunk/bibdesk/Base.lproj/AutoFileProgress.xib 2023-11-07 10:30:12 UTC
(rev 28427)
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="17701" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <development version="8000" identifier="xcode"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="17701"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -15,7 +14,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
animationBehavior="default" id="10" userLabel="ProgressSheet"
customClass="NSPanel">
+ <window allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
animationBehavior="default" tabbingMode="disallowed" id="10"
userLabel="ProgressSheet" customClass="NSPanel">
<windowStyleMask key="styleMask" titled="YES"
miniaturizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
topStrut="YES"/>
<rect key="contentRect" x="180" y="636" width="312" height="88"/>
Modified: trunk/bibdesk/Base.lproj/BDSKEditor.xib
===================================================================
--- trunk/bibdesk/Base.lproj/BDSKEditor.xib 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/Base.lproj/BDSKEditor.xib 2023-11-07 10:30:12 UTC (rev
28427)
@@ -32,7 +32,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window allowsToolTipsWhenApplicationIsInactive="NO"
releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default"
id="74" userLabel="Window">
+ <window allowsToolTipsWhenApplicationIsInactive="NO"
releasedWhenClosed="NO" visibleAtLaunch="NO" animationBehavior="default"
tabbingMode="disallowed" id="74" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="258" y="337" width="700" height="400"/>
@@ -56,7 +56,7 @@
</connections>
</button>
<popUpButton toolTip="Action for publication"
verticalHuggingPriority="750" translatesAutoresizingMaskIntoConstraints="NO"
id="699">
- <rect key="frame" x="37" y="1" width="23"
height="22"/>
+ <rect key="frame" x="37" y="2" width="23"
height="19"/>
<popUpButtonCell key="cell"
type="roundTextured" bezelStyle="texturedRounded" imagePosition="only"
alignment="center" controlSize="small" lineBreakMode="truncatingTail"
borderStyle="borderAndBezel" imageScaling="proportionallyDown" inset="2"
pullsDown="YES" arrowPosition="noArrow" id="1004">
<behavior key="behavior" pushIn="YES"
lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="message"
size="11"/>
Modified: trunk/bibdesk/Base.lproj/BDSKFileMigration.xib
===================================================================
--- trunk/bibdesk/Base.lproj/BDSKFileMigration.xib 2023-11-07 10:16:13 UTC
(rev 28426)
+++ trunk/bibdesk/Base.lproj/BDSKFileMigration.xib 2023-11-07 10:30:12 UTC
(rev 28427)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19162" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19162"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -17,7 +17,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" animationBehavior="default" id="1"
userLabel="Window (Window)">
+ <window allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" animationBehavior="default"
tabbingMode="disallowed" id="1" userLabel="Window (Window)">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
bottomStrut="YES"/>
<rect key="contentRect" x="444" y="405" width="534" height="284"/>
@@ -206,7 +206,7 @@
</tableHeaderView>
</scrollView>
<button verticalHuggingPriority="750"
translatesAutoresizingMaskIntoConstraints="NO" id="15">
- <rect key="frame" x="438" y="240" width="83"
height="32"/>
+ <rect key="frame" x="439" y="240" width="82"
height="32"/>
<buttonCell key="cell" type="push" title="Convert"
bezelStyle="rounded" alignment="center" borderStyle="border" inset="2" id="101">
<behavior key="behavior" pushIn="YES"
lightByBackground="YES" lightByGray="YES"/>
<font key="font" metaFont="system"/>
@@ -226,7 +226,7 @@
</connections>
</button>
<progressIndicator hidden="YES" wantsLayer="YES"
verticalHuggingPriority="750" maxValue="1" bezeled="NO" controlSize="small"
style="bar" translatesAutoresizingMaskIntoConstraints="NO" id="62">
- <rect key="frame" x="276" y="253" width="161"
height="12"/>
+ <rect key="frame" x="277" y="253" width="161"
height="12"/>
<constraints>
<constraint firstAttribute="width" constant="161"
id="SsQ-5b-xWO"/>
</constraints>
Modified: trunk/bibdesk/Base.lproj/BDSKFindPanel.xib
===================================================================
--- trunk/bibdesk/Base.lproj/BDSKFindPanel.xib 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/Base.lproj/BDSKFindPanel.xib 2023-11-07 10:30:12 UTC (rev
28427)
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="17701" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <development version="8000" identifier="xcode"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="17701"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -36,6 +35,7 @@
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
<window title="Database Find and Replace"
allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO"
hidesOnDeactivate="YES" releasedWhenClosed="NO" visibleAtLaunch="NO"
frameAutosaveName="" animationBehavior="default" id="5" userLabel="Window"
customClass="NSPanel">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
+ <windowCollectionBehavior key="collectionBehavior"
moveToActiveSpace="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="72" y="351" width="585" height="299"/>
<rect key="screenRect" x="0.0" y="0.0" width="1280" height="775"/>
Modified: trunk/bibdesk/Base.lproj/BDSKPersonWindow.xib
===================================================================
--- trunk/bibdesk/Base.lproj/BDSKPersonWindow.xib 2023-11-07 10:16:13 UTC
(rev 28426)
+++ trunk/bibdesk/Base.lproj/BDSKPersonWindow.xib 2023-11-07 10:30:12 UTC
(rev 28427)
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19162" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <plugIn identifier="com.apple.AddressBook.ibplugin" version="19162"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19162"/>
+ <plugIn identifier="com.apple.AddressBook.ibplugin" version="19529"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -28,7 +28,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window title="Person" allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" visibleAtLaunch="NO"
animationBehavior="default" id="6" userLabel="Window">
+ <window title="Person" allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" visibleAtLaunch="NO"
animationBehavior="default" tabbingMode="disallowed" id="6" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="182" y="378" width="420" height="370"/>
@@ -112,7 +112,7 @@
<tableColumnResizingMask
key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
<prototypeCellViews>
<tableCellView
id="E8L-mQ-QFH">
- <rect key="frame"
x="11" y="1" width="388" height="16"/>
+ <rect key="frame"
x="1" y="1" width="388" height="16"/>
<autoresizingMask
key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField
horizontalHuggingPriority="251" verticalHuggingPriority="750"
horizontalCompressionResistancePriority="250" allowsExpansionToolTips="YES"
translatesAutoresizingMaskIntoConstraints="NO" id="avf-j7-Hma">
@@ -201,7 +201,7 @@
<tableColumnResizingMask
key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
<prototypeCellViews>
<tableCellView
id="zjT-No-Q0A">
- <rect key="frame"
x="11" y="1" width="221" height="14"/>
+ <rect key="frame"
x="1" y="1" width="221" height="14"/>
<autoresizingMask
key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField
horizontalHuggingPriority="251" verticalHuggingPriority="750"
horizontalCompressionResistancePriority="250"
translatesAutoresizingMaskIntoConstraints="NO" id="Spy-Pp-hkt">
@@ -272,7 +272,7 @@
<tableColumnResizingMask
key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
<prototypeCellViews>
<tableCellView
id="TCt-G1-Jux">
- <rect key="frame"
x="11" y="1" width="49" height="14"/>
+ <rect key="frame"
x="1" y="1" width="49" height="14"/>
<autoresizingMask
key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<textField
horizontalHuggingPriority="251" verticalHuggingPriority="750"
horizontalCompressionResistancePriority="250"
translatesAutoresizingMaskIntoConstraints="NO" id="GTe-1h-haG">
Modified: trunk/bibdesk/Base.lproj/BookmarksWindow.xib
===================================================================
--- trunk/bibdesk/Base.lproj/BookmarksWindow.xib 2023-11-07 10:16:13 UTC
(rev 28426)
+++ trunk/bibdesk/Base.lproj/BookmarksWindow.xib 2023-11-07 10:30:12 UTC
(rev 28427)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19162" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19162"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -18,7 +18,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window title="Bookmarks" allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
animationBehavior="default" id="5" userLabel="Window">
+ <window title="Bookmarks" allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
animationBehavior="default" tabbingMode="disallowed" id="5" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="209" y="419" width="400" height="250"/>
Modified: trunk/bibdesk/Base.lproj/FileMatcher.xib
===================================================================
--- trunk/bibdesk/Base.lproj/FileMatcher.xib 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/Base.lproj/FileMatcher.xib 2023-11-07 10:30:12 UTC (rev
28427)
@@ -18,7 +18,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window title="Possible Matching Pubs"
allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO"
releasedWhenClosed="NO" visibleAtLaunch="NO" frameAutosaveName=""
animationBehavior="default" id="5" userLabel="Window">
+ <window title="Possible Matching Pubs"
allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO"
releasedWhenClosed="NO" visibleAtLaunch="NO" frameAutosaveName=""
animationBehavior="default" tabbingMode="disallowed" id="5" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="373" y="301" width="480" height="378"/>
Modified: trunk/bibdesk/Base.lproj/MacroWindow.xib
===================================================================
--- trunk/bibdesk/Base.lproj/MacroWindow.xib 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/Base.lproj/MacroWindow.xib 2023-11-07 10:30:12 UTC (rev
28427)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19162" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19162"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -17,7 +17,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window title="Macros" allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
frameAutosaveName="Macro Editing Window" animationBehavior="default" id="5"
userLabel="Window">
+ <window title="Macros" allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
frameAutosaveName="Macro Editing Window" animationBehavior="default"
tabbingMode="disallowed" id="5" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="179" y="349" width="376" height="275"/>
Modified: trunk/bibdesk/Base.lproj/NotesWindow.xib
===================================================================
--- trunk/bibdesk/Base.lproj/NotesWindow.xib 2023-11-07 10:16:13 UTC (rev
28426)
+++ trunk/bibdesk/Base.lproj/NotesWindow.xib 2023-11-07 10:30:12 UTC (rev
28427)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19162" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19162"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -19,7 +19,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
animationBehavior="default" id="5" userLabel="Window">
+ <window allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
animationBehavior="default" tabbingMode="disallowed" id="5" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="242" y="399" width="480" height="360"/>
Modified: trunk/bibdesk/Base.lproj/ReadMe.xib
===================================================================
--- trunk/bibdesk/Base.lproj/ReadMe.xib 2023-11-07 10:16:13 UTC (rev 28426)
+++ trunk/bibdesk/Base.lproj/ReadMe.xib 2023-11-07 10:30:12 UTC (rev 28427)
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="18122" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <development version="8000" identifier="xcode"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="18122"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -15,7 +14,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window title="ReadMe" allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
frameAutosaveName="" animationBehavior="default" id="6" userLabel="Window">
+ <window title="ReadMe" allowsToolTipsWhenApplicationIsInactive="NO"
autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" visibleAtLaunch="NO"
frameAutosaveName="" animationBehavior="default" tabbingMode="disallowed"
id="6" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="334" y="289" width="480" height="360"/>
Modified: trunk/bibdesk/Base.lproj/SearchBookmarksWindow.xib
===================================================================
--- trunk/bibdesk/Base.lproj/SearchBookmarksWindow.xib 2023-11-07 10:16:13 UTC
(rev 28426)
+++ trunk/bibdesk/Base.lproj/SearchBookmarksWindow.xib 2023-11-07 10:30:12 UTC
(rev 28427)
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19162" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
+<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0"
toolsVersion="19529" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none"
useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
- <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19162"/>
+ <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin"
version="19529"/>
<capability name="documents saved in the Xcode 8 format"
minToolsVersion="8.0"/>
</dependencies>
<objects>
@@ -18,7 +18,7 @@
</customObject>
<customObject id="-1" userLabel="First Responder"
customClass="FirstResponder"/>
<customObject id="-3" userLabel="Application" customClass="NSObject"/>
- <window title="Search Bookmarks"
allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO"
releasedWhenClosed="NO" visibleAtLaunch="NO" frameAutosaveName=""
animationBehavior="default" id="9" userLabel="Window">
+ <window title="Search Bookmarks"
allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO"
releasedWhenClosed="NO" visibleAtLaunch="NO" frameAutosaveName=""
animationBehavior="default" tabbingMode="disallowed" id="9" userLabel="Window">
<windowStyleMask key="styleMask" titled="YES" closable="YES"
miniaturizable="YES" resizable="YES"/>
<windowPositionMask key="initialPositionMask" leftStrut="YES"
rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
<rect key="contentRect" x="262" y="375" width="500" height="300"/>
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
_______________________________________________
Bibdesk-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/bibdesk-commit