2013-05-11 21:02:42 +02:00
|
|
|
local setmetatable = setmetatable
|
|
|
|
local beautiful = require( "beautiful" )
|
|
|
|
local color = require( "gears.color" )
|
|
|
|
local cairo = require( "lgi" ).cairo
|
|
|
|
local base = require( "radical.base" )
|
2014-03-24 00:00:43 +01:00
|
|
|
local glib = require("lgi").GLib
|
2014-10-06 00:01:54 +02:00
|
|
|
local margins = require("radical.margins")
|
2013-05-11 21:02:42 +02:00
|
|
|
|
|
|
|
local module = {
|
|
|
|
margins = {
|
|
|
|
BOTTOM = 10,
|
|
|
|
TOP = 10,
|
|
|
|
LEFT = 0 ,
|
|
|
|
RIGHT = 0 ,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-11 09:10:55 +02:00
|
|
|
-- Constants
|
|
|
|
local radius = 10
|
|
|
|
local arrow_height = 13
|
|
|
|
|
|
|
|
-- Matrix rotation per direction
|
|
|
|
local angles = {
|
|
|
|
top = 0 , -- 0
|
|
|
|
bottom = math.pi , -- 180
|
|
|
|
right = 3*math.pi/2 , -- 270
|
|
|
|
left = math.pi/2 , -- 90
|
|
|
|
}
|
|
|
|
|
|
|
|
-- If width and height need to be swapped
|
|
|
|
local swaps = {
|
|
|
|
top = false,
|
|
|
|
bottom= false,
|
|
|
|
right = true ,
|
|
|
|
left = true ,
|
|
|
|
}
|
|
|
|
|
2013-05-11 21:02:42 +02:00
|
|
|
local function rotate(img, geometry, angle,swap_size)
|
2014-10-11 09:10:55 +02:00
|
|
|
-- Swap height ans width
|
2013-05-11 21:02:42 +02:00
|
|
|
geometry = swap_size and {width = geometry.height, height=geometry.width} or geometry
|
2014-10-11 09:10:55 +02:00
|
|
|
|
|
|
|
-- Create a rotation matrix
|
2013-05-11 21:02:42 +02:00
|
|
|
local matrix,pattern,img2 = cairo.Matrix(),cairo.Pattern.create_for_surface(img),cairo.ImageSurface(cairo.Format.ARGB32, geometry.width, geometry.height)
|
|
|
|
cairo.Matrix.init_rotate(matrix,angle)
|
2014-10-11 09:10:55 +02:00
|
|
|
|
|
|
|
-- Apply necessary transformations
|
2013-05-11 21:02:42 +02:00
|
|
|
matrix:translate((angle == math.pi/2) and 0 or -geometry.width, (angle == 3*(math.pi/2)) and 0 or -geometry.height)
|
|
|
|
pattern:set_matrix(matrix)
|
2014-10-11 09:10:55 +02:00
|
|
|
|
|
|
|
-- Paint the new image
|
2013-05-11 21:02:42 +02:00
|
|
|
local cr2 = cairo.Context(img2)
|
|
|
|
cr2:set_source(pattern)
|
|
|
|
cr2:paint()
|
|
|
|
return img2
|
|
|
|
end
|
|
|
|
|
2014-10-11 09:10:55 +02:00
|
|
|
-- Generate a rounded cairo path with the arrow
|
|
|
|
local function draw_roundedrect_path(cr, data, width, height, radius,padding)
|
|
|
|
local no_arrow = data.arrow_type == base.arrow_type.NONE
|
|
|
|
local top_padding = (no_arrow) and 0 or arrow_height
|
|
|
|
local arrow_x = data._arrow_x or 20
|
|
|
|
|
|
|
|
--Begin the rounded rect
|
|
|
|
cr:move_to(padding,radius)
|
|
|
|
cr:arc(radius , radius+top_padding , (radius-padding) , math.pi , 3*(math.pi/2))
|
|
|
|
|
|
|
|
-- Draw the arrow
|
|
|
|
if not no_arrow then
|
|
|
|
cr:line_to(arrow_x , top_padding+padding)
|
|
|
|
cr:line_to(arrow_x+arrow_height , padding )
|
|
|
|
cr:line_to(arrow_x+2*arrow_height , top_padding+padding)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Complete the rounded rect
|
|
|
|
cr:arc(width-radius, radius+top_padding , (radius-padding) , 3*(math.pi/2) , math.pi*2 )
|
|
|
|
cr:arc(width-radius, height-(radius-padding)-padding , (radius-padding) , math.pi*2 , math.pi/2 )
|
|
|
|
cr:arc(radius , height-(radius-padding)-padding , (radius-padding) , math.pi/2 , math.pi )
|
|
|
|
cr:close_path()
|
|
|
|
end
|
|
|
|
|
2013-05-11 21:02:42 +02:00
|
|
|
local function do_gen_menu_top(data, width, height, radius,padding,args)
|
|
|
|
local img = cairo.ImageSurface(cairo.Format.ARGB32, width,height)
|
|
|
|
local cr = cairo.Context(img)
|
2014-10-11 09:10:55 +02:00
|
|
|
|
|
|
|
-- Clear the surface
|
2013-05-11 21:02:42 +02:00
|
|
|
cr:set_operator(cairo.Operator.SOURCE)
|
|
|
|
cr:set_source( color(args.bg) )
|
|
|
|
cr:paint()
|
|
|
|
cr:set_source( color(args.fg) )
|
2014-10-11 09:10:55 +02:00
|
|
|
|
|
|
|
-- Generate the path
|
2014-11-15 05:46:06 +01:00
|
|
|
draw_roundedrect_path(cr, data, width, height, beautiful.menu_corner_radius or radius,padding,args)
|
2014-10-11 09:10:55 +02:00
|
|
|
|
|
|
|
-- Apply
|
2013-05-11 21:02:42 +02:00
|
|
|
cr:fill()
|
|
|
|
return img
|
|
|
|
end
|
|
|
|
|
2014-06-01 05:45:46 +02:00
|
|
|
local function gen_arrow_x(data,direction)
|
2014-03-27 04:21:42 +01:00
|
|
|
local at = data.arrow_type
|
|
|
|
local par_center_x = data.parent_geometry and (data.parent_geometry.x + data.parent_geometry.width/2) or -1
|
|
|
|
local par_center_y = data.parent_geometry and (data.parent_geometry.y + data.parent_geometry.height/2) or -1
|
|
|
|
local menu_beg_x = data.x
|
|
|
|
local menu_end_x = data.x + data.width
|
|
|
|
|
|
|
|
if at == base.arrow_type.PRETTY or not at then
|
|
|
|
if direction == "left" then
|
2014-06-01 05:45:46 +02:00
|
|
|
data._arrow_x = data._internal.w.height -20 - (data.arrow_x_orig or 20)
|
2014-03-27 04:21:42 +01:00
|
|
|
elseif direction == "right" then
|
|
|
|
--TODO
|
|
|
|
elseif direction == "bottom" then
|
2014-06-01 05:45:46 +02:00
|
|
|
data._arrow_x = data.width -20 - (data.arrow_x_orig or 20)
|
2014-03-27 04:21:42 +01:00
|
|
|
if par_center_x >= menu_beg_x then
|
2014-10-11 09:10:55 +02:00
|
|
|
data._arrow_x = data.width - (par_center_x - menu_beg_x) - arrow_height
|
2014-03-27 04:21:42 +01:00
|
|
|
end
|
|
|
|
elseif direction == "top" then
|
|
|
|
--TODO
|
|
|
|
end
|
|
|
|
elseif at == base.arrow_type.CENTERED then
|
2014-10-06 00:01:54 +02:00
|
|
|
if direction == "left" or direction == "right" then
|
2014-10-11 09:10:55 +02:00
|
|
|
data._arrow_x = data.height/2 - arrow_height
|
2014-10-06 00:01:54 +02:00
|
|
|
else
|
2014-10-11 09:10:55 +02:00
|
|
|
data._arrow_x = data.width/2 - arrow_height
|
2014-10-06 00:01:54 +02:00
|
|
|
end
|
2014-03-27 04:21:42 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-24 00:00:43 +01:00
|
|
|
local function _set_direction(data,direction)
|
2014-06-01 05:45:46 +02:00
|
|
|
local height,width = data.height,data.width
|
|
|
|
local hash = height*1000+width
|
|
|
|
|
|
|
|
-- Try not to waste time for nothing
|
|
|
|
if data._internal._last_direction == direction..(hash) then return end
|
|
|
|
|
|
|
|
-- Avoid recomputing the arrow_x value
|
|
|
|
if not data._arrow_x or data._internal.last_size ~= hash then
|
|
|
|
gen_arrow_x(data,direction)
|
|
|
|
data._internal.last_size = hash
|
2014-05-01 22:25:46 +02:00
|
|
|
end
|
2014-06-01 05:45:46 +02:00
|
|
|
|
2014-11-23 06:32:13 +01:00
|
|
|
local border_color = color(beautiful.menu_outline_color or beautiful.menu_border_color or beautiful.fg_normal)
|
2014-06-01 05:45:46 +02:00
|
|
|
local geometry = (direction == "left" or direction == "right") and {width = height, height = width} or {height = height, width = width}
|
2014-11-23 06:32:13 +01:00
|
|
|
local top_clip_surface = do_gen_menu_top(data,geometry.width,geometry.height,radius,data.border_width,{bg=border_color or "#0000ff",fg=data.bg or "#00ffff"})
|
2014-10-11 09:10:55 +02:00
|
|
|
local top_bounding_surface = do_gen_menu_top(data,geometry.width,geometry.height,radius,0,{bg="#00000000",fg="#ffffffff"})
|
|
|
|
|
|
|
|
local arr_margin = (data.arrow_type == base.arrow_type.NONE) and 0 or arrow_height
|
|
|
|
local angle, swap = angles[direction],swaps[direction]
|
|
|
|
|
|
|
|
--TODO this could be simplified by appling the transform before drawing the bounding mask
|
2013-05-11 21:02:42 +02:00
|
|
|
if angle ~= 0 then
|
|
|
|
top_bounding_surface = rotate(top_bounding_surface,geometry,angle,swap)
|
|
|
|
top_clip_surface = rotate(top_clip_surface,geometry,angle,swap)
|
|
|
|
end
|
2014-10-11 09:10:55 +02:00
|
|
|
|
|
|
|
-- Set the bounding mask
|
2013-05-11 21:02:42 +02:00
|
|
|
data.wibox.shape_bounding = top_bounding_surface._native
|
|
|
|
data.wibox:set_bg(cairo.Pattern.create_for_surface(top_clip_surface))
|
2014-03-24 00:00:43 +01:00
|
|
|
data._internal._need_direction_reload = false
|
2014-06-01 05:45:46 +02:00
|
|
|
data._internal._last_direction = direction..(hash)
|
2014-10-06 00:01:54 +02:00
|
|
|
|
|
|
|
|
2014-03-24 00:00:43 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
-- Try to avoid useless repaint, this function is heavy
|
|
|
|
local function set_direction(data,direction)
|
2014-03-24 05:04:19 +01:00
|
|
|
data._internal._need_direction = direction
|
2014-06-01 05:45:46 +02:00
|
|
|
if not data._internal._need_direction_reload and data._internal._last_direction ~= direction..(data.height*1000+data.width) then
|
2014-03-24 05:04:19 +01:00
|
|
|
glib.idle_add(glib.PRIORITY_HIGH_IDLE, function() _set_direction(data,data._internal._need_direction) end)
|
2014-03-24 00:00:43 +01:00
|
|
|
data._internal._need_direction_reload = true
|
|
|
|
end
|
2014-10-06 00:01:54 +02:00
|
|
|
|
|
|
|
-- Margins need to set manually, a reset will override user changes
|
|
|
|
if data.arrow_type ~= base.arrow_type.NONE and (not (data.parent_geometry and data.parent_geometry.is_menu)) and data._internal.former_direction ~= direction then
|
|
|
|
if data._internal.former_direction then
|
|
|
|
data.margins[data._internal.former_direction] = data.border_width + module.margins[data._internal.former_direction:upper()]
|
|
|
|
end
|
2014-10-11 09:10:55 +02:00
|
|
|
data.margins[direction] = arrow_height + 2*data.border_width
|
2014-10-06 00:01:54 +02:00
|
|
|
end
|
|
|
|
data._internal.former_direction = direction
|
2013-05-11 21:02:42 +02:00
|
|
|
end
|
|
|
|
|
2014-06-01 05:45:46 +02:00
|
|
|
local function get_arrow_x(data)
|
|
|
|
local height,width = data.height,data.width
|
|
|
|
local hash = height*1000+width
|
|
|
|
if not data._arrow_x or data._internal.last_size ~= hash then
|
|
|
|
gen_arrow_x(data,direction)
|
2014-07-28 01:20:04 +02:00
|
|
|
-- data._internal.last_size = hash
|
2014-06-01 05:45:46 +02:00
|
|
|
end
|
|
|
|
return data._arrow_x
|
|
|
|
end
|
|
|
|
|
2014-10-11 09:10:55 +02:00
|
|
|
-- Draw the border on top of items, prevent sharp corners from messing with the border
|
|
|
|
local function draw_border(self,w, cr, width, height)
|
|
|
|
-- Draw the widget content
|
|
|
|
self.__draw(self,w, cr, width, height)
|
|
|
|
local data = self._data
|
|
|
|
|
|
|
|
-- Create a matrix to rotate the border
|
|
|
|
local matrix = cairo.Matrix()
|
|
|
|
cairo.Matrix.init_rotate(matrix,angles[data.direction])
|
|
|
|
cr:set_matrix(matrix)
|
|
|
|
|
|
|
|
-- Generate the path
|
2014-11-15 05:46:06 +01:00
|
|
|
draw_roundedrect_path(cr, data, width, height, beautiful.menu_corner_radius or radius,data.border_width/2)
|
2014-11-23 06:32:13 +01:00
|
|
|
cr:set_source(color(beautiful.menu_outline_color or beautiful.menu_border_color or beautiful.fg_normal))
|
2014-10-11 09:10:55 +02:00
|
|
|
cr:set_line_width(data.border_width)
|
|
|
|
cr:stroke()
|
|
|
|
end
|
|
|
|
|
2013-05-11 21:02:42 +02:00
|
|
|
local function draw(data,args)
|
|
|
|
local args = args or {}
|
|
|
|
local direction = data.direction or "top"
|
2014-06-01 05:45:46 +02:00
|
|
|
if not data.get_arrow_x then
|
|
|
|
rawset(data,"arrow_x_orig",data.arrow_x)
|
|
|
|
rawset(data,"arrow_x_orig",nil)
|
|
|
|
data.get_arrow_x = get_arrow_x
|
2014-10-11 09:10:55 +02:00
|
|
|
-- Prevent sharp corners from being over the border
|
|
|
|
if data._internal.margin then
|
|
|
|
data._internal.margin.__draw = data._internal.margin.draw
|
|
|
|
data._internal.margin.draw = draw_border
|
|
|
|
if not data._internal.margin._data then
|
|
|
|
data._internal.margin._data = data
|
|
|
|
end
|
|
|
|
end
|
2014-06-01 05:45:46 +02:00
|
|
|
end
|
2013-05-11 21:02:42 +02:00
|
|
|
|
|
|
|
set_direction(data,direction)
|
|
|
|
|
2014-10-06 00:01:54 +02:00
|
|
|
--TODO call this less often
|
2013-05-11 21:02:42 +02:00
|
|
|
return w,w2
|
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(module, { __call = function(_, ...) return draw(...) end })
|
|
|
|
-- kate: space-indent on; indent-width 2; replace-tabs on;
|