/* * Copyright (C) 2013-2015 RoboVM AB * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.robovm.apple.coreimage; /*<imports>*/ import java.io.*; import java.nio.*; import java.util.*; import org.robovm.objc.*; import org.robovm.objc.annotation.*; import org.robovm.objc.block.*; import org.robovm.rt.*; import org.robovm.rt.annotation.*; import org.robovm.rt.bro.*; import org.robovm.rt.bro.annotation.*; import org.robovm.rt.bro.ptr.*; import org.robovm.apple.foundation.*; import org.robovm.apple.corefoundation.*; import org.robovm.apple.coregraphics.*; import org.robovm.apple.opengles.*; import org.robovm.apple.corevideo.*; import org.robovm.apple.imageio.*; import org.robovm.apple.uikit.*; /*</imports>*/ /*<javadoc>*/ /*</javadoc>*/ /*<annotations>*/@Library("CoreImage") @NativeClass/*</annotations>*/ /*<visibility>*/public/*</visibility>*/ class /*<name>*/CIColor/*</name>*/ extends /*<extends>*/NSObject/*</extends>*/ /*<implements>*/implements NSCoding/*</implements>*/ { /*<ptr>*/public static class CIColorPtr extends Ptr<CIColor, CIColorPtr> {}/*</ptr>*/ /*<bind>*/static { ObjCRuntime.bind(CIColor.class); }/*</bind>*/ /*<constants>*//*</constants>*/ /*<constructors>*/ public CIColor() {} protected CIColor(SkipInit skipInit) { super(skipInit); } public CIColor(NSCoder aDecoder) { super((SkipInit) null); initObject(init(aDecoder)); } /*</constructors>*/ public CIColor(double r, double g, double b, double a) { super(init(r, g, b, a)); } public CIColor(double r, double g, double b) { super(init(r, g, b)); } public CIColor(String representation) { super(init(representation)); } /*<properties>*/ /*</properties>*/ /*<members>*//*</members>*/ public double[] getComponentsD() { return components().toDoubleArray((int) getNumberOfComponents()); } public float[] getComponentsF() { return components().toFloatArray((int) getNumberOfComponents()); } /* UIKit extensions */ @WeaklyLinked public static CIColor fromUIColor(org.robovm.apple.uikit.UIColor color) { return CIColorExtensions.create(color); } /*<methods>*/ @Method(selector = "numberOfComponents") public native @MachineSizedUInt long getNumberOfComponents(); @Method(selector = "components") protected native MachineSizedFloatPtr components(); @Method(selector = "alpha") public native @MachineSizedFloat double getAlpha(); @Method(selector = "colorSpace") public native CGColorSpace getColorSpace(); @Method(selector = "red") public native @MachineSizedFloat double getRed(); @Method(selector = "green") public native @MachineSizedFloat double getGreen(); @Method(selector = "blue") public native @MachineSizedFloat double getBlue(); @Method(selector = "stringRepresentation") public native String getStringRepresentation(); @Method(selector = "colorWithCGColor:") protected static native @Pointer long init(CGColor c); @Method(selector = "colorWithRed:green:blue:alpha:") protected static native @Pointer long init(@MachineSizedFloat double r, @MachineSizedFloat double g, @MachineSizedFloat double b, @MachineSizedFloat double a); @Method(selector = "colorWithRed:green:blue:") protected static native @Pointer long init(@MachineSizedFloat double r, @MachineSizedFloat double g, @MachineSizedFloat double b); @Method(selector = "colorWithString:") protected static native @Pointer long init(String representation); @Method(selector = "encodeWithCoder:") public native void encode(NSCoder coder); @Method(selector = "initWithCoder:") protected native @Pointer long init(NSCoder aDecoder); /*</methods>*/ }