2013-07-21 10:15:56 +02:00
|
|
|
local base = require( "radical.base" )
|
|
|
|
local print = print
|
|
|
|
local unpack = unpack
|
|
|
|
local debug = debug
|
|
|
|
local type = type
|
|
|
|
local setmetatable = setmetatable
|
|
|
|
local color = require( "gears.color" )
|
|
|
|
local wibox = require( "wibox" )
|
|
|
|
local beautiful = require( "beautiful" )
|
|
|
|
local cairo = require( "lgi" ).cairo
|
|
|
|
local awful = require( "awful" )
|
|
|
|
local util = require( "awful.util" )
|
|
|
|
local button = require( "awful.button" )
|
|
|
|
local layout = require( "radical.layout" )
|
|
|
|
local checkbox = require( "radical.widgets.checkbox" )
|
|
|
|
local classic_style = require( "radical.style.classic" )
|
2016-02-21 08:34:05 +01:00
|
|
|
local common = require( "radical.common" )
|
2013-07-21 10:15:56 +02:00
|
|
|
|
|
|
|
local capi,module = { mouse = mouse , screen = screen , keygrabber = keygrabber },{}
|
|
|
|
|
|
|
|
local function setup_drawable(data)
|
|
|
|
local internal = data._internal
|
2014-03-05 06:12:48 +01:00
|
|
|
local private_data = internal.private_data
|
2014-02-02 06:35:50 +01:00
|
|
|
|
|
|
|
-- An embeded menu can only be visible if the parent is
|
2014-03-05 06:12:48 +01:00
|
|
|
data.get_visible = function() return data._embeded_parent and data._embeded_parent.visible or false end --Let the parent handle that
|
|
|
|
data.set_visible = function(_,v) if data._embeded_parent then data._embeded_parent.visible = v end end
|
2014-02-02 06:35:50 +01:00
|
|
|
|
|
|
|
-- Enumate geometry --BUG this is fake, but better than nothing
|
2016-02-21 08:34:05 +01:00
|
|
|
|
2013-07-21 10:15:56 +02:00
|
|
|
if not data.layout then
|
|
|
|
data.layout = layout.vertical
|
|
|
|
end
|
|
|
|
internal.layout = data.layout(data)
|
2014-02-02 06:35:50 +01:00
|
|
|
data.margins={left=0,right=0,bottom=0,top=0}
|
2014-03-19 04:52:19 +01:00
|
|
|
internal.layout:connect_signal("mouse::enter",function(_,geo)
|
2014-03-22 04:20:50 +01:00
|
|
|
if data._embeded_parent._current_item then
|
|
|
|
data._embeded_parent._current_item.selected = false
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
internal.layout:connect_signal("mouse::leave",function(_,geo)
|
|
|
|
if data._current_item then
|
|
|
|
data._current_item.selected = false
|
|
|
|
end
|
2014-03-19 04:52:19 +01:00
|
|
|
end)
|
2013-07-21 10:15:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function new(args)
|
|
|
|
local args = args or {}
|
|
|
|
args.internal = args.internal or {}
|
|
|
|
args.internal.setup_drawable = args.internal.setup_drawable or setup_drawable
|
2016-02-21 08:34:05 +01:00
|
|
|
args.internal.setup_item = args.internal.setup_item or common.setup_item
|
2013-07-21 10:15:56 +02:00
|
|
|
args.style = args.style or classic_style
|
|
|
|
local ret = base(args)
|
|
|
|
ret:connect_signal("clear::menu",function(_,vis)
|
2013-07-23 08:12:19 +02:00
|
|
|
local l = ret._internal.content_layout or ret._internal.layout
|
|
|
|
l:reset()
|
2013-07-21 10:15:56 +02:00
|
|
|
end)
|
|
|
|
return ret
|
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(module, { __call = function(_, ...) return new(...) end })
|
2016-02-28 11:00:44 +01:00
|
|
|
-- kate: space-indent on; indent-width 2; replace-tabs on;
|