awesome/lib/gears/surface.lua.in

40 lines
1.2 KiB
Lua
Raw Normal View History

---------------------------------------------------------------------------
-- @author Uli Schlachter
-- @copyright 2012 Uli Schlachter
-- @release @AWESOME_VERSION@
---------------------------------------------------------------------------
local setmetatable = setmetatable
local type = type
local capi = { awesome = awesome }
local cairo = require("lgi").cairo
if tonumber(require("lgi.version")) <= 0.5 then
error("lgi too old, need at least version 0.7 (not yet released?) or recent git")
end
module("gears.surface")
--- Try to convert the argument into an lgi cairo surface.
-- This is usually needed for loading images by file name.
function load(surface)
-- Nil is not changed
if not surface then
return nil
end
-- lgi cairo surfaces don't get changed either
if cairo.Surface:is_type_of(surface) then
return surface
end
-- Strings are assumed to be file names and get loaded
if type(surface) == "string" then
surface = capi.awesome.load_image(surface)
end
-- Everything else gets forced into a surface
return cairo.Surface(surface, true)
end
setmetatable(_M, { __call = function(_, ...) return load(...) end })
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80