|
"DTD/xhtml1-strict.dtd">
aa
aa=
angle
angle=
anti_alias
anti_alias=
best_visual
blend
blend=
cliprect
cliprect=
cmap
cmap=
cmod
cmod=
color
color=
color_modifier
color_modifier=
colormap
colormap=
current
dir
dir=
direction
direction=
display
display=
dither
dither=
dither_mask
dither_mask=
drawable
drawable=
encoding
encoding=
font
font=
get
get_angle
get_anti_alias
get_best_visual
get_blend
get_cliprect
get_cmap
get_color
get_color_modifier
get_colormap
get_direction
get_display
get_dither
get_dither_mask
get_drawable
get_encoding
get_font
get_gradient
get_image
get_mask
get_operation
get_progress_granularity
get_ttf_encoding
get_visual
get_visual
gradient
gradient=
image
image=
initialize
mask
mask=
new
op
op=
operation
operation=
pop
progress_granularity
progress_granularity=
push
set_angle
set_anti_alias
set_blend
set_cliprect
set_cmap
set_color
set_color_modifier
set_colormap
set_direction
set_display
set_dither
set_dither_mask
set_drawable
set_encoding
set_font
set_gradient
set_image
set_mask
set_operation
set_progress_granularity
set_ttf_encoding
set_visual
visual
visual
visual=
Pop the top context off the context stack. Example: ctx = Imlib2::Context.pop
Return the current context. Example: ctx = Imlib2::Context.get
Return the current context. Example: ctx = Imlib2::Context.get
Imlib2::Context constructor. Currently just a placeholder
Push this context onto the context stack. Example: ctx.push
Set the dither flag. Example: ctx.dither = true
Set the dither flag. Example: ctx.dither = true
Get the dither flag. Example: if ctx.dither puts 'dither enabled.' end
Get the dither flag. Example: if ctx.dither puts 'dither enabled.' end
Set the blend flag. Example: ctx.blend = true
Set the blend flag. Example: ctx.blend = true
Get the blend flag. Example: if ctx.blend puts 'blend enabled.' end
Get the blend flag. Example: if ctx.blend puts 'blend enabled.' end
Set the current operation (Imlib2::Op or Imlib2::Operation). Example: ctx.operation = Imlib2::Op::COPY
Set the current operation (Imlib2::Op or Imlib2::Operation). Example: ctx.operation = Imlib2::Op::COPY
Set the current operation (Imlib2::Op or Imlib2::Operation). Example: ctx.operation = Imlib2::Op::COPY
Get the current operation (Imlib2::Op or Imlib2::Operation). Example: if ctx.op == Imlib2::Op::COPY puts 'copy operation' end
Get the current operation (Imlib2::Op or Imlib2::Operation). Example: if ctx.op == Imlib2::Op::COPY puts 'copy operation' end
Get the current operation (Imlib2::Op or Imlib2::Operation). Example: if ctx.op == Imlib2::Op::COPY puts 'copy operation' end
Set the current font direction (Imlib2::Dir or Imlib2::Direction). Example: ctx.direction = Imlib2::Direction::LEFT
Set the current font direction (Imlib2::Dir or Imlib2::Direction). Example: ctx.direction = Imlib2::Direction::LEFT
Set the current font direction (Imlib2::Dir or Imlib2::Direction). Example: ctx.direction = Imlib2::Direction::LEFT
Get the current font direction (Imlib2::Dir or Imlib2::Direction). Example: if ctx.direction != Imlib2::Direction::RIGHT puts 'drawing funny text' end
Get the current font direction (Imlib2::Dir or Imlib2::Direction). Example: if ctx.direction != Imlib2::Direction::RIGHT puts 'drawing funny text' end
Get the current font direction (Imlib2::Dir or Imlib2::Direction). Example: if ctx.direction != Imlib2::Direction::RIGHT puts 'drawing funny text' end
Set the text drawing angle. Example: ctx.angle = 76.8
Set the text drawing angle. Example: ctx.angle = 76.8
Get the text drawing angle. Example: if ctx.dir == Imlib2::Direction::ANGLE puts 'the current font angle is ' << ctx.angle end
Get the text drawing angle. Example: if ctx.dir == Imlib2::Direction::ANGLE puts 'the current font angle is ' << ctx.angle end
Set the progress callback granularity. This function is not useful at the moment since you cannot specify progress callbacks from within ruby (this is a TODO item). Example: ctx.progress_granularity = 10
Set the progress callback granularity. This function is not useful at the moment since you cannot specify progress callbacks from within ruby (this is a TODO item). Example: ctx.progress_granularity = 10
Get the progress callback granularity. This function is not useful at the moment since you cannot specify progress callbacks from within Ruby (this is a TODO item). Example: granularity = ctx.progress_granularity
Get the progress callback granularity. This function is not useful at the moment since you cannot specify progress callbacks from within Ruby (this is a TODO item). Example: granularity = ctx.progress_granularity
Set the current image (Imlib2::Image). Note that this function is not useful at the moment since all image instance methods blindly blow away the image and color context. So you cannot safely mix image context and image instance methods. Example: ctx.image = image
Set the current image (Imlib2::Image). Note that this function is not useful at the moment since all image instance methods blindly blow away the image and color context. So you cannot safely mix image context and image instance methods. Example: ctx.image = image
Get the current image (Imlib2::Image). Note that this function is not useful at the moment since all image instance methods blindly blow away the image and color context. So you cannot safely mix image context and image instance methods. Example: im = ctx.image
Get the current image (Imlib2::Image). Note that this function is not useful at the moment since all image instance methods blindly blow away the image and color context. So you cannot safely mix image context and image instance methods. Example: im = ctx.image
Set the cliprect. Example: ctx.cliprect = [10, 10, 100, 100]
Set the cliprect. Example: ctx.cliprect = [10, 10, 100, 100]
Get the cliprect. Example: x, y, w, h = ctx.cliprect
Get the cliprect. Example: x, y, w, h = ctx.cliprect
Get the current TrueType Font Encoding. Example: if ctx.encoding == Imlib2::Encoding::ISO_8859_1 puts 'using ISO-8859-1 encoding' end
Get the current TrueType Font Encoding. Example: if ctx.encoding == Imlib2::Encoding::ISO_8859_1 puts 'using ISO-8859-1 encoding' end
Get the current TrueType Font Encoding. Example: if ctx.encoding == Imlib2::Encoding::ISO_8859_1 puts 'using ISO-8859-1 encoding' end
Set the current X11 Display. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: context.set_display display context.display = display
Set the current X11 Display. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: context.set_display display context.display = display
Get the current X11 Display. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: display = context.get_display display = context.display
Get the current X11 Display. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: display = context.get_display display = context.display
Set the current X11 Visual. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: context.set_visual visual context.visual = visual
Set the current X11 Visual. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: context.set_visual visual context.visual = visual
Get the current X11 Visual. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: visual = context.get_visual visual = context.visual
Get the current X11 Visual. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: visual = context.get_visual visual = context.visual
Set the current X11 Drawable. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: context.set_drawable drawable context.drawable = drawable
Set the current X11 Drawable. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: context.set_drawable drawable context.drawable = drawable
Get the current X11 Drawable. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: drawable = context.get_drawable drawable = context.drawable
Get the current X11 Drawable. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: drawable = context.get_drawable drawable = context.drawable
Set the current X11 Mask. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: context.set_mask mask context.mask = mask
Set the current X11 Mask. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: context.set_mask mask context.mask = mask
Get the current X11 Mask. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: mask = context.get_mask mask = context.mask
Get the current X11 Mask. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: mask = context.get_mask mask = context.mask
Get the current X11 Visual. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: visual = context.get_visual visual = context.visual
Get the current X11 Visual. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: visual = context.get_visual visual = context.visual
Get the current X11 Visual. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: visual = context.get_visual visual = context.visual
Get the current X11 Visual. Note: This method is not available unless Imlib2-Ruby was compiled with X11 support. You can check the constant Imlib2::X11_SUPPORT to see if X11 support is available. Examples: visual = context.get_visual visual = context.visual |