efl/src/lib/evas/canvas/efl_canvas_surface_x11.eo

29 lines
729 B
Plaintext

struct Efl.Canvas.Surface.X11_Pixmap
{
[[The type used by @Efl.Canvas.Surface.native_buffer.]]
visual: void_ptr; [[X11 Visual for this Pixmap.]]
pixmap: ulong; [[X11 Pixmap ID.]]
}
class Efl.Canvas.Surface.X11 (Efl.Object, Efl.Canvas.Surface)
{
[[Native X11 surface for Efl canvas]]
methods {
@property pixmap {
[[This is a helper for @Efl.Canvas.Surface.native_buffer.]]
get {}
set { return: bool; }
values {
visual: void_ptr; [[X11 Visual for this Pixmap.]]
pixmap: ulong; [[X11 Pixmap ID.]]
}
}
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
Efl.Canvas.Surface.native_buffer.set;
}
}