[][src]Struct orbtk::window::WindowRenderer

pub struct WindowRenderer<'a> { /* fields omitted */ }

Methods

impl<'a> WindowRenderer<'a>[src]

pub fn new(
    inner: &'a mut InnerWindow,
    font: &'a Option<Font>
) -> WindowRenderer<'a>
[src]

Trait Implementations

impl<'a> Drop for WindowRenderer<'a>[src]

impl<'a> Renderer for WindowRenderer<'a>[src]

fn pixel(&mut self, x: i32, y: i32, color: Color)[src]

Draw a pixel

fn arc(&mut self, x0: i32, y0: i32, radius: i32, parts: u8, color: Color)[src]

Draw a piece of an arc. Negative radius will fill in the inside

fn circle(&mut self, x0: i32, y0: i32, radius: i32, color: Color)[src]

Draw a circle. Negative radius will fill in the inside

fn line4points(&mut self, x0: i32, y0: i32, x: i32, y: i32, color: Color)[src]

fn line(&mut self, argx1: i32, argy1: i32, argx2: i32, argy2: i32, color: Color)[src]

Draw a line

fn lines(&mut self, points: &[[i32; 2]], color: Color)[src]

fn draw_path_stroke(&mut self, graphicspath: GraphicsPath, color: Color)[src]

Draw a path (GraphicsPath)

fn set(&mut self, color: Color)[src]

Set entire window to a color

fn clear(&mut self)[src]

Sets the whole window to black

fn rect(&mut self, x: i32, y: i32, w: u32, h: u32, color: Color)[src]

fn box_blur(&mut self, x: i32, y: i32, w: u32, h: u32, r: i32)[src]

fn box_shadow(
    &mut self,
    x: i32,
    y: i32,
    w: u32,
    h: u32,
    offset_x: i32,
    offset_y: i32,
    r: i32,
    color: Color
)
[src]

fn image(&mut self, start_x: i32, start_y: i32, w: u32, h: u32, data: &[Color])[src]

Display an image

fn image_legacy(
    &mut self,
    start_x: i32,
    start_y: i32,
    w: u32,
    h: u32,
    data: &[Color]
)
[src]

fn image_over(&mut self, start: i32, image_data: &[Color])[src]

Display an image overwriting a portion of window starting at given line : very quick!!

fn image_opaque(
    &mut self,
    start_x: i32,
    start_y: i32,
    w: u32,
    h: u32,
    image_data: &[Color]
)
[src]

Display an image using non transparent method

fn image_fast(
    &mut self,
    start_x: i32,
    start_y: i32,
    w: u32,
    h: u32,
    image_data: &[Color]
)
[src]

fn linear_gradient(
    &mut self,
    rect_x: i32,
    rect_y: i32,
    rect_width: u32,
    rect_height: u32,
    start_x: i32,
    start_y: i32,
    end_x: i32,
    end_y: i32,
    start_color: Color,
    end_color: Color
)
[src]

Draw a linear gradient in a rectangular region

fn rounded_rect(
    &mut self,
    x: i32,
    y: i32,
    w: u32,
    h: u32,
    radius: u32,
    filled: bool,
    color: Color
)
[src]

Draw a rect with rounded corners

fn wu_line(&mut self, x0: i32, y0: i32, x1: i32, y1: i32, color: Color)[src]

Draws antialiased line

fn wu_circle(&mut self, x0: i32, y0: i32, radius: i32, color: Color)[src]

Draws antialiased circle

fn getpixel(&self, x: i32, y: i32) -> Color[src]

Gets pixel color at x,y position

Auto Trait Implementations

impl<'a> !Send for WindowRenderer<'a>

impl<'a> !Sync for WindowRenderer<'a>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.