typo: replace 'wibox' with 'context' where relevant

Closes https://github.com/awesomeWM/awesome/pull/613.
This commit is contained in:
Emmanuel Lepage Vallee 2015-12-29 05:17:52 -05:00 committed by Daniel Hahler
parent 9fec4f71bc
commit bd8e2d2ca8
3 changed files with 11 additions and 11 deletions

View File

@ -19,7 +19,7 @@ local mirror = { mt = {} }
function mirror:layout(context, cr, width, height) function mirror:layout(context, cr, width, height)
if not self.widget then return end if not self.widget then return end
if not self.horizontal and not self.vertical then if not self.horizontal and not self.vertical then
base.draw_widget(wibox, cr, self.widget, 0, 0, width, height) base.draw_widget(context, cr, self.widget, 0, 0, width, height)
return return
end end

View File

@ -33,7 +33,7 @@ function background:draw(context, cr, width, height)
end end
--- Prepare drawing the children of this widget --- Prepare drawing the children of this widget
function background:before_draw_children(wibox, cr, width, height) function background:before_draw_children(context, cr, width, height)
if self.foreground then if self.foreground then
cr:set_source(self.foreground) cr:set_source(self.foreground)
end end

View File

@ -135,7 +135,7 @@ end
-- `:fit` directly, but always through this function! -- `:fit` directly, but always through this function!
-- @param parent The parent widget which requests this information. -- @param parent The parent widget which requests this information.
-- @param context The context in which we are fit. -- @param context The context in which we are fit.
-- @param widget The widget to fit (this uses widget:fit(width, height)). -- @param widget The widget to fit (this uses widget:fit(context, width, height)).
-- @param width The available width for the widget -- @param width The available width for the widget
-- @param height The available height for the widget -- @param height The available height for the widget
-- @return The width and height that the widget wants to use -- @return The width and height that the widget wants to use
@ -308,7 +308,7 @@ will not be able to draw outside of the area that was registered for the widget
by the layout that placed this widget. You should not call `cr:reset_clip()`, as by the layout that placed this widget. You should not call `cr:reset_clip()`, as
redraws will not be handled correctly in this case. redraws will not be handled correctly in this case.
function widget:draw(wibox, cr, width, height) function widget:draw(context, cr, width, height)
cr:move_to(0, 0) cr:move_to(0, 0)
cr:line_to(width, height) cr:line_to(width, height)
cr:move_to(0, height) cr:move_to(0, height)
@ -361,10 +361,10 @@ which children are drawn, but they should not cause the drawing to cover a
different area. As an example, these functions can be used to draw children different area. As an example, these functions can be used to draw children
translucently: translucently:
function widget:before_draw_children(wibox, cr, width, height) function widget:before_draw_children(context, cr, width, height)
cr:push_group() cr:push_group()
end end
function widget:after_draw_children(wibox, cr, width, height) function widget:after_draw_children(context, cr, width, height)
cr:pop_group_to_source() cr:pop_group_to_source()
cr:paint_with_alpha(0.5) cr:paint_with_alpha(0.5)
end end
@ -372,17 +372,17 @@ translucently:
In pseudo-code, the call sequence for the drawing callbacks during a redraw In pseudo-code, the call sequence for the drawing callbacks during a redraw
looks like this: looks like this:
widget:draw(wibox, cr, width, height) widget:draw(context, cr, width, height)
widget:before_draw_children(wibox, cr, width, height) widget:before_draw_children(context, cr, width, height)
for child do for child do
widget:before_draw_child(wibox, cr, child_index, child, width, height) widget:before_draw_child(context, cr, child_index, child, width, height)
cr:save() cr:save()
-- Draw child and all of its children recursively, taking into account the -- Draw child and all of its children recursively, taking into account the
-- position and size given to base.place_widget_at() in :layout(). -- position and size given to base.place_widget_at() in :layout().
cr:restore() cr:restore()
widget:after_draw_child(wibox, cr, child_index, child, width, height) widget:after_draw_child(context, cr, child_index, child, width, height)
end end
widget:after_draw_children(wibox, cr, width, height) widget:after_draw_children(context, cr, width, height)
@param proxy If this is set, the returned widget will be a proxy for this @param proxy If this is set, the returned widget will be a proxy for this
widget. It will be equivalent to this widget. This means it widget. It will be equivalent to this widget. This means it