package sun.awt.X11;
import sun.misc.*;
import java.util.logging.*;
public class XExposeEvent extends XWrapperBase {
private Unsafe unsafe = XlibWrapper.unsafe;
private final boolean should_free_memory;
public static int getSize() { return 64; }
public int getDataSize() { return getSize(); }
long pData;
public long getPData() { return pData; }
public XExposeEvent(long addr) {
log.finest("Creating");
pData=addr;
should_free_memory = false;
}
public XExposeEvent() {
log.finest("Creating");
pData = unsafe.allocateMemory(getSize());
should_free_memory = true;
}
public void dispose() {
log.finest("Disposing");
if (should_free_memory) {
log.finest("freeing memory");
unsafe.freeMemory(pData);
}
}
public int get_type() { log.finest("");return (Native.getInt(pData+0)); }
public void set_type(int v) { log.finest(""); Native.putInt(pData+0, v); }
public long get_serial() { log.finest("");return (Native.getLong(pData+8)); }
public void set_serial(long v) { log.finest(""); Native.putLong(pData+8, v); }
public boolean get_send_event() { log.finest("");return (Native.getBool(pData+16)); }
public void set_send_event(boolean v) { log.finest(""); Native.putBool(pData+16, v); }
public long get_display() { log.finest("");return (Native.getLong(pData+24)); }
public void set_display(long v) { log.finest(""); Native.putLong(pData+24, v); }
public long get_window() { log.finest("");return (Native.getLong(pData+32)); }
public void set_window(long v) { log.finest(""); Native.putLong(pData+32, v); }
public int get_x() { log.finest("");return (Native.getInt(pData+40)); }
public void set_x(int v) { log.finest(""); Native.putInt(pData+40, v); }
public int get_y() { log.finest("");return (Native.getInt(pData+44)); }
public void set_y(int v) { log.finest(""); Native.putInt(pData+44, v); }
public int get_width() { log.finest("");return (Native.getInt(pData+48)); }
public void set_width(int v) { log.finest(""); Native.putInt(pData+48, v); }
public int get_height() { log.finest("");return (Native.getInt(pData+52)); }
public void set_height(int v) { log.finest(""); Native.putInt(pData+52, v); }
public int get_count() { log.finest("");return (Native.getInt(pData+56)); }
public void set_count(int v) { log.finest(""); Native.putInt(pData+56, v); }
String getName() {
return "XExposeEvent";
}
String getFieldsAsString() {
String ret="";
ret += ""+"type = " + XlibWrapper.eventToString[get_type()] +", ";
ret += ""+"serial = " + get_serial() +", ";
ret += ""+"send_event = " + get_send_event() +", ";
ret += ""+"display = " + get_display() +", ";
ret += ""+"window = " + getWindow(get_window()) + ", ";
ret += ""+"x = " + get_x() +", ";
ret += ""+"y = " + get_y() +", ";
ret += ""+"width = " + get_width() +", ";
ret += ""+"height = " + get_height() +", ";
ret += ""+"count = " + get_count() +", ";
return ret;
}
}