-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #146 from Code-Hex/add/mac-keyboard
added VZMacKeyboardConfiguration
- Loading branch information
Showing
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
//go:build darwin && arm64 | ||
// +build darwin,arm64 | ||
|
||
package vz | ||
|
||
/* | ||
#cgo darwin CFLAGS: -mmacosx-version-min=11 -x objective-c -fno-objc-arc | ||
#cgo darwin LDFLAGS: -lobjc -framework Foundation -framework Virtualization | ||
# include "virtualization_14_arm64.h" | ||
*/ | ||
import "C" | ||
import ( | ||
"github.com/Code-Hex/vz/v3/internal/objc" | ||
) | ||
|
||
// MacKeyboardConfiguration is a struct that defines the configuration | ||
// for a Mac keyboard. | ||
// | ||
// This device is only recognized by virtual machines running macOS 14.0 and later. | ||
// In order to support both macOS 13.0 and earlier guests, VirtualMachineConfiguration.keyboards | ||
// can be set to an array containing both a MacKeyboardConfiguration and | ||
// a USBKeyboardConfiguration object. macOS 14.0 and later guests will use the Mac keyboard device, | ||
// while earlier versions of macOS will use the USB keyboard device. | ||
// | ||
// see: https://developer.apple.com/documentation/virtualization/vzmackeyboardconfiguration?language=objc | ||
type MacKeyboardConfiguration struct { | ||
*pointer | ||
|
||
*baseKeyboardConfiguration | ||
} | ||
|
||
var _ KeyboardConfiguration = (*MacKeyboardConfiguration)(nil) | ||
|
||
// NewMacKeyboardConfiguration creates a new MacKeyboardConfiguration. | ||
// | ||
// This is only supported on macOS 14 and newer, error will | ||
// be returned on older versions. | ||
func NewMacKeyboardConfiguration() (*MacKeyboardConfiguration, error) { | ||
if err := macOSAvailable(14); err != nil { | ||
return nil, err | ||
} | ||
config := &MacKeyboardConfiguration{ | ||
pointer: objc.NewPointer( | ||
C.newVZMacKeyboardConfiguration(), | ||
), | ||
} | ||
objc.SetFinalizer(config, func(self *MacKeyboardConfiguration) { | ||
objc.Release(self) | ||
}) | ||
return config, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters