Skip to content

Instantly share code, notes, and snippets.

@smorr
Created August 2, 2017 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smorr/5b2cb44c1f65feff1e8678fd55bdba73 to your computer and use it in GitHub Desktop.
Save smorr/5b2cb44c1f65feff1e8678fd55bdba73 to your computer and use it in GitHub Desktop.
Common swizzle for dealing with multiple plugins and Preferences on Mail in 10.13
-(void)MTsetSelectedTabViewItemIndex:(NSUInteger)idx{
if ([[NSThread currentThread] threadDictionary][@"pluginExclusionLock"]){
[swizzledSelf MTsetSelectedTabViewItemIndex:idx];
return;
}
// grab the pluginExclusionLock
[[NSThread currentThread] threadDictionary][@"pluginExclusionLock"] = @YES;
[swizzledSelf MTsetSelectedTabViewItemIndex:idx];
NSWindow * prefWindow = [self.tabView window];
NSTabViewItem * newTabItem = [[self tabViewItems] objectAtIndex:idx];
NSSize preferredSize = [newTabItem.viewController preferredContentSize];
CGFloat toolbarWidth = 0.0f;
for (NSView * aView in [[[[prefWindow.toolbar valueForKey:@"_toolbarView"] subviews] firstObject] subviews]){
toolbarWidth += aView.frame.size.width + 2.0;
}
preferredSize.width = MAX(preferredSize.width,toolbarWidth);
if ( preferredSize.height>0 ){
NSRect frame = [prefWindow frame];
CGFloat height = preferredSize.height+TabItemHeight; // 78 for the height the tabs
frame.origin.y = NSMaxY(frame)-height;
frame.size.height = height;
[prefWindow setFrame:frame display:NO];
}
// find and set width constraint on tabView;
for (NSLayoutConstraint *constraint in [self.tabView constraints]){
if (constraint.firstAttribute == NSLayoutAttributeWidth && constraint.relation == NSLayoutRelationEqual && constraint.secondItem==nil){
widthConstraint = constraint;
}
}
if (!widthConstraint) {
widthConstraint = [self.tabView.widthAnchor constraintEqualToConstant:bestWidth];
widthConstraint.constant = bestWidth;
widthConstraint.active = YES;
}
widthConstraint.constant = preferredSize.width;
[[NSThread currentThread] threadDictionary][@"pluginExclusionLock"] = nil;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment