2016-05-23 07:22:35 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
--- A progressbar widget.
|
|
|
|
--
|
2016-07-25 04:06:11 +02:00
|
|
|
-- To add text on top of the progressbar, a `wibox.layout.stack` can be used:
|
|
|
|
--
|
|
|
|
--@DOC_wibox_widget_progressbar_text_EXAMPLE@
|
|
|
|
--
|
|
|
|
-- To display the progressbar vertically, use a `wibox.container.rotate` widget:
|
|
|
|
--
|
|
|
|
--@DOC_wibox_widget_progressbar_vertical_EXAMPLE@
|
|
|
|
--
|
2016-07-24 01:21:15 +02:00
|
|
|
-- 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.
|
|
|
|
--
|
2016-05-25 23:22:44 +02:00
|
|
|
--@DOC_wibox_widget_defaults_progressbar_EXAMPLE@
|
2016-07-25 04:06:11 +02:00
|
|
|
--
|
2016-05-23 07:22:35 +02:00
|
|
|
-- @author Julien Danjou <julien@danjou.info>
|
|
|
|
-- @copyright 2009 Julien Danjou
|
2019-06-06 08:15:53 +02:00
|
|
|
-- @widgetmod wibox.widget.progressbar
|
2016-05-23 07:22:35 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
local ipairs = ipairs
|
|
|
|
local math = math
|
2017-03-15 06:08:40 +01:00
|
|
|
local gdebug = require("gears.debug")
|
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-07-25 00:05:00 +02:00
|
|
|
local shape = require("gears.shape")
|
2017-03-08 21:18:33 +01:00
|
|
|
local gtable = require("gears.table")
|
2016-05-23 07:22:35 +02:00
|
|
|
|
|
|
|
local progressbar = { mt = {} }
|
|
|
|
|
2016-07-24 01:02:00 +02:00
|
|
|
--- The progressbar border color.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-05-23 07:22:35 +02:00
|
|
|
-- If the value is nil, no border will be drawn.
|
|
|
|
--
|
2016-07-24 01:02:00 +02:00
|
|
|
-- @property border_color
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam color color The border color to set.
|
|
|
|
-- @propemits true false
|
|
|
|
-- @propbeautiful
|
2016-11-20 10:01:39 +01:00
|
|
|
-- @see gears.color
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
--- The progressbar border width.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @property border_width
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam number border_width
|
|
|
|
-- @propemits true false
|
|
|
|
-- @propbeautiful
|
2016-07-25 00:05:00 +02:00
|
|
|
|
|
|
|
--- The progressbar inner border color.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- If the value is nil, no border will be drawn.
|
|
|
|
--
|
|
|
|
-- @property bar_border_color
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam color color The border color to set.
|
|
|
|
-- @propemits true false
|
|
|
|
-- @propbeautiful
|
2016-11-20 10:01:39 +01:00
|
|
|
-- @see gears.color
|
2016-07-25 00:05:00 +02:00
|
|
|
|
|
|
|
--- The progressbar inner border width.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @property bar_border_width
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam number bar_border_width
|
|
|
|
-- @propbeautiful
|
|
|
|
-- @propemits true false
|
2016-07-25 00:05:00 +02:00
|
|
|
|
2016-07-24 01:02:00 +02:00
|
|
|
--- The progressbar foreground color.
|
2016-05-23 07:22:35 +02:00
|
|
|
--
|
2016-07-24 01:02:00 +02:00
|
|
|
-- @property color
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam color color The progressbar color.
|
|
|
|
-- @propemits true false
|
|
|
|
-- @usebeautiful beautiful.progressbar_fg
|
2016-11-20 10:01:39 +01:00
|
|
|
-- @see gears.color
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-07-24 01:02:00 +02:00
|
|
|
--- The progressbar background color.
|
2016-05-23 07:22:35 +02:00
|
|
|
--
|
2016-07-24 01:02:00 +02:00
|
|
|
-- @property background_color
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam color color The progressbar background color.
|
|
|
|
-- @propemits true false
|
|
|
|
-- @usebeautiful beautiful.progressbar_bg
|
2016-11-20 10:01:39 +01:00
|
|
|
-- @see gears.color
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
--- The progressbar inner shape.
|
2016-07-25 04:35:58 +02:00
|
|
|
--
|
|
|
|
--@DOC_wibox_widget_progressbar_bar_shape_EXAMPLE@
|
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @property bar_shape
|
|
|
|
-- @tparam[opt=gears.shape.rectangle] gears.shape shape
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @propemits true false
|
|
|
|
-- @propbeautiful
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @see gears.shape
|
|
|
|
|
|
|
|
--- The progressbar shape.
|
2016-07-25 04:35:58 +02:00
|
|
|
--
|
|
|
|
--@DOC_wibox_widget_progressbar_shape_EXAMPLE@
|
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @property shape
|
|
|
|
-- @tparam[opt=gears.shape.rectangle] gears.shape shape
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @propemits true false
|
|
|
|
-- @propbeautiful
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @see gears.shape
|
|
|
|
|
2016-07-24 01:21:15 +02:00
|
|
|
--- Set the progressbar to draw vertically.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-24 01:21:15 +02:00
|
|
|
-- This doesn't do anything anymore, use a `wibox.container.rotate` widget.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-24 00:32:37 +02:00
|
|
|
-- @deprecated set_vertical
|
2016-07-24 01:02:00 +02:00
|
|
|
-- @tparam boolean vertical
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @deprecatedin 4.0
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
--- Force the inner part (the bar) to fit in the background shape.
|
|
|
|
--
|
2016-07-25 04:18:12 +02:00
|
|
|
--@DOC_wibox_widget_progressbar_clip_EXAMPLE@
|
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @property clip
|
|
|
|
-- @tparam[opt=true] boolean clip
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @propemits true false
|
2016-07-25 00:05:00 +02:00
|
|
|
|
2016-07-24 01:02:00 +02:00
|
|
|
--- The progressbar to draw ticks. Default is false.
|
2016-05-23 07:22:35 +02:00
|
|
|
--
|
2016-07-24 01:02:00 +02:00
|
|
|
-- @property ticks
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam boolean ticks
|
|
|
|
-- @propemits true false
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-07-24 01:02:00 +02:00
|
|
|
--- The progressbar ticks gap.
|
2016-05-23 07:22:35 +02:00
|
|
|
--
|
2016-07-24 01:02:00 +02:00
|
|
|
-- @property ticks_gap
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam number ticks_gap
|
|
|
|
-- @propemits true false
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-07-24 01:02:00 +02:00
|
|
|
--- The progressbar ticks size.
|
2016-05-23 07:22:35 +02:00
|
|
|
--
|
2016-07-24 01:02:00 +02:00
|
|
|
-- @property ticks_size
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam number ticks_size
|
|
|
|
-- @propemits true false
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-07-24 01:02:00 +02:00
|
|
|
--- The maximum value the progressbar should handle.
|
2016-05-23 07:22:35 +02:00
|
|
|
--
|
2016-07-24 01:02:00 +02:00
|
|
|
-- @property max_value
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam number max_value
|
|
|
|
-- @propemits true false
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-05-27 07:26:46 +02:00
|
|
|
--- The progressbar background color.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-24 00:26:27 +02:00
|
|
|
-- @beautiful beautiful.progressbar_bg
|
2019-06-08 06:15:59 +02:00
|
|
|
-- @param color
|
2016-05-27 07:26:46 +02:00
|
|
|
|
|
|
|
--- The progressbar foreground color.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-24 00:26:27 +02:00
|
|
|
-- @beautiful beautiful.progressbar_fg
|
2019-06-08 06:15:59 +02:00
|
|
|
-- @param color
|
2016-05-27 07:26:46 +02:00
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
--- The progressbar shape.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @beautiful beautiful.progressbar_shape
|
2019-06-08 06:15:59 +02:00
|
|
|
-- @tparam gears.shape shape
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @see gears.shape
|
|
|
|
|
2016-05-27 07:26:46 +02:00
|
|
|
--- The progressbar border color.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-24 00:26:27 +02:00
|
|
|
-- @beautiful beautiful.progressbar_border_color
|
2019-06-08 06:15:59 +02:00
|
|
|
-- @param color
|
2016-05-27 07:26:46 +02:00
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
--- The progressbar outer border width.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @beautiful beautiful.progressbar_border_width
|
2019-06-08 06:15:59 +02:00
|
|
|
-- @param number
|
2016-07-25 00:05:00 +02:00
|
|
|
|
|
|
|
--- The progressbar inner shape.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @beautiful beautiful.progressbar_bar_shape
|
2019-06-08 06:15:59 +02:00
|
|
|
-- @tparam gears.shape shape
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @see gears.shape
|
|
|
|
|
|
|
|
--- The progressbar bar border width.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @beautiful beautiful.progressbar_bar_border_width
|
2019-06-08 06:15:59 +02:00
|
|
|
-- @param number
|
2016-07-25 00:05:00 +02:00
|
|
|
|
|
|
|
--- The progressbar bar border color.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 00:05:00 +02:00
|
|
|
-- @beautiful beautiful.progressbar_bar_border_color
|
2019-06-08 06:15:59 +02:00
|
|
|
-- @param color
|
2016-07-25 00:05:00 +02:00
|
|
|
|
2016-07-25 02:11:40 +02:00
|
|
|
--- The progressbar margins.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 02:11:40 +02:00
|
|
|
-- Note that if the `clip` is disabled, this allows the background to be smaller
|
|
|
|
-- than the bar.
|
2016-07-25 04:18:12 +02:00
|
|
|
--
|
|
|
|
-- See the `clip` example.
|
|
|
|
--
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @property margins
|
2016-07-25 02:11:40 +02:00
|
|
|
-- @tparam[opt=0] (table|number|nil) margins A table for each side or a number
|
|
|
|
-- @tparam[opt=0] number margins.top
|
|
|
|
-- @tparam[opt=0] number margins.bottom
|
|
|
|
-- @tparam[opt=0] number margins.left
|
|
|
|
-- @tparam[opt=0] number margins.right
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @propemits false false
|
|
|
|
-- @propbeautiful
|
2016-07-25 02:11:40 +02:00
|
|
|
-- @see clip
|
|
|
|
|
|
|
|
--- The progressbar padding.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 02:11:40 +02:00
|
|
|
-- Note that if the `clip` is disabled, this allows the bar to be taller
|
|
|
|
-- than the background.
|
2016-07-25 04:18:12 +02:00
|
|
|
--
|
|
|
|
-- See the `clip` example.
|
|
|
|
--
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @property paddings
|
2016-07-25 02:11:40 +02:00
|
|
|
-- @tparam[opt=0] (table|number|nil) padding A table for each side or a number
|
|
|
|
-- @tparam[opt=0] number padding.top
|
|
|
|
-- @tparam[opt=0] number padding.bottom
|
|
|
|
-- @tparam[opt=0] number padding.left
|
|
|
|
-- @tparam[opt=0] number padding.right
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @propemits false false
|
|
|
|
-- @propbeautiful
|
2016-07-25 02:11:40 +02:00
|
|
|
-- @see clip
|
|
|
|
|
|
|
|
--- The progressbar margins.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 02:11:40 +02:00
|
|
|
-- Note that if the `clip` is disabled, this allows the background to be smaller
|
|
|
|
-- than the bar.
|
|
|
|
-- @tparam[opt=0] (table|number|nil) margins A table for each side or a number
|
|
|
|
-- @tparam[opt=0] number margins.top
|
|
|
|
-- @tparam[opt=0] number margins.bottom
|
|
|
|
-- @tparam[opt=0] number margins.left
|
|
|
|
-- @tparam[opt=0] number margins.right
|
|
|
|
-- @beautiful beautiful.progressbar_margins
|
|
|
|
-- @see clip
|
|
|
|
|
|
|
|
--- The progressbar padding.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-07-25 02:11:40 +02:00
|
|
|
-- Note that if the `clip` is disabled, this allows the bar to be taller
|
|
|
|
-- than the background.
|
|
|
|
-- @tparam[opt=0] (table|number|nil) padding A table for each side or a number
|
|
|
|
-- @tparam[opt=0] number padding.top
|
|
|
|
-- @tparam[opt=0] number padding.bottom
|
|
|
|
-- @tparam[opt=0] number padding.left
|
|
|
|
-- @tparam[opt=0] number padding.right
|
|
|
|
-- @beautiful beautiful.progressbar_paddings
|
|
|
|
-- @see clip
|
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
local properties = { "border_color", "color" , "background_color",
|
|
|
|
"value" , "max_value" , "ticks",
|
|
|
|
"ticks_gap" , "ticks_size", "border_width",
|
|
|
|
"shape" , "bar_shape" , "bar_border_width",
|
2016-07-25 02:11:40 +02:00
|
|
|
"clip" , "margins" , "bar_border_color",
|
|
|
|
"paddings",
|
2016-07-25 00:05:00 +02:00
|
|
|
}
|
2016-05-23 07:22:35 +02:00
|
|
|
|
|
|
|
function progressbar.draw(pbar, _, cr, width, height)
|
2016-07-24 00:39:29 +02:00
|
|
|
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)
|
|
|
|
|
2016-07-24 00:39:29 +02:00
|
|
|
local max_value = pbar._private.max_value
|
2016-07-24 22:25:19 +02:00
|
|
|
|
|
|
|
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
|
2016-07-25 00:05:00 +02:00
|
|
|
local border_width = pbar._private.border_width
|
|
|
|
or beautiful.progressbar_border_width or 0
|
|
|
|
|
|
|
|
local bcol = pbar._private.border_color or beautiful.progressbar_border_color
|
|
|
|
|
|
|
|
border_width = bcol and border_width or 0
|
|
|
|
|
|
|
|
local bg = pbar._private.background_color or
|
|
|
|
beautiful.progressbar_bg or "#ff0000aa"
|
|
|
|
|
|
|
|
local bg_width, bg_height = width, height
|
|
|
|
|
2016-07-25 02:11:40 +02:00
|
|
|
local clip = pbar._private.clip ~= false and beautiful.progressbar_clip ~= false
|
|
|
|
|
|
|
|
-- Apply the margins
|
|
|
|
local margin = pbar._private.margins or beautiful.progressbar_margins
|
|
|
|
|
|
|
|
if margin then
|
|
|
|
if type(margin) == "number" then
|
|
|
|
cr:translate(margin, margin)
|
|
|
|
bg_width, bg_height = bg_width - 2*margin, bg_height - 2*margin
|
|
|
|
else
|
|
|
|
cr:translate(margin.left or 0, margin.top or 0)
|
|
|
|
bg_height = bg_height -
|
|
|
|
(margin.top or 0) - (margin.bottom or 0)
|
|
|
|
bg_width = bg_width -
|
|
|
|
(margin.left or 0) - (margin.right or 0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
-- Draw the background shape
|
|
|
|
if border_width > 0 then
|
|
|
|
-- Cairo draw half of the border outside of the path area
|
|
|
|
cr:translate(border_width/2, border_width/2)
|
|
|
|
bg_width, bg_height = bg_width - border_width, bg_height - border_width
|
|
|
|
cr:set_line_width(border_width)
|
|
|
|
end
|
|
|
|
|
|
|
|
local background_shape = pbar._private.shape or
|
|
|
|
beautiful.progressbar_shape or shape.rectangle
|
|
|
|
|
|
|
|
background_shape(cr, bg_width, bg_height)
|
|
|
|
|
|
|
|
cr:set_source(color(bg))
|
|
|
|
|
2016-07-25 02:11:40 +02:00
|
|
|
local over_drawn_width = bg_width + border_width
|
|
|
|
local over_drawn_height = bg_height + border_width
|
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
if border_width > 0 then
|
|
|
|
cr:fill_preserve()
|
|
|
|
|
|
|
|
-- Draw the border
|
|
|
|
cr:set_source(color(bcol))
|
|
|
|
|
2016-05-23 07:22:35 +02:00
|
|
|
cr:stroke()
|
|
|
|
|
2016-07-25 02:11:40 +02:00
|
|
|
over_drawn_width = over_drawn_width - 2*border_width
|
|
|
|
over_drawn_height = over_drawn_height - 2*border_width
|
2016-07-25 00:05:00 +02:00
|
|
|
else
|
|
|
|
cr:fill()
|
2016-05-23 07:22:35 +02:00
|
|
|
end
|
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
-- Undo the translation
|
2016-07-25 02:11:40 +02:00
|
|
|
cr:translate(-border_width/2, -border_width/2)
|
2016-07-25 00:05:00 +02:00
|
|
|
|
|
|
|
-- Make sure the bar stay in the shape
|
2016-07-25 02:11:40 +02:00
|
|
|
if clip then
|
|
|
|
background_shape(cr, bg_width, bg_height)
|
2016-07-25 00:05:00 +02:00
|
|
|
cr:clip()
|
2016-07-25 02:11:40 +02:00
|
|
|
cr:translate(border_width, border_width)
|
|
|
|
else
|
|
|
|
-- Assume the background size is irrelevant to the bar itself
|
|
|
|
if type(margin) == "number" then
|
|
|
|
cr:translate(-margin, -margin)
|
|
|
|
else
|
|
|
|
cr:translate(-(margin.left or 0), -(margin.top or 0))
|
|
|
|
end
|
|
|
|
|
|
|
|
over_drawn_height = height
|
|
|
|
over_drawn_width = width
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Apply the padding
|
|
|
|
local padding = pbar._private.paddings or beautiful.progressbar_paddings
|
|
|
|
|
|
|
|
if padding then
|
|
|
|
if type(padding) == "number" then
|
|
|
|
cr:translate(padding, padding)
|
|
|
|
over_drawn_height = over_drawn_height - 2*padding
|
|
|
|
over_drawn_width = over_drawn_width - 2*padding
|
|
|
|
else
|
|
|
|
cr:translate(padding.left or 0, padding.top or 0)
|
|
|
|
|
|
|
|
over_drawn_height = over_drawn_height -
|
|
|
|
(padding.top or 0) - (padding.bottom or 0)
|
|
|
|
over_drawn_width = over_drawn_width -
|
|
|
|
(padding.left or 0) - (padding.right or 0)
|
|
|
|
end
|
2016-07-25 00:05:00 +02:00
|
|
|
end
|
|
|
|
|
2016-07-25 02:11:40 +02:00
|
|
|
over_drawn_width = math.max(over_drawn_width , 0)
|
|
|
|
over_drawn_height = math.max(over_drawn_height, 0)
|
|
|
|
|
|
|
|
local rel_x = over_drawn_width * value
|
|
|
|
|
|
|
|
|
2016-07-25 00:05:00 +02:00
|
|
|
-- Draw the progressbar shape
|
|
|
|
|
|
|
|
local bar_shape = pbar._private.bar_shape or
|
|
|
|
beautiful.progressbar_bar_shape or shape.rectangle
|
|
|
|
|
|
|
|
local bar_border_width = pbar._private.bar_border_width or
|
|
|
|
beautiful.progressbar_bar_border_width or pbar._private.border_width or
|
|
|
|
beautiful.progressbar_border_width or 0
|
|
|
|
|
|
|
|
local bar_border_color = pbar._private.bar_border_color or
|
|
|
|
beautiful.progressbar_bar_border_color
|
|
|
|
|
|
|
|
bar_border_width = bar_border_color and bar_border_width or 0
|
|
|
|
|
|
|
|
over_drawn_width = over_drawn_width - bar_border_width
|
|
|
|
over_drawn_height = over_drawn_height - bar_border_width
|
|
|
|
cr:translate(bar_border_width/2, bar_border_width/2)
|
|
|
|
|
|
|
|
bar_shape(cr, rel_x, over_drawn_height)
|
|
|
|
|
|
|
|
cr:set_source(color(pbar._private.color or beautiful.progressbar_fg or "#ff0000"))
|
|
|
|
|
|
|
|
if bar_border_width > 0 then
|
|
|
|
cr:fill_preserve()
|
|
|
|
cr:set_source(color(bar_border_color))
|
|
|
|
cr:set_line_width(bar_border_width)
|
|
|
|
cr:stroke()
|
|
|
|
else
|
|
|
|
cr:fill()
|
|
|
|
end
|
2016-07-24 01:21:15 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
2016-07-24 01:21:15 +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
|
2016-07-24 00:39:29 +02:00
|
|
|
cr:set_source(color(pbar._private.background_color or "#000000aa"))
|
2016-05-23 07:22:35 +02:00
|
|
|
cr:fill()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-24 01:21:15 +02:00
|
|
|
function progressbar:fit(_, width, height)
|
|
|
|
return width, height
|
2016-05-23 07:22:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Set the progressbar value.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2019-06-06 22:32:53 +02:00
|
|
|
-- @property value
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @tparam number value The progress bar value between 0 and 1.
|
|
|
|
-- @propemits true false
|
2019-06-06 22:32:53 +02:00
|
|
|
|
2016-05-23 07:22:35 +02:00
|
|
|
function progressbar:set_value(value)
|
|
|
|
value = value or 0
|
2016-07-24 22:25:19 +02:00
|
|
|
|
|
|
|
self._private.value = value
|
|
|
|
|
2016-05-23 07:22:35 +02:00
|
|
|
self:emit_signal("widget::redraw_needed")
|
|
|
|
return self
|
|
|
|
end
|
|
|
|
|
2016-07-24 22:25:19 +02:00
|
|
|
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.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-10-05 00:24:43 +02:00
|
|
|
-- This method is deprecated. Use a `wibox.container.constraint` widget or
|
|
|
|
-- `forced_height`.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
|
|
|
-- @tparam number height The height to set.
|
2016-07-24 00:32:37 +02:00
|
|
|
-- @deprecated set_height
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @renamedin 4.0
|
2016-10-05 00:24:43 +02:00
|
|
|
function progressbar:set_height(height)
|
2017-03-15 06:08:40 +01:00
|
|
|
gdebug.deprecate("Use a `wibox.container.constraint` widget or `forced_height`", {deprecated_in=4})
|
2016-10-05 00:24:43 +02:00
|
|
|
self:set_forced_height(height)
|
2016-05-23 07:22:35 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
--- Set the progressbar width.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
2016-10-05 00:24:43 +02:00
|
|
|
-- This method is deprecated. Use a `wibox.container.constraint` widget or
|
|
|
|
-- `forced_width`.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
|
|
|
-- @tparam number width The width to set.
|
2016-07-24 00:32:37 +02:00
|
|
|
-- @deprecated set_width
|
2019-11-29 06:33:44 +01:00
|
|
|
-- @renamedin 4.0
|
2016-10-05 00:24:43 +02:00
|
|
|
function progressbar:set_width(width)
|
2017-03-15 06:08:40 +01:00
|
|
|
gdebug.deprecate("Use a `wibox.container.constraint` widget or `forced_width`", {deprecated_in=4})
|
2016-10-05 00:24:43 +02:00
|
|
|
self:set_forced_width(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)
|
2016-07-24 00:39:29 +02:00
|
|
|
pbar._private[prop] = value
|
2016-05-23 07:22:35 +02:00
|
|
|
pbar:emit_signal("widget::redraw_needed")
|
2019-11-29 06:33:44 +01:00
|
|
|
pbar:emit_signal("property::"..prop, value)
|
2016-05-23 07:22:35 +02:00
|
|
|
return pbar
|
|
|
|
end
|
|
|
|
end
|
2019-11-29 06:33:44 +01:00
|
|
|
if not progressbar["get_"..prop] then
|
|
|
|
progressbar["set_" .. prop] = function(pbar)
|
|
|
|
return pbar._private[prop]
|
|
|
|
end
|
|
|
|
end
|
2016-05-23 07:22:35 +02:00
|
|
|
end
|
|
|
|
|
2016-07-24 00:32:37 +02:00
|
|
|
function progressbar:set_vertical(value) --luacheck: no unused_args
|
2017-03-15 06:08:40 +01:00
|
|
|
gdebug.deprecate("Use a `wibox.container.rotate` widget", {deprecated_in=4})
|
2016-07-24 00:32:37 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2016-05-23 07:22:35 +02:00
|
|
|
--- Create a progressbar widget.
|
2019-11-29 06:33:44 +01:00
|
|
|
--
|
|
|
|
-- @tparam table args Standard widget() arguments. You should add width and
|
|
|
|
-- height constructor parameters to set progressbar geometry.
|
|
|
|
-- @tparam number args.width The width.
|
|
|
|
-- @tparam number args.height The height.
|
|
|
|
-- @treturn wibox.widget.progressbar A progressbar widget.
|
2019-06-07 20:59:34 +02:00
|
|
|
-- @constructorfct wibox.widget.progressbar
|
2016-05-23 07:22:35 +02:00
|
|
|
function progressbar.new(args)
|
|
|
|
args = args or {}
|
|
|
|
|
2016-07-24 00:39:29 +02:00
|
|
|
local pbar = base.make_widget(nil, nil, {
|
|
|
|
enable_properties = true,
|
|
|
|
})
|
2016-05-23 07:22:35 +02:00
|
|
|
|
2016-07-24 00:39:29 +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
|
|
|
|
2017-03-08 21:18:33 +01:00
|
|
|
gtable.crush(pbar, progressbar, true)
|
2016-05-23 07:22:35 +02:00
|
|
|
|
|
|
|
return pbar
|
|
|
|
end
|
|
|
|
|
|
|
|
function progressbar.mt:__call(...)
|
|
|
|
return progressbar.new(...)
|
|
|
|
end
|
|
|
|
|
2016-06-24 21:59:02 +02:00
|
|
|
--@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
|