system.drawing.Rectangle Maven / Gradle / Ivy
/*
* MIT License
*
* Copyright (c) 2024 MASES s.r.l.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/**************************************************************************************
*
* This code was generated from a template using JCOReflector v. 1.14.0.0
*
* Manual changes to this file may cause unexpected behavior in your application.
* Manual changes to this file will be overwritten if the code is regenerated.
*
*************************************************************************************/
package system.drawing;
import org.mases.jcobridge.*;
import org.mases.jcobridge.netreflection.*;
import java.util.ArrayList;
// Import section
import system.ValueType;
import system.drawing.Point;
import system.drawing.Size;
import system.drawing.Rectangle;
import system.drawing.RectangleF;
/**
* The base .NET class managing System.Drawing.Rectangle, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a.
*
*
* .NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Drawing.Rectangle
*
*
* Powered by JCOBridge: more info at https://www.jcobridge.com
*
* @author MASES s.r.l https://masesgroup.com
* @version 1.14.0.0
*/
public class Rectangle extends ValueType {
/**
* Fully assembly qualified name: System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
*/
public static final String assemblyFullName = "System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a";
/**
* Assembly name: System.Drawing
*/
public static final String assemblyShortName = "System.Drawing";
/**
* Qualified class name: System.Drawing.Rectangle
*/
public static final String className = "System.Drawing.Rectangle";
static JCOBridge bridge = JCOBridgeInstance.getInstance(assemblyFullName);
/**
* The type managed from JCOBridge. See {@link JCType}
*/
public static JCType classType = createType();
static JCEnum enumInstance = null;
JCObject classInstance = null;
static JCType createType() {
try {
String classToCreate = className + ", "
+ (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName);
if (JCOReflector.getDebug())
JCOReflector.writeLog("Creating %s", classToCreate);
JCType typeCreated = bridge.GetType(classToCreate);
if (JCOReflector.getDebug())
JCOReflector.writeLog("Created: %s",
(typeCreated != null) ? typeCreated.toString() : "Returned null value");
return typeCreated;
} catch (JCException e) {
JCOReflector.writeLog(e);
return null;
}
}
void addReference(String ref) throws Throwable {
try {
bridge.AddReference(ref);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
/**
* Internal constructor. Use with caution
*/
public Rectangle(java.lang.Object instance) throws Throwable {
super(instance);
if (instance instanceof JCObject) {
classInstance = (JCObject) instance;
} else
throw new Exception("Cannot manage object, it is not a JCObject");
}
public String getJCOAssemblyName() {
return assemblyFullName;
}
public String getJCOClassName() {
return className;
}
public String getJCOObjectName() {
return className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName);
}
public java.lang.Object getJCOInstance() {
return classInstance;
}
public void setJCOInstance(JCObject instance) {
classInstance = instance;
super.setJCOInstance(classInstance);
}
public JCType getJCOType() {
return classType;
}
/**
* Try to cast the {@link IJCOBridgeReflected} instance into {@link Rectangle}, a cast assert is made to check if types are compatible.
* @param from {@link IJCOBridgeReflected} instance to be casted
* @return {@link Rectangle} instance
* @throws java.lang.Throwable in case of error during cast operation
*/
public static Rectangle cast(IJCOBridgeReflected from) throws Throwable {
NetType.AssertCast(classType, from);
return new Rectangle(from.getJCOInstance());
}
// Constructors section
public Rectangle() throws Throwable {
}
public Rectangle(int x, int y, int width, int height) throws Throwable {
try {
// add reference to assemblyName.dll file
addReference(JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName);
setJCOInstance((JCObject)classType.NewObject(x, y, width, height));
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public Rectangle(Point location, Size size) throws Throwable {
try {
// add reference to assemblyName.dll file
addReference(JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName);
setJCOInstance((JCObject)classType.NewObject(location == null ? null : location.getJCOInstance(), size == null ? null : size.getJCOInstance()));
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
// Methods section
public boolean Contains(int x, int y) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("Contains", x, y);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean Contains(Point pt) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("Contains", pt == null ? null : pt.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean Contains(Rectangle rect) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("Contains", rect == null ? null : rect.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean IntersectsWith(Rectangle rect) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("IntersectsWith", rect == null ? null : rect.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public static Rectangle Ceiling(RectangleF value) throws Throwable {
if (classType == null)
throw new UnsupportedOperationException("classType is null.");
try {
JCObject objCeiling = (JCObject)classType.Invoke("Ceiling", value == null ? null : value.getJCOInstance());
return new Rectangle(objCeiling);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public static Rectangle FromLTRB(int left, int top, int right, int bottom) throws Throwable {
if (classType == null)
throw new UnsupportedOperationException("classType is null.");
try {
JCObject objFromLTRB = (JCObject)classType.Invoke("FromLTRB", left, top, right, bottom);
return new Rectangle(objFromLTRB);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public static Rectangle Inflate(Rectangle rect, int x, int y) throws Throwable {
if (classType == null)
throw new UnsupportedOperationException("classType is null.");
try {
JCObject objInflate = (JCObject)classType.Invoke("Inflate", rect == null ? null : rect.getJCOInstance(), x, y);
return new Rectangle(objInflate);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public static Rectangle Intersect(Rectangle a, Rectangle b) throws Throwable {
if (classType == null)
throw new UnsupportedOperationException("classType is null.");
try {
JCObject objIntersect = (JCObject)classType.Invoke("Intersect", a == null ? null : a.getJCOInstance(), b == null ? null : b.getJCOInstance());
return new Rectangle(objIntersect);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public static Rectangle Round(RectangleF value) throws Throwable {
if (classType == null)
throw new UnsupportedOperationException("classType is null.");
try {
JCObject objRound = (JCObject)classType.Invoke("Round", value == null ? null : value.getJCOInstance());
return new Rectangle(objRound);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public static Rectangle Truncate(RectangleF value) throws Throwable {
if (classType == null)
throw new UnsupportedOperationException("classType is null.");
try {
JCObject objTruncate = (JCObject)classType.Invoke("Truncate", value == null ? null : value.getJCOInstance());
return new Rectangle(objTruncate);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public static Rectangle Union(Rectangle a, Rectangle b) throws Throwable {
if (classType == null)
throw new UnsupportedOperationException("classType is null.");
try {
JCObject objUnion = (JCObject)classType.Invoke("Union", a == null ? null : a.getJCOInstance(), b == null ? null : b.getJCOInstance());
return new Rectangle(objUnion);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void Inflate(int width, int height) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("Inflate", width, height);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void Inflate(Size size) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("Inflate", size == null ? null : size.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void Intersect(Rectangle rect) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("Intersect", rect == null ? null : rect.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void Offset(int x, int y) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("Offset", x, y);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void Offset(Point pos) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("Offset", pos == null ? null : pos.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
// Properties section
public boolean getIsEmpty() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Get("IsEmpty");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getBottom() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("Bottom");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getHeight() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("Height");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setHeight(int Height) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("Height", Height);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getLeft() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("Left");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getRight() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("Right");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getTop() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("Top");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getWidth() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("Width");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setWidth(int Width) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("Width", Width);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getX() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("X");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setX(int X) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("X", X);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getY() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("Y");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setY(int Y) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("Y", Y);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public Point getLocation() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("Location");
return new Point(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setLocation(Point Location) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("Location", Location == null ? null : Location.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public Size getSize() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("Size");
return new Size(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setSize(Size Size) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("Size", Size == null ? null : Size.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
// Instance Events section
}