2013-05-11 21:02:42 +02:00
|
|
|
local setmetatable = setmetatable
|
2013-05-27 02:49:51 +02:00
|
|
|
local print,pairs = print,pairs
|
|
|
|
local unpack=unpack
|
|
|
|
local util = require( "awful.util" )
|
|
|
|
local button = require( "awful.button" )
|
|
|
|
local checkbox = require( "radical.widgets.checkbox" )
|
2013-05-11 21:02:42 +02:00
|
|
|
local wibox = require( "wibox" )
|
2016-02-21 08:34:05 +01:00
|
|
|
local common = require( "radical.common" )
|
2014-02-23 05:59:03 +01:00
|
|
|
local item_layout = require("radical.item.layout.icon")
|
2013-05-11 21:02:42 +02:00
|
|
|
|
|
|
|
local module = {}
|
|
|
|
|
2014-02-02 23:21:59 +01:00
|
|
|
function module:setup_item(data,item,args)
|
|
|
|
local text_w = item._internal.text_w
|
|
|
|
|
|
|
|
-- Setup text
|
2014-03-05 06:12:48 +01:00
|
|
|
item.set_text = function (_,value)
|
2013-10-01 04:19:38 +02:00
|
|
|
if data.disable_markup then
|
|
|
|
text_w:set_text(value)
|
|
|
|
else
|
|
|
|
text_w:set_markup(value)
|
|
|
|
end
|
2013-07-02 00:25:25 +02:00
|
|
|
if data.auto_resize then
|
2015-12-29 12:21:13 +01:00
|
|
|
local fit_w,fit_h = text_w:get_preferred_size()
|
2013-07-02 00:25:25 +02:00
|
|
|
local is_largest = item == data._internal.largest_item_h
|
|
|
|
--TODO find new largest is item is smaller
|
|
|
|
if not data._internal.largest_item_h_v or data._internal.largest_item_h_v < fit_h then
|
|
|
|
data._internal.largest_item_h =item
|
|
|
|
data._internal.largest_item_h_v = fit_h
|
|
|
|
end
|
|
|
|
end
|
2013-06-23 04:30:27 +02:00
|
|
|
end
|
2014-01-04 22:51:50 +01:00
|
|
|
|
2016-02-21 08:34:05 +01:00
|
|
|
item:set_text(item._private_data.text)
|
2014-02-02 23:21:59 +01:00
|
|
|
|
2013-05-27 02:49:51 +02:00
|
|
|
end
|
|
|
|
|
2013-05-11 21:02:42 +02:00
|
|
|
--Get preferred item geometry
|
2016-01-09 10:25:46 +01:00
|
|
|
local function item_fit(data,item,self, content, width, height)
|
2013-07-04 07:51:01 +02:00
|
|
|
if not data.visible then return 1,1 end
|
2016-01-09 10:25:46 +01:00
|
|
|
local w, h = item._private_data._fit(self,content,width,height) --TODO port to new context API
|
2016-02-21 08:34:05 +01:00
|
|
|
return data.item_width or 70, item._private_data.height or h --TODO broken
|
2013-05-11 21:02:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local function new(data)
|
2014-03-12 05:31:50 +01:00
|
|
|
|
2016-02-12 06:02:31 +01:00
|
|
|
-- Define the item layout
|
|
|
|
local real_l = wibox.widget.base.make_widget_declarative {
|
|
|
|
spacing = data.spacing ,
|
|
|
|
item_fit = item_fit ,
|
2016-02-21 08:34:05 +01:00
|
|
|
setup_key_hooks = common.setup_key_hooks ,
|
2016-02-12 06:02:31 +01:00
|
|
|
setup_item = module.setup_item ,
|
|
|
|
layout = wibox.layout.fixed.horizontal,
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Hack fit
|
|
|
|
local new_fit
|
|
|
|
new_fit = function(self,context,w,h,force_values) --TODO use the context instead of extra argument
|
|
|
|
-- Get the original fit, the function need to be replaced to avoir a stack overflow
|
|
|
|
real_l.fit = real_l._fit
|
|
|
|
local result,r2 = self:get_preferred_size(context, force_values and w, force_values and h)
|
|
|
|
real_l.fit = new_fit
|
|
|
|
|
|
|
|
local w,h
|
|
|
|
if data.auto_resize and data._internal.largest_item_h then
|
|
|
|
w,h = data.rowcount*(data.item_width or data.default_width),data._internal.largest_item_h_v > data.item_height and data._internal.largest_item_h_v or data.item_height
|
|
|
|
else
|
|
|
|
w,h = data.rowcount*(data.item_width or data.default_width),data.item_height
|
|
|
|
end
|
|
|
|
|
|
|
|
data:emit_signal("layout_size",w,h)
|
|
|
|
|
|
|
|
return w,h
|
|
|
|
end
|
|
|
|
|
|
|
|
real_l._fit = real_l.fit
|
|
|
|
real_l.fit = new_fit
|
|
|
|
|
|
|
|
return real_l
|
2013-05-11 21:02:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return setmetatable(module, { __call = function(_, ...) return new(...) end })
|
2016-02-12 06:02:31 +01:00
|
|
|
-- kate: space-indent on; indent-width 4; replace-tabs on;
|