sheetParent
@property(readonly, strong) NSWindow *sheetParentvar sheetParent: NSWindow? { get }
解説
シートの親ウインドウ
返り値
シートが付いている親ウインドウ
Objective-C@property(readonly, strong) NSWindow *sheetParentvar sheetParent: NSWindow? { get }
引数
なし
フレームワーク
ApplicationKit
クラス
NSWindow
使用可能
10.9-
参照
関連記事(外部サイト)
例文
//NSWindow beginSheet:completionHandler: //NSWindow attachedSheet //NSWindow endSheet:returnCode: //NSWindow sheetParent func buttonAction042_2(sender: AnyObject){ //シートの親ウインドウ let parentWindow : NSWindow = (sender as NSButton).window!.sheetParent! if (parentWindow.attachedSheet != nil){ NSLog("attachedSheet %@", parentWindow.attachedSheet!) //->attachedSheet <NSWindow: 0x6080001e0900> } //シートの親ウインドウに対して、シートの終了 parentWindow.endSheet((sender as NSButton).window!, returnCode: NSModalResponseStop ) // NSModalResponseStop = (-1000), // NSModalResponseAbort = (-1001), // NSModalResponseContinue = (-1002), } func buttonAction042(sender: AnyObject){ var theWindow : NSWindow = (sender as NSButton).window! var sheetWindow : NSWindow = NSWindow( contentRect: NSMakeRect(0.0, 0.0, 200, 150), styleMask: NSBorderlessWindowMask, backing: .Buffered, defer: false) sheetWindow.backgroundColor = NSColor.redColor() //ボタンを作成 var sheetButton : NSButton = NSButton(frame: NSMakeRect(50.0, 2.0, 80.0, 30.0)) sheetButton.title = "Close" sheetButton.bezelStyle = NSBezelStyle.RoundedBezelStyle sheetButton.action = Selector("buttonAction042_2:") sheetWindow.contentView.addSubview(sheetButton) theWindow.beginSheet(sheetWindow, completionHandler:{responseCode in if (responseCode == NSModalResponseStop) { NSLog("NSModalResponseStop") }else{ NSLog("Other") } }) } @IBAction func function042(sender: AnyObject) { var aWindow : NSWindow = NSWindow( contentRect: NSMakeRect(0.0, 0.0, 300, 200), styleMask: NSTitledWindowMask | NSClosableWindowMask | NSMiniaturizableWindowMask | NSResizableWindowMask, backing: .Buffered, defer: false) windowArray.addObject(aWindow) //ウインドウを保持するための配列に追加。アプリ終了時に配列は破棄 //ボタンを作成 var theButton : NSButton = NSButton(frame: NSMakeRect(100.0, 2.0, 100.0, 30.0)) theButton.title = "Sheet" theButton.bezelStyle = NSBezelStyle.RoundedBezelStyle theButton.action = Selector("buttonAction042:") aWindow.contentView.addSubview(theButton) //ウインドウの表示 aWindow.center()//ウインドウをスクリーンの中心に aWindow.title = "ウインドウタイトル"//タイトル設定 aWindow.orderFront(self)//前面に }