Structure.ByReference, Structure.ByValue, Structure.StructField
Modifier and Type | Field and Description |
---|---|
int |
arc_mode |
NativeLong |
background |
int |
cap_style |
X11.Pixmap |
clip_mask |
int |
clip_x_origin |
int |
clip_y_origin |
int |
dash_offset |
byte |
dashes |
static List<String> |
FIELDS |
int |
fill_rule |
int |
fill_style |
X11.Font |
font |
NativeLong |
foreground |
int |
function |
boolean |
graphics_exposures |
int |
join_style |
int |
line_style |
int |
line_width |
NativeLong |
plane_mask |
X11.Pixmap |
stipple |
int |
subwindow_mode |
X11.Pixmap |
tile |
int |
ts_x_origin |
int |
ts_y_origin |
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor and Description |
---|
XGCValues() |
Modifier and Type | Method and Description |
---|---|
protected List<String> |
getFieldOrder()
Return this Structure's field names in their proper order.
|
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
public int function
public NativeLong plane_mask
public NativeLong foreground
public NativeLong background
public int line_width
public int line_style
public int cap_style
public int join_style
public int fill_style
public int fill_rule
public int arc_mode
public X11.Pixmap tile
public X11.Pixmap stipple
public int ts_x_origin
public int ts_y_origin
public X11.Font font
public int subwindow_mode
public boolean graphics_exposures
public int clip_x_origin
public int clip_y_origin
public X11.Pixmap clip_mask
public int dash_offset
public byte dashes
protected List<String> getFieldOrder()
Structure
protected List getFieldOrder() {
return Arrays.asList(new String[] { ... });
}
IMPORTANT
When deriving from an existing Structure subclass, ensure that
you augment the list provided by the superclass, e.g.
protected List getFieldOrder() {
List fields = new ArrayList(super.getFieldOrder());
fields.addAll(Arrays.asList(new String[] { ... }));
return fields;
}
Field order must be explicitly indicated, since the
field order as returned by Class.getFields()
is not
guaranteed to be predictable.getFieldOrder
in class Structure