mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-19 10:08:26 +08:00
初始化
This commit is contained in:
66
CPF.Mac/Mac/AppKit/NSPathCellDelegate.cs
Normal file
66
CPF.Mac/Mac/AppKit/NSPathCellDelegate.cs
Normal file
@@ -0,0 +1,66 @@
|
||||
using CPF.Mac.Foundation;
|
||||
using CPF.Mac.ObjCRuntime;
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace CPF.Mac.AppKit
|
||||
{
|
||||
[Register("NSPathCellDelegate", true)]
|
||||
[Model]
|
||||
public class NSPathCellDelegate : NSObject
|
||||
{
|
||||
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
||||
[Export("init")]
|
||||
public NSPathCellDelegate()
|
||||
: base(NSObjectFlag.Empty)
|
||||
{
|
||||
if (IsDirectBinding)
|
||||
{
|
||||
base.Handle = Messaging.IntPtr_objc_msgSend(base.Handle, Selector.Init);
|
||||
}
|
||||
else
|
||||
{
|
||||
base.Handle = Messaging.IntPtr_objc_msgSendSuper(base.SuperHandle, Selector.Init);
|
||||
}
|
||||
}
|
||||
|
||||
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
||||
[Export("initWithCoder:")]
|
||||
public NSPathCellDelegate(NSCoder coder)
|
||||
: base(NSObjectFlag.Empty)
|
||||
{
|
||||
if (IsDirectBinding)
|
||||
{
|
||||
base.Handle = Messaging.IntPtr_objc_msgSend_IntPtr(base.Handle, Selector.InitWithCoder, coder.Handle);
|
||||
}
|
||||
else
|
||||
{
|
||||
base.Handle = Messaging.IntPtr_objc_msgSendSuper_IntPtr(base.SuperHandle, Selector.InitWithCoder, coder.Handle);
|
||||
}
|
||||
}
|
||||
|
||||
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
||||
public NSPathCellDelegate(NSObjectFlag t)
|
||||
: base(t)
|
||||
{
|
||||
}
|
||||
|
||||
[EditorBrowsable(EditorBrowsableState.Advanced)]
|
||||
public NSPathCellDelegate(IntPtr handle)
|
||||
: base(handle)
|
||||
{
|
||||
}
|
||||
|
||||
[Export("pathCell:willDisplayOpenPanel:")]
|
||||
public virtual void WillDisplayOpenPanel(NSPathCell pathCell, NSOpenPanel openPanel)
|
||||
{
|
||||
throw new You_Should_Not_Call_base_In_This_Method();
|
||||
}
|
||||
|
||||
[Export("pathCell:willPopUpMenu:")]
|
||||
public virtual void WillPopupMenu(NSPathCell pathCell, NSMenu menu)
|
||||
{
|
||||
throw new You_Should_Not_Call_base_In_This_Method();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user