コード例 #1
0
		// Do not actually export because NSObjectFlag is not exportable.
		// The Objective C method already exists. This is just to allow
		// access on the managed side via the static method.
		//[Export ("initForIncrementalLoad")]
		private NSBitmapImageRep (NSObjectFlag a, NSObjectFlag b) : base (a)
		{
			if (IsDirectBinding) {
				Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, selInitForIncrementalLoad);
			} else {
				Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, selInitForIncrementalLoad);
			}
		}
コード例 #2
0
ファイル: NSWindow.cs プロジェクト: ash23/monomac
		// Do not actually export because NSObjectFlag is not exportable.
		// The Objective C method already exists. This is just to allow
		// access on the managed side via the static method.
		//[Export ("initWithWindowRef:")]
		private NSWindow (IntPtr windowRef, NSObjectFlag x) : base (NSObjectFlag.Empty)
		{
			if (IsDirectBinding) {
				Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSend (this.Handle, selInitWithWindowRef);
			} else {
				Handle = MonoMac.ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper (this.SuperHandle, selInitWithWindowRef);
			}
		}
コード例 #3
0
 public XTextFieldCell(NSObjectFlag t)
     : base(t)
 {
 }
コード例 #4
0
 public XTableRowView(NSObjectFlag t)
     : base(t)
 {
 }
コード例 #5
0
 public XImageView(NSObjectFlag t)
     : base(t)
 {
 }
コード例 #6
0
ファイル: CLRegion.g.cs プロジェクト: sichy/monomac
		public CLRegion (NSObjectFlag t) : base (t) {}
コード例 #7
0
		public CLLocationManagerDelegate (NSObjectFlag t) : base (t) {}
コード例 #8
0
 // This is just here as a constructor chain that can will
 // only do Init at the most derived class.
 public NSObject(NSObjectFlag x)
 {
     AllocIfNeeded();
     InitializeObject();
 }
コード例 #9
0
ファイル: SessionsView.cs プロジェクト: pascalfr/MPfm
 public SessionsView(NSObjectFlag t) : base(t)
 {
     Initialize();
 }
コード例 #10
0
ファイル: CLLocation.g.cs プロジェクト: sichy/monomac
		public CLLocation (NSObjectFlag t) : base (t) {}
コード例 #11
0
		public LoginItemManager (NSObjectFlag t) : base (t) {}
コード例 #12
0
        // This is just here as a constructor chain that can will
        // only do Init at the most derived class.
        public NSObject(NSObjectFlag x)
        {
            bool alloced = AllocIfNeeded();

            InitializeObject(alloced);
        }
コード例 #13
0
ファイル: CLHeading.g.cs プロジェクト: sichy/monomac
		public CLHeading (NSObjectFlag t) : base (t) {}
コード例 #14
0
ファイル: VitalsBar.cs プロジェクト: joemcbride/outlander
 public VitalsBar(NSObjectFlag rect)
     : base(rect)
 {
 }
コード例 #15
0
ファイル: NSObject.cs プロジェクト: elmarchu/monomac
 // This is just here as a constructor chain that can will
 // only do Init at the most derived class.
 public NSObject(NSObjectFlag x)
 {
     bool alloced = AllocIfNeeded ();
     InitializeObject (alloced);
 }
コード例 #16
0
ファイル: NSObject.cs プロジェクト: roblillack/monomac
		// This is just here as a constructor chain that can will
		// only do Init at the most derived class.
		public NSObject (NSObjectFlag x)
		{
			AllocIfNeeded ();
			InitializeObject ();
		}
コード例 #17
0
ファイル: NSObject.cs プロジェクト: dufoli/monomac
		// This is just here as a constructor chain that can will
		// only do Init at the most derived class.
		public NSObject (NSObjectFlag x) : this ()
		{
		}
コード例 #18
0
		public NSAutoreleasePool (NSObjectFlag t) : base (t) {}
コード例 #19
0
ファイル: CLLocationManager.g.cs プロジェクト: sichy/monomac
		public CLLocationManager (NSObjectFlag t) : base (t) {}