Cocoa style safari tabs?

I mean the Safari 8 panel control (which looks almost exactly the same as in Xcode 6 tabbar + horizontal scrolling if I'm not mistaken)

tabbar safari

Is it available anywhere? How can I proceed?


PS: If the answer is something like the line "This is a custom control, but you can do it very easily by subclassing ... whatever is in the subclass", I'm ready for that! lol

+3


source to share


2 answers


This is a custom control: ScrollableTabBarView. You can check it using F-Script

The closest visual match is the Yosemite style MMTabBarView . However, this control does not scroll.



Also check LITabControl and KPCTabsControl

+5


source


It's just a segmented / tabbed panel with custom radio buttons with an NSButton added (this is to close the tab).

This can be checked with the Accessibility Inspector.



And there is no simple control for that, as you mentioned in PS, you have to go with customizing the controls.

+2


source







All Articles