awesome/lib/wibox/widget/progressbar.lua

228 lines
6.5 KiB
Lua
Raw Normal View History

2016-05-23 07:22:35 +02:00
---------------------------------------------------------------------------
--- A progressbar widget.
--
-- By default, this widget will take all the available size. To prevent this,
-- a `wibox.container.constraint` widget or the `forced_width`/`forced_height`
-- properties have to be used.
--
--@DOC_wibox_widget_defaults_progressbar_EXAMPLE@
2016-05-23 07:22:35 +02:00
-- @author Julien Danjou <julien@danjou.info>
-- @copyright 2009 Julien Danjou
-- @release @AWESOME_VERSION@
-- @classmod wibox.widget.progressbar
---------------------------------------------------------------------------
local setmetatable = setmetatable
local ipairs = ipairs
local math = math
local util = require("awful.util")
2016-05-23 07:22:35 +02:00
local base = require("wibox.widget.base")
local color = require("gears.color")
2016-05-27 07:26:46 +02:00
local beautiful = require("beautiful")
2016-05-23 07:22:35 +02:00
local progressbar = { mt = {} }
--- The progressbar border color.
2016-05-23 07:22:35 +02:00
-- If the value is nil, no border will be drawn.
--
-- @property border_color
-- @tparam gears.color color The border color to set.
2016-05-23 07:22:35 +02:00
--- The progressbar foreground color.
2016-05-23 07:22:35 +02:00
--
-- @property color
-- @tparam gears.color color The progressbar color.
2016-05-23 07:22:35 +02:00
--- The progressbar background color.
2016-05-23 07:22:35 +02:00
--
-- @property background_color
-- @tparam gears.color color The progressbar background color.
2016-05-23 07:22:35 +02:00
--- Set the progressbar to draw vertically.
-- This doesn't do anything anymore, use a `wibox.container.rotate` widget.
-- @deprecated set_vertical
-- @tparam boolean vertical
2016-05-23 07:22:35 +02:00
--- The progressbar to draw ticks. Default is false.
2016-05-23 07:22:35 +02:00
--
-- @property ticks
-- @param boolean
2016-05-23 07:22:35 +02:00
--- The progressbar ticks gap.
2016-05-23 07:22:35 +02:00
--
-- @property ticks_gap
-- @param number
2016-05-23 07:22:35 +02:00
--- The progressbar ticks size.
2016-05-23 07:22:35 +02:00
--
-- @property ticks_size
-- @param number
2016-05-23 07:22:35 +02:00
--- The maximum value the progressbar should handle.
2016-05-23 07:22:35 +02:00
--
-- @property max_value
-- @param number
2016-05-23 07:22:35 +02:00
2016-05-27 07:26:46 +02:00
--- The progressbar background color.
2016-07-24 00:26:27 +02:00
-- @beautiful beautiful.progressbar_bg
2016-05-27 07:26:46 +02:00
--- The progressbar foreground color.
2016-07-24 00:26:27 +02:00
-- @beautiful beautiful.progressbar_fg
2016-05-27 07:26:46 +02:00
--- The progressbar border color.
2016-07-24 00:26:27 +02:00
-- @beautiful beautiful.progressbar_border_color
2016-05-27 07:26:46 +02:00
local properties = { "border_color", "color" , "background_color",
"value" , "max_value", "ticks",
"ticks_gap" , "ticks_size" }
2016-05-23 07:22:35 +02:00
function progressbar.draw(pbar, _, cr, width, height)
local ticks_gap = pbar._private.ticks_gap or 1
local ticks_size = pbar._private.ticks_size or 4
2016-05-23 07:22:35 +02:00
-- We want one pixel wide lines
cr:set_line_width(1)
local max_value = pbar._private.max_value
local value = math.min(max_value, math.max(0, pbar._private.value))
2016-05-23 07:22:35 +02:00
if value >= 0 then
value = value / max_value
end
local over_drawn_width = width
local over_drawn_height = height
local border_width = 0
local col = pbar._private.border_color or beautiful.progressbar_border_color
2016-05-27 07:26:46 +02:00
if col then
2016-05-23 07:22:35 +02:00
-- Draw border
cr:rectangle(0.5, 0.5, width - 1, height - 1)
2016-05-27 07:26:46 +02:00
cr:set_source(color(col))
2016-05-23 07:22:35 +02:00
cr:stroke()
over_drawn_width = width - 2 -- remove 2 for borders
over_drawn_height = height - 2 -- remove 2 for borders
border_width = 1
end
cr:rectangle(border_width, border_width,
over_drawn_width, over_drawn_height)
cr:set_source(color(pbar._private.color or beautiful.progressbar_fg or "#ff0000"))
2016-05-23 07:22:35 +02:00
cr:fill()
-- Cover the part that is not set with a rectangle
local rel_x = over_drawn_width * value
cr:rectangle(border_width + rel_x,
border_width,
over_drawn_width - rel_x,
over_drawn_height)
cr:set_source(color(pbar._private.background_color or "#000000aa"))
cr:fill()
if pbar._private.ticks then
for i=0, width / (ticks_size+ticks_gap)-border_width do
local rel_offset = over_drawn_width / 1 - (ticks_size+ticks_gap) * i
2016-05-23 07:22:35 +02:00
if rel_offset <= rel_x then
cr:rectangle(rel_offset,
border_width,
ticks_gap,
over_drawn_height)
2016-05-23 07:22:35 +02:00
end
end
cr:set_source(color(pbar._private.background_color or "#000000aa"))
2016-05-23 07:22:35 +02:00
cr:fill()
end
end
function progressbar:fit(_, width, height)
return width, height
2016-05-23 07:22:35 +02:00
end
--- Set the progressbar value.
-- @param value The progress bar value between 0 and 1.
function progressbar:set_value(value)
value = value or 0
self._private.value = value
2016-05-23 07:22:35 +02:00
self:emit_signal("widget::redraw_needed")
return self
end
function progressbar:set_max_value(max_value)
self._private.max_value = max_value
self:emit_signal("widget::redraw_needed")
end
2016-05-23 07:22:35 +02:00
--- Set the progressbar height.
-- This method is deprecated, it no longer do anything.
-- Use a `wibox.container.constraint` widget or `forced_height`.
2016-05-23 07:22:35 +02:00
-- @param height The height to set.
-- @deprecated set_height
function progressbar:set_height(height) --luacheck: no unused_args
util.deprecate("Use a `wibox.container.constraint` widget or forced_height")
2016-05-23 07:22:35 +02:00
end
--- Set the progressbar width.
-- This method is deprecated, it no longer do anything.
-- Use a `wibox.container.constraint` widget or `forced_width`.
2016-05-23 07:22:35 +02:00
-- @param width The width to set.
-- @deprecated set_width
function progressbar:set_width(width) --luacheck: no unused_args
util.deprecate("Use a `wibox.container.constraint` widget or forced_width")
2016-05-23 07:22:35 +02:00
end
-- Build properties function
for _, prop in ipairs(properties) do
if not progressbar["set_" .. prop] then
progressbar["set_" .. prop] = function(pbar, value)
pbar._private[prop] = value
2016-05-23 07:22:35 +02:00
pbar:emit_signal("widget::redraw_needed")
return pbar
end
end
end
function progressbar:set_vertical(value) --luacheck: no unused_args
util.deprecate("Use a `wibox.container.rotate` widget")
end
2016-05-23 07:22:35 +02:00
--- Create a progressbar widget.
-- @param args Standard widget() arguments. You should add width and height
-- key to set progressbar geometry.
-- @return A progressbar widget.
2016-05-23 08:54:01 +02:00
-- @function wibox.widget.progressbar
2016-05-23 07:22:35 +02:00
function progressbar.new(args)
args = args or {}
local pbar = base.make_widget(nil, nil, {
enable_properties = true,
})
2016-05-23 07:22:35 +02:00
pbar._private.width = args.width or 100
pbar._private.height = args.height or 20
pbar._private.value = 0
pbar._private.max_value = 1
2016-05-23 07:22:35 +02:00
util.table.crush(pbar, progressbar, true)
2016-05-23 07:22:35 +02:00
return pbar
end
function progressbar.mt:__call(...)
return progressbar.new(...)
end
--@DOC_widget_COMMON@
--@DOC_object_COMMON@
2016-05-23 07:22:35 +02:00
return setmetatable(progressbar, progressbar.mt)
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80