--------------------------------------------------------------------------- -- A simple button widget. -- -- @DOC_wibox_awidget_defaults_button_EXAMPLE@ -- -- @author Julien Danjou <julien@danjou.info> -- @copyright 2008-2009 Julien Danjou -- @widgetmod awful.widget.button -- @supermodule wibox.widget.imagebox --------------------------------------------------------------------------- local setmetatable = setmetatable local abutton = require("awful.button") local imagebox = require("wibox.widget.imagebox") local widget = require("wibox.widget.base") local surface = require("gears.surface") local cairo = require("lgi").cairo local gtable = require("gears.table") local button = { mt = {} } --- Create a button widget. When clicked, the image is deplaced to make it like -- a real button. -- -- @constructorfct awful.widget.button -- @tparam table args Widget arguments. -- @tparam string args.image "image" is the image to display (mandatory). -- @tparam table args.buttons The buttons. -- @return A textbox widget configured as a button. function button.new(args) args = args or {} if not args.image then return widget.empty_widget() end local w = imagebox() local orig_set_image = w.set_image local img_release local img_press function w:set_image(image) img_release = surface.load(image) img_press = img_release:create_similar(cairo.Content.COLOR_ALPHA, img_release.width, img_release.height) local cr = cairo.Context(img_press) cr:set_source_surface(img_release, 2, 2) cr:paint() orig_set_image(self, img_release) end w:set_image(args.image) local btns = gtable.clone(args.buttons or {}, false) table.insert(btns, abutton({}, 1, function () orig_set_image(w, img_press) end, function () orig_set_image(w, img_release) end) ) w.buttons = btns w:connect_signal("mouse::leave", function(self) orig_set_image(self, img_release) end) return w end function button.mt:__call(...) return button.new(...) end return setmetatable(button, button.mt) -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80