DSFComboButton

main

A drop-in `NSComboButton` replacement with pre macOS 13 support.
dagronf/DSFComboButton

DSFComboButton

Swift Package Manager

A drop-in NSComboButton replacement control with pre macOS 13 support.

For when you want to adopt NSComboButton but have to maintain compatibility back to 10.13.

Features

DSFComboButton attempts to match the NSComboButton control API as closely as possible. The programmatic interface is almost identical, however (unfortunately) Interface Builder support in a custom control is very limited so I've done as best I can.

Split style

Split style

  • Click on the leading side of the button to perform a 'default' action
  • Click on the down arrow to present a menu

Unified style

Unified style

  • Click on the button to perform a 'default' action
  • Click and hold to present a menu

Styles

style description
.split A style that separates the button’s title and image from the menu indicator people use to activate the button.
.unified A style that unifies the button’s title and image with the menu indicator.

Properties

property type description
style DSFComboButton.Style The control style to use
title String The text to display on the control
image NSImage The image to display on the control
imageScaling NSImageScaling How the image scales
target AnyObject The target for the button's action
action Selector The selector to call on the target
controlSize NSControl.ControlSize The size of the control

Setting the popup menu

via code

Assign an NSMenu instance to .menu

let button = DSFComboButton()
button.menu = NSMenu(...)

via Interface Builder

  1. Drop an NSMenu instance into your XIB/Storyboard
  2. Ctrl-Drag from the DSFComboButton control on the storyboard to the menu, select menu outlet

Setting the button's target/action

via code

let button = DSFComboButton()
button.target = /*some controller*/
button.action = #selector(buttonPressed(_:))

via Interface Builder

ctrl-drag from the DSFComboButton control to the code.

License

MIT License

Copyright (c) 2023 Darren Ford

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Description

  • Swift Tools 5.4.0
View More Packages from this Author

Dependencies

  • None
Last updated: Mon Mar 11 2024 19:10:57 GMT-0900 (Hawaii-Aleutian Daylight Time)