2008-10-17 22:38:01 +02:00
|
|
|
----------------------------------------------------------------------------
|
|
|
|
-- @author koniu <gkusnierz@gmail.com>
|
|
|
|
-- @copyright 2008 koniu
|
|
|
|
-- @release @AWESOME_VERSION@
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
-- Package environment
|
|
|
|
local pairs = pairs
|
|
|
|
local table = table
|
2008-12-17 17:47:23 +01:00
|
|
|
local type = type
|
2008-10-17 22:38:01 +02:00
|
|
|
local string = string
|
2010-07-16 19:35:51 +02:00
|
|
|
local pcall = pcall
|
2009-05-08 09:01:14 +02:00
|
|
|
local capi = { screen = screen,
|
|
|
|
awesome = awesome,
|
|
|
|
dbus = dbus,
|
2010-10-06 14:19:20 +02:00
|
|
|
timer = timer,
|
2012-05-27 19:20:34 +02:00
|
|
|
awesome = awesome }
|
2009-04-17 18:08:52 +02:00
|
|
|
local button = require("awful.button")
|
|
|
|
local util = require("awful.util")
|
2008-11-13 11:53:41 +01:00
|
|
|
local bt = require("beautiful")
|
2010-10-06 14:19:20 +02:00
|
|
|
local wibox = require("wibox")
|
2012-05-27 19:20:34 +02:00
|
|
|
local surface = require("gears.surface")
|
|
|
|
local cairo = require("lgi").cairo
|
2008-10-17 22:38:01 +02:00
|
|
|
|
|
|
|
--- Notification library
|
|
|
|
module("naughty")
|
|
|
|
|
2009-05-06 18:39:56 +02:00
|
|
|
--- Naughty configuration - a table containing common popup settings.
|
2008-10-17 22:38:01 +02:00
|
|
|
-- @name config
|
2008-11-15 21:08:17 +01:00
|
|
|
-- @field padding Space between popups and edge of the workarea. Default: 4
|
|
|
|
-- @field spacing Spacing between popups. Default: 1
|
2008-11-22 18:24:33 +01:00
|
|
|
-- @field icon_dirs List of directories that will be checked by getIcon()
|
|
|
|
-- Default: { "/usr/share/pixmaps/", }
|
|
|
|
-- @field icon_formats List of formats that will be checked by getIcon()
|
|
|
|
-- Default: { "png", "gif" }
|
2009-05-06 18:39:56 +02:00
|
|
|
-- @field default_preset Preset to be used by default.
|
|
|
|
-- Default: config.presets.normal
|
2011-01-28 01:37:47 +01:00
|
|
|
-- @field notify_callback Callback used to modify or reject notifications.
|
|
|
|
-- Default: nil
|
|
|
|
-- Example:
|
|
|
|
-- naughty.config.notify_callback = function(args)
|
|
|
|
-- args.text = 'prefix: ' .. args.text
|
|
|
|
-- return args
|
|
|
|
-- end
|
2008-10-17 22:38:01 +02:00
|
|
|
-- @class table
|
|
|
|
|
|
|
|
config = {}
|
2008-11-15 21:08:17 +01:00
|
|
|
config.padding = 4
|
|
|
|
config.spacing = 1
|
2008-11-22 18:24:33 +01:00
|
|
|
config.icon_dirs = { "/usr/share/pixmaps/", }
|
|
|
|
config.icon_formats = { "png", "gif" }
|
2011-01-28 01:37:47 +01:00
|
|
|
config.notify_callback = nil
|
2008-11-27 10:07:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
--- Notification Presets - a table containing presets for different purposes
|
2009-05-06 18:39:56 +02:00
|
|
|
-- Preset is a table of any parameters available to notify()
|
2008-11-27 10:07:07 +01:00
|
|
|
-- You have to pass a reference of a preset in your notify() call to use the preset
|
|
|
|
-- At least the default preset named "normal" has to be defined
|
|
|
|
-- The presets "low", "normal" and "critical" are used for notifications over DBUS
|
|
|
|
-- @name config.presets
|
|
|
|
-- @field low The preset for notifications with low urgency level
|
|
|
|
-- @field normal The default preset for every notification without a preset that will also be used for normal urgency level
|
|
|
|
-- @field critical The preset for notifications with a critical urgency level
|
|
|
|
-- @class table
|
|
|
|
|
|
|
|
config.presets = {
|
2009-05-06 18:39:56 +02:00
|
|
|
normal = {},
|
2008-11-27 10:07:07 +01:00
|
|
|
low = {
|
|
|
|
timeout = 5
|
|
|
|
},
|
|
|
|
critical = {
|
|
|
|
bg = "#ff0000",
|
|
|
|
fg = "#ffffff",
|
|
|
|
timeout = 0,
|
|
|
|
}
|
|
|
|
}
|
2008-10-17 22:38:01 +02:00
|
|
|
|
2009-05-06 18:39:56 +02:00
|
|
|
config.default_preset = config.presets.normal
|
|
|
|
|
2008-11-27 10:07:07 +01:00
|
|
|
-- DBUS Notification constants
|
2008-12-11 13:53:24 +01:00
|
|
|
urgency = {
|
2008-11-27 10:07:07 +01:00
|
|
|
low = "\0",
|
|
|
|
normal = "\1",
|
|
|
|
critical = "\2"
|
|
|
|
}
|
|
|
|
|
2008-12-11 13:53:24 +01:00
|
|
|
--- DBUS notification to preset mapping
|
|
|
|
-- @name config.mapping
|
|
|
|
-- The first element is an object containing the filter
|
|
|
|
-- If the rules in the filter matches the associated preset will be applied
|
|
|
|
-- The rules object can contain: urgency, category, appname
|
|
|
|
-- The second element is the preset
|
|
|
|
|
|
|
|
config.mapping = {
|
|
|
|
{{urgency = urgency.low}, config.presets.low},
|
|
|
|
{{urgency = urgency.normal}, config.presets.normal},
|
|
|
|
{{urgency = urgency.critical}, config.presets.critical}
|
|
|
|
}
|
|
|
|
|
|
|
|
-- Counter for the notifications
|
|
|
|
-- Required for later access via DBUS
|
|
|
|
local counter = 1
|
|
|
|
|
2010-02-16 17:54:45 +01:00
|
|
|
-- True if notifying is suspended
|
|
|
|
local suspended = false
|
|
|
|
|
2008-10-17 22:38:01 +02:00
|
|
|
--- Index of notifications. See config table for valid 'position' values.
|
|
|
|
-- Each element is a table consisting of:
|
|
|
|
-- @field box Wibox object containing the popup
|
2008-11-15 17:55:38 +01:00
|
|
|
-- @field height Popup height
|
2008-11-19 03:16:44 +01:00
|
|
|
-- @field width Popup width
|
2008-11-15 17:55:38 +01:00
|
|
|
-- @field die Function to be executed on timeout
|
2008-11-22 15:46:51 +01:00
|
|
|
-- @field id Unique notification id based on a counter
|
2009-05-06 18:39:56 +02:00
|
|
|
-- @name notifications[screen][position]
|
2008-10-17 22:38:01 +02:00
|
|
|
-- @class table
|
|
|
|
|
2010-02-16 17:54:45 +01:00
|
|
|
notifications = { suspended = { } }
|
2009-05-08 09:01:14 +02:00
|
|
|
for s = 1, capi.screen.count() do
|
2008-11-20 17:13:23 +01:00
|
|
|
notifications[s] = {
|
|
|
|
top_left = {},
|
|
|
|
top_right = {},
|
|
|
|
bottom_left = {},
|
|
|
|
bottom_right = {},
|
|
|
|
}
|
|
|
|
end
|
2008-10-17 22:38:01 +02:00
|
|
|
|
2010-02-16 17:54:45 +01:00
|
|
|
--- Suspend notifications
|
|
|
|
function suspend()
|
|
|
|
suspended = true
|
|
|
|
end
|
|
|
|
|
|
|
|
--- Resume notifications
|
|
|
|
function resume()
|
|
|
|
suspended = false
|
|
|
|
for i, v in pairs(notifications.suspended) do
|
|
|
|
v.box.visible = true
|
|
|
|
if v.timer then v.timer:start() end
|
|
|
|
end
|
|
|
|
notifications.suspended = { }
|
|
|
|
end
|
|
|
|
|
2011-07-23 09:17:34 +02:00
|
|
|
--- Toggle notification state
|
|
|
|
function toggle()
|
|
|
|
if suspended then
|
|
|
|
resume()
|
|
|
|
else
|
|
|
|
suspend()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-01-08 12:26:00 +01:00
|
|
|
-- Evaluate desired position of the notification by index - internal
|
2008-10-17 22:38:01 +02:00
|
|
|
-- @param idx Index of the notification
|
|
|
|
-- @param position top_right | top_left | bottom_right | bottom_left
|
2008-11-15 17:55:38 +01:00
|
|
|
-- @param height Popup height
|
2008-11-19 03:16:44 +01:00
|
|
|
-- @param width Popup width (optional)
|
2009-05-08 13:08:09 +02:00
|
|
|
-- @return Absolute position and index in { x = X, y = Y, idx = I } table
|
2008-11-20 17:13:23 +01:00
|
|
|
local function get_offset(screen, position, idx, width, height)
|
2009-08-18 15:45:17 +02:00
|
|
|
local ws = capi.screen[screen].workarea
|
2008-10-17 22:38:01 +02:00
|
|
|
local v = {}
|
2009-05-08 13:08:09 +02:00
|
|
|
local idx = idx or #notifications[screen][position] + 1
|
2009-05-06 20:43:28 +02:00
|
|
|
local width = width or notifications[screen][position][idx].width
|
2008-10-17 22:38:01 +02:00
|
|
|
|
|
|
|
-- calculate x
|
|
|
|
if position:match("left") then
|
2008-11-15 21:08:17 +01:00
|
|
|
v.x = ws.x + config.padding
|
2008-10-17 22:38:01 +02:00
|
|
|
else
|
2008-12-12 00:01:43 +01:00
|
|
|
v.x = ws.x + ws.width - (width + config.padding)
|
2008-10-17 22:38:01 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- calculate existing popups' height
|
|
|
|
local existing = 0
|
|
|
|
for i = 1, idx-1, 1 do
|
2008-12-12 00:01:43 +01:00
|
|
|
existing = existing + notifications[screen][position][i].height + config.spacing
|
2008-10-17 22:38:01 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
-- calculate y
|
|
|
|
if position:match("top") then
|
2008-11-15 21:08:17 +01:00
|
|
|
v.y = ws.y + config.padding + existing
|
2008-10-17 22:38:01 +02:00
|
|
|
else
|
2008-12-12 00:01:43 +01:00
|
|
|
v.y = ws.y + ws.height - (config.padding + height + existing)
|
2008-10-17 22:38:01 +02:00
|
|
|
end
|
|
|
|
|
2008-10-23 18:47:43 +02:00
|
|
|
-- if positioned outside workarea, destroy oldest popup and recalculate
|
2008-11-15 17:55:38 +01:00
|
|
|
if v.y + height > ws.y + ws.height or v.y < ws.y then
|
2008-10-23 18:47:43 +02:00
|
|
|
idx = idx - 1
|
2008-11-20 17:13:23 +01:00
|
|
|
destroy(notifications[screen][position][1])
|
|
|
|
v = get_offset(screen, position, idx, width, height)
|
2008-10-23 18:47:43 +02:00
|
|
|
end
|
2009-05-08 13:08:09 +02:00
|
|
|
if not v.idx then v.idx = idx end
|
2008-10-23 18:47:43 +02:00
|
|
|
|
2008-10-17 22:38:01 +02:00
|
|
|
return v
|
|
|
|
end
|
|
|
|
|
2009-01-08 12:26:00 +01:00
|
|
|
-- Re-arrange notifications according to their position and index - internal
|
2008-10-17 22:38:01 +02:00
|
|
|
-- @return None
|
2008-11-20 17:13:23 +01:00
|
|
|
local function arrange(screen)
|
|
|
|
for p,pos in pairs(notifications[screen]) do
|
|
|
|
for i,notification in pairs(notifications[screen][p]) do
|
|
|
|
local offset = get_offset(screen, p, i, notification.width, notification.height)
|
2009-08-07 23:13:49 +02:00
|
|
|
notification.box:geometry({ x = offset.x, y = offset.y })
|
2009-05-08 13:08:09 +02:00
|
|
|
notification.idx = offset.idx
|
2008-10-17 22:38:01 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-02-16 20:16:17 +01:00
|
|
|
--- Destroy notification by notification object
|
2008-11-25 09:45:28 +01:00
|
|
|
-- @param notification Notification object to be destroyed
|
2008-10-17 22:38:01 +02:00
|
|
|
-- @return True if the popup was successfully destroyed, nil otherwise
|
2008-10-19 20:58:50 +02:00
|
|
|
function destroy(notification)
|
2011-03-27 16:36:01 +02:00
|
|
|
if notification and notification.box.visible then
|
2010-02-16 17:54:45 +01:00
|
|
|
if suspended then
|
|
|
|
for k, v in pairs(notifications.suspended) do
|
|
|
|
if v.box == notification.box then
|
|
|
|
table.remove(notifications.suspended, k)
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-03-27 16:36:01 +02:00
|
|
|
local scr = notification.screen
|
|
|
|
table.remove(notifications[scr][notification.position], notification.idx)
|
2009-08-20 18:07:30 +02:00
|
|
|
if notification.timer then
|
|
|
|
notification.timer:stop()
|
|
|
|
end
|
2011-03-27 16:36:01 +02:00
|
|
|
notification.box.visible = false
|
2008-11-20 17:13:23 +01:00
|
|
|
arrange(scr)
|
2008-10-17 22:38:01 +02:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-01-08 12:26:00 +01:00
|
|
|
-- Get notification by ID
|
2008-11-20 17:51:29 +01:00
|
|
|
-- @param id ID of the notification
|
|
|
|
-- @return notification object if it was found, nil otherwise
|
|
|
|
local function getById(id)
|
|
|
|
-- iterate the notifications to get the notfications with the correct ID
|
2009-05-08 09:01:14 +02:00
|
|
|
for s = 1, capi.screen.count() do
|
2008-11-20 17:51:29 +01:00
|
|
|
for p,pos in pairs(notifications[s]) do
|
|
|
|
for i,notification in pairs(notifications[s][p]) do
|
|
|
|
if notification.id == id then
|
|
|
|
return notification
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-05-06 18:39:56 +02:00
|
|
|
--- Create notification. args is a dictionary of (optional) arguments.
|
|
|
|
-- @param text Text of the notification. Default: ''
|
|
|
|
-- @param title Title of the notification. Default: nil
|
|
|
|
-- @param timeout Time in seconds after which popup expires.
|
|
|
|
-- Set 0 for no timeout. Default: 5
|
|
|
|
-- @param hover_timeout Delay in seconds after which hovered popup disappears.
|
|
|
|
-- Default: nil
|
|
|
|
-- @param screen Target screen for the notification. Default: 1
|
|
|
|
-- @param position Corner of the workarea displaying the popups.
|
|
|
|
-- Values: "top_right" (default), "top_left", "bottom_left", "bottom_right".
|
|
|
|
-- @param ontop Boolean forcing popups to display on top. Default: true
|
|
|
|
-- @param height Popup height. Default: nil (auto)
|
|
|
|
-- @param width Popup width. Default: nil (auto)
|
|
|
|
-- @param font Notification font. Default: beautiful.font or awesome.font
|
|
|
|
-- @param icon Path to icon. Default: nil
|
|
|
|
-- @param icon_size Desired icon size in px. Default: nil
|
|
|
|
-- @param fg Foreground color. Default: beautiful.fg_focus or '#ffffff'
|
|
|
|
-- @param bg Background color. Default: beautiful.bg_focus or '#535d6c'
|
|
|
|
-- @param border_width Border width. Default: 1
|
|
|
|
-- @param border_color Border color.
|
|
|
|
-- Default: beautiful.border_focus or '#535d6c'
|
|
|
|
-- @param run Function to run on left click. Default: nil
|
|
|
|
-- @param preset Table with any of the above parameters. Note: Any parameters
|
|
|
|
-- specified directly in args will override ones defined in the preset.
|
2008-11-20 17:51:29 +01:00
|
|
|
-- @param replaces_id Replace the notification with the given ID
|
2009-05-06 18:39:56 +02:00
|
|
|
-- @param callback function that will be called with all arguments
|
|
|
|
-- the notification will only be displayed if the function returns true
|
|
|
|
-- note: this function is only relevant to notifications sent via dbus
|
|
|
|
-- @usage naughty.notify({ title = "Achtung!", text = "You're idling", timeout = 0 })
|
2008-11-25 09:45:28 +01:00
|
|
|
-- @return The notification object
|
2008-10-17 22:38:01 +02:00
|
|
|
function notify(args)
|
2011-01-28 01:37:47 +01:00
|
|
|
if config.notify_callback then
|
|
|
|
args = config.notify_callback(args)
|
|
|
|
if not args then return end
|
|
|
|
end
|
|
|
|
|
2008-11-15 17:55:38 +01:00
|
|
|
-- gather variables together
|
2009-05-06 18:39:56 +02:00
|
|
|
local preset = args.preset or config.default_preset or {}
|
|
|
|
local timeout = args.timeout or preset.timeout or 5
|
|
|
|
local icon = args.icon or preset.icon
|
|
|
|
local icon_size = args.icon_size or preset.icon_size
|
|
|
|
local text = args.text or preset.text or ""
|
|
|
|
local title = args.title or preset.title
|
|
|
|
local screen = args.screen or preset.screen or 1
|
|
|
|
local ontop = args.ontop or preset.ontop or true
|
|
|
|
local width = args.width or preset.width
|
|
|
|
local height = args.height or preset.height
|
|
|
|
local hover_timeout = args.hover_timeout or preset.hover_timeout
|
|
|
|
local opacity = args.opacity or preset.opacity
|
|
|
|
local margin = args.margin or preset.margin or "5"
|
|
|
|
local border_width = args.border_width or preset.border_width or "1"
|
|
|
|
local position = args.position or preset.position or "top_right"
|
2008-10-17 22:38:01 +02:00
|
|
|
|
2008-11-21 01:43:18 +01:00
|
|
|
-- beautiful
|
|
|
|
local beautiful = bt.get()
|
2009-06-06 12:28:25 +02:00
|
|
|
local font = args.font or preset.font or beautiful.font or capi.awesome.font
|
2009-05-06 18:39:56 +02:00
|
|
|
local fg = args.fg or preset.fg or beautiful.fg_normal or '#ffffff'
|
|
|
|
local bg = args.bg or preset.bg or beautiful.bg_normal or '#535d6c'
|
|
|
|
local border_color = args.border_color or preset.border_color or beautiful.bg_focus or '#535d6c'
|
2011-03-27 16:36:01 +02:00
|
|
|
local notification = { screen = screen }
|
2008-11-20 17:51:29 +01:00
|
|
|
|
|
|
|
-- replace notification if needed
|
|
|
|
if args.replaces_id then
|
2010-09-18 16:34:31 +02:00
|
|
|
local obj = getById(args.replaces_id)
|
2008-11-20 17:51:29 +01:00
|
|
|
if obj then
|
|
|
|
-- destroy this and ...
|
|
|
|
destroy(obj)
|
|
|
|
end
|
|
|
|
-- ... may use its ID
|
2011-09-07 21:41:47 +02:00
|
|
|
if args.replaces_id <= counter then
|
2008-11-20 17:51:29 +01:00
|
|
|
notification.id = args.replaces_id
|
|
|
|
else
|
|
|
|
counter = counter + 1
|
|
|
|
notification.id = counter
|
|
|
|
end
|
|
|
|
else
|
|
|
|
-- get a brand new ID
|
|
|
|
counter = counter + 1
|
|
|
|
notification.id = counter
|
|
|
|
end
|
|
|
|
|
2009-05-06 18:39:56 +02:00
|
|
|
notification.position = position
|
2008-10-17 22:38:01 +02:00
|
|
|
|
2009-05-06 18:39:56 +02:00
|
|
|
if title then title = title .. "\n" else title = "" end
|
2008-10-19 20:58:50 +02:00
|
|
|
|
2008-11-15 17:55:38 +01:00
|
|
|
-- hook destroy
|
2008-11-05 03:18:01 +01:00
|
|
|
local die = function () destroy(notification) end
|
2009-08-20 18:07:30 +02:00
|
|
|
if timeout > 0 then
|
|
|
|
local timer_die = capi.timer { timeout = timeout }
|
2009-10-09 20:39:55 +02:00
|
|
|
timer_die:connect_signal("timeout", die)
|
2010-02-16 17:54:45 +01:00
|
|
|
if not suspended then
|
|
|
|
timer_die:start()
|
|
|
|
end
|
2009-08-20 18:07:30 +02:00
|
|
|
notification.timer = timer_die
|
|
|
|
end
|
2008-11-05 03:18:01 +01:00
|
|
|
notification.die = die
|
2008-11-04 20:35:18 +01:00
|
|
|
|
2008-11-25 06:45:40 +01:00
|
|
|
local run = function ()
|
2008-12-03 23:52:59 +01:00
|
|
|
if args.run then
|
|
|
|
args.run(notification)
|
|
|
|
else
|
|
|
|
die()
|
|
|
|
end
|
2008-11-25 06:45:40 +01:00
|
|
|
end
|
2008-11-05 03:03:28 +01:00
|
|
|
|
2008-11-04 20:35:18 +01:00
|
|
|
local hover_destroy = function ()
|
2009-08-20 18:07:30 +02:00
|
|
|
if hover_timeout == 0 then
|
|
|
|
die()
|
2009-08-25 01:19:46 +02:00
|
|
|
else
|
|
|
|
if notification.timer then notification.timer:stop() end
|
|
|
|
notification.timer = capi.timer { timeout = hover_timeout }
|
2009-10-09 20:39:55 +02:00
|
|
|
notification.timer:connect_signal("timeout", die)
|
2009-08-25 01:19:46 +02:00
|
|
|
notification.timer:start()
|
2009-08-20 18:07:30 +02:00
|
|
|
end
|
2008-11-04 20:35:18 +01:00
|
|
|
end
|
|
|
|
|
2008-11-15 17:55:38 +01:00
|
|
|
-- create textbox
|
2010-10-06 14:19:20 +02:00
|
|
|
local textbox = wibox.widget.textbox()
|
|
|
|
local marginbox = wibox.layout.margin()
|
|
|
|
marginbox:set_margins(margin)
|
|
|
|
marginbox:set_widget(textbox)
|
2011-04-14 07:04:48 +02:00
|
|
|
textbox:set_valign("middle")
|
|
|
|
textbox:set_font(font)
|
2008-10-17 22:38:01 +02:00
|
|
|
|
2011-01-14 16:16:04 +01:00
|
|
|
local function setMarkup(pattern, replacements)
|
2011-05-01 15:10:03 +02:00
|
|
|
textbox:set_markup(string.format('<b>%s</b>%s', title:gsub(pattern, replacements), text:gsub(pattern, replacements)))
|
2010-07-16 19:35:51 +02:00
|
|
|
end
|
2011-01-14 16:16:04 +01:00
|
|
|
local function setText()
|
2011-01-14 19:06:54 +01:00
|
|
|
textbox:set_text(string.format('%s %s', title, text))
|
2011-01-14 16:16:04 +01:00
|
|
|
end
|
2010-07-16 19:35:51 +02:00
|
|
|
|
|
|
|
-- First try to set the text while only interpreting <br>.
|
|
|
|
-- (Setting a textbox' .text to an invalid pattern throws a lua error)
|
2011-01-14 16:16:04 +01:00
|
|
|
if not pcall(setMarkup, "<br.->", "\n") then
|
2010-07-16 19:35:51 +02:00
|
|
|
-- That failed, escape everything which might cause an error from pango
|
2011-01-14 16:16:04 +01:00
|
|
|
if not pcall(setMarkup, "[<>&]", { ['<'] = "<", ['>'] = ">", ['&'] = "&" }) then
|
|
|
|
-- Ok, just ignore all pango markup. If this fails, we got some invalid utf8
|
|
|
|
if not pcall(setText) then
|
|
|
|
textbox:set_markup("<i><Invalid markup or UTF8, cannot display message></i>")
|
|
|
|
end
|
2010-07-30 14:15:42 +02:00
|
|
|
end
|
2010-07-16 19:35:51 +02:00
|
|
|
end
|
|
|
|
|
2008-11-15 17:55:38 +01:00
|
|
|
-- create iconbox
|
2008-10-17 22:38:01 +02:00
|
|
|
local iconbox = nil
|
2010-10-06 14:19:20 +02:00
|
|
|
local iconmargin = nil
|
|
|
|
local icon_w, icon_h = 0, 0
|
2008-10-17 22:38:01 +02:00
|
|
|
if icon then
|
2008-11-22 18:24:33 +01:00
|
|
|
-- try to guess icon if the provided one is non-existent/readable
|
2009-05-08 09:01:14 +02:00
|
|
|
if type(icon) == "string" and not util.file_readable(icon) then
|
2011-11-02 02:42:37 +01:00
|
|
|
icon = util.geticonpath(icon, config.icon_formats, config.icon_dirs)
|
2009-03-11 17:11:06 +01:00
|
|
|
end
|
2008-11-22 18:24:33 +01:00
|
|
|
|
|
|
|
-- if we have an icon, use it
|
|
|
|
if icon then
|
2010-10-06 14:19:20 +02:00
|
|
|
iconbox = wibox.widget.imagebox()
|
2010-10-08 17:22:00 +02:00
|
|
|
iconmargin = wibox.layout.margin(iconbox, margin, margin, margin, margin)
|
2012-05-27 19:20:34 +02:00
|
|
|
local img = surface.load(icon)
|
2008-11-22 18:24:33 +01:00
|
|
|
if icon_size then
|
2012-05-27 19:20:34 +02:00
|
|
|
local scaled = cairo.ImageSurface(cairo.Format.ARGB32, icon_size, icon_size)
|
|
|
|
local cr = cairo.Context(scaled)
|
2010-10-06 14:19:20 +02:00
|
|
|
cr:scale(icon_size / img:get_height(), icon_size / img:get_width())
|
2012-05-27 19:20:34 +02:00
|
|
|
cr:set_source_surface(img, 0, 0)
|
2010-10-06 14:19:20 +02:00
|
|
|
cr:paint()
|
|
|
|
img = scaled
|
2008-11-22 18:24:33 +01:00
|
|
|
end
|
2010-10-06 14:19:20 +02:00
|
|
|
iconbox:set_resize(false)
|
|
|
|
iconbox:set_image(img)
|
|
|
|
icon_w = img:get_width()
|
|
|
|
icon_h = img:get_height()
|
2008-11-04 21:09:28 +01:00
|
|
|
end
|
2008-10-17 22:38:01 +02:00
|
|
|
end
|
|
|
|
|
2008-11-15 17:55:38 +01:00
|
|
|
-- create container wibox
|
2010-10-06 14:19:20 +02:00
|
|
|
notification.box = wibox({ fg = fg,
|
|
|
|
bg = bg,
|
|
|
|
border_color = border_color,
|
|
|
|
border_width = border_width,
|
|
|
|
type = "notification" })
|
2008-11-15 17:55:38 +01:00
|
|
|
|
2009-10-09 20:39:55 +02:00
|
|
|
if hover_timeout then notification.box:connect_signal("mouse::enter", hover_destroy) end
|
2009-08-17 15:43:32 +02:00
|
|
|
|
2009-05-06 20:43:28 +02:00
|
|
|
-- calculate the height
|
|
|
|
if not height then
|
2010-10-06 14:19:20 +02:00
|
|
|
local w, h = textbox:fit(-1, -1)
|
|
|
|
if iconbox and icon_h + 2 * margin > h + 2 * margin then
|
|
|
|
height = icon_h + 2 * margin
|
2009-05-05 20:38:15 +02:00
|
|
|
else
|
2010-10-06 14:19:20 +02:00
|
|
|
height = h + 2 * margin
|
2009-05-05 20:38:15 +02:00
|
|
|
end
|
|
|
|
end
|
2009-05-06 20:43:28 +02:00
|
|
|
|
|
|
|
-- calculate the width
|
|
|
|
if not width then
|
2010-10-06 14:19:20 +02:00
|
|
|
local w, h = textbox:fit(-1, -1)
|
|
|
|
width = w + (iconbox and icon_w + 2 * margin or 0) + 2 * margin
|
2009-05-05 20:38:15 +02:00
|
|
|
end
|
2009-05-06 20:43:28 +02:00
|
|
|
|
|
|
|
-- crop to workarea size if too big
|
2009-08-18 15:45:17 +02:00
|
|
|
local workarea = capi.screen[screen].workarea
|
2009-05-05 17:32:53 +02:00
|
|
|
if width > workarea.width - 2 * (border_width or 0) - 2 * (config.padding or 0) then
|
|
|
|
width = workarea.width - 2 * (border_width or 0) - 2 * (config.padding or 0)
|
2009-05-05 20:38:15 +02:00
|
|
|
end
|
2009-05-05 17:32:53 +02:00
|
|
|
if height > workarea.height - 2 * (border_width or 0) - 2 * (config.padding or 0) then
|
|
|
|
height = workarea.height - 2 * (border_width or 0) - 2 * (config.padding or 0)
|
2009-05-05 20:38:15 +02:00
|
|
|
end
|
|
|
|
|
2009-05-06 20:43:28 +02:00
|
|
|
-- set size in notification object
|
|
|
|
notification.height = height + 2 * (border_width or 0)
|
|
|
|
notification.width = width + 2 * (border_width or 0)
|
|
|
|
|
|
|
|
-- position the wibox
|
2009-07-29 14:43:00 +02:00
|
|
|
local offset = get_offset(screen, notification.position, nil, notification.width, notification.height)
|
2009-03-10 20:25:56 +01:00
|
|
|
notification.box.ontop = ontop
|
2009-07-29 14:43:00 +02:00
|
|
|
notification.box:geometry({ width = width,
|
|
|
|
height = height,
|
2008-11-15 17:55:38 +01:00
|
|
|
x = offset.x,
|
|
|
|
y = offset.y })
|
2009-04-10 23:18:51 +02:00
|
|
|
notification.box.opacity = opacity
|
2011-03-27 16:36:01 +02:00
|
|
|
notification.box.visible = true
|
2009-05-08 13:08:09 +02:00
|
|
|
notification.idx = offset.idx
|
2008-11-15 17:55:38 +01:00
|
|
|
|
|
|
|
-- populate widgets
|
2010-10-06 14:19:20 +02:00
|
|
|
local layout = wibox.layout.fixed.horizontal()
|
|
|
|
if iconmargin then
|
|
|
|
layout:add(iconmargin)
|
2009-10-26 23:31:20 +01:00
|
|
|
end
|
2010-10-06 14:19:20 +02:00
|
|
|
layout:add(marginbox)
|
|
|
|
notification.box:set_widget(layout)
|
|
|
|
|
|
|
|
-- Setup the mouse events
|
|
|
|
layout:buttons(util.table.join(button({ }, 1, run), button({ }, 3, die)))
|
2008-10-17 22:38:01 +02:00
|
|
|
|
|
|
|
-- insert the notification to the table
|
2008-11-25 09:45:28 +01:00
|
|
|
table.insert(notifications[screen][notification.position], notification)
|
2008-10-17 22:38:01 +02:00
|
|
|
|
2010-02-16 17:54:45 +01:00
|
|
|
if suspended then
|
|
|
|
notification.box.visible = false
|
|
|
|
table.insert(notifications.suspended, notification)
|
|
|
|
end
|
|
|
|
|
2008-11-25 09:45:28 +01:00
|
|
|
-- return the notification
|
|
|
|
return notification
|
|
|
|
end
|
2008-11-20 17:51:29 +01:00
|
|
|
|
|
|
|
-- DBUS/Notification support
|
|
|
|
-- Notify
|
2009-07-29 16:10:29 +02:00
|
|
|
if capi.dbus then
|
2009-10-09 20:39:55 +02:00
|
|
|
capi.dbus.connect_signal("org.freedesktop.Notifications", function (data, appname, replaces_id, icon, title, text, actions, hints, expire)
|
2011-02-03 16:21:19 +01:00
|
|
|
args = { preset = config.default_preset }
|
2009-01-08 11:39:53 +01:00
|
|
|
if data.member == "Notify" then
|
|
|
|
if text ~= "" then
|
|
|
|
args.text = text
|
|
|
|
if title ~= "" then
|
|
|
|
args.title = title
|
|
|
|
end
|
2008-11-20 17:51:29 +01:00
|
|
|
else
|
2009-01-08 11:39:53 +01:00
|
|
|
if title ~= "" then
|
|
|
|
args.text = title
|
|
|
|
else
|
2010-06-06 10:38:34 +02:00
|
|
|
return
|
2008-12-11 13:53:24 +01:00
|
|
|
end
|
|
|
|
end
|
2009-01-08 11:39:53 +01:00
|
|
|
for i, obj in pairs(config.mapping) do
|
|
|
|
local filter, preset, s = obj[1], obj[2], 0
|
|
|
|
if (not filter.urgency or filter.urgency == hints.urgency) and
|
|
|
|
(not filter.category or filter.category == hints.category) and
|
|
|
|
(not filter.appname or filter.appname == appname) then
|
2011-12-27 11:23:51 +01:00
|
|
|
args.preset = util.table.join(args.preset, preset)
|
2009-01-08 11:39:53 +01:00
|
|
|
end
|
2008-12-17 17:47:23 +01:00
|
|
|
end
|
2009-01-08 11:39:53 +01:00
|
|
|
if not args.preset.callback or (type(args.preset.callback) == "function" and
|
|
|
|
args.preset.callback(data, appname, replaces_id, icon, title, text, actions, hints, expire)) then
|
|
|
|
if icon ~= "" then
|
|
|
|
args.icon = icon
|
2010-12-09 15:35:32 +01:00
|
|
|
elseif hints.icon_data or hints.image_data then
|
|
|
|
if hints.icon_data == nil then hints.icon_data = hints.image_data end
|
2009-03-11 19:04:12 +01:00
|
|
|
-- icon_data is an array:
|
|
|
|
-- 1 -> width, 2 -> height, 3 -> rowstride, 4 -> has alpha
|
|
|
|
-- 5 -> bits per sample, 6 -> channels, 7 -> data
|
|
|
|
|
2011-10-04 15:23:11 +02:00
|
|
|
local imgdata = ""
|
2009-03-11 19:04:12 +01:00
|
|
|
-- If has alpha (ARGB32)
|
|
|
|
if hints.icon_data[6] == 4 then
|
2011-10-04 15:23:11 +02:00
|
|
|
for i = 1, #hints.icon_data[7], 4 do
|
|
|
|
imgdata = imgdata .. hints.icon_data[7]:sub(i, i + 2):reverse()
|
|
|
|
imgdata = imgdata .. hints.icon_data[7]:sub(i + 3, i + 3)
|
|
|
|
end
|
2009-03-11 19:04:12 +01:00
|
|
|
-- If has not alpha (RGB24)
|
|
|
|
elseif hints.icon_data[6] == 3 then
|
|
|
|
for i = 1, #hints.icon_data[7], 3 do
|
|
|
|
imgdata = imgdata .. hints.icon_data[7]:sub(i , i + 2):reverse()
|
|
|
|
imgdata = imgdata .. string.format("%c", 255) -- alpha is 255
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if imgdata then
|
2012-05-27 19:20:34 +02:00
|
|
|
args.icon = cairo.ImageSurface.create_for_data(imgdata,
|
|
|
|
cairo.Format.ARGB32, hints.icon_data[1], hints.icon_data[2], hints.icon_data[1] * 4)
|
2009-03-11 19:04:12 +01:00
|
|
|
end
|
2009-01-08 11:39:53 +01:00
|
|
|
end
|
|
|
|
if replaces_id and replaces_id ~= "" and replaces_id ~= 0 then
|
|
|
|
args.replaces_id = replaces_id
|
|
|
|
end
|
|
|
|
if expire and expire > -1 then
|
|
|
|
args.timeout = expire / 1000
|
|
|
|
end
|
|
|
|
local id = notify(args).id
|
2009-02-23 15:32:24 +01:00
|
|
|
return "u", id
|
2008-12-17 17:47:23 +01:00
|
|
|
end
|
2009-02-23 15:32:24 +01:00
|
|
|
return "u", "0"
|
2009-01-08 11:39:53 +01:00
|
|
|
elseif data.member == "CloseNotification" then
|
2009-12-01 14:13:52 +01:00
|
|
|
local obj = getById(appname)
|
2009-01-08 11:39:53 +01:00
|
|
|
if obj then
|
|
|
|
destroy(obj)
|
2008-12-17 17:47:23 +01:00
|
|
|
end
|
2009-01-08 11:39:53 +01:00
|
|
|
elseif data.member == "GetServerInfo" or data.member == "GetServerInformation" then
|
|
|
|
-- name of notification app, name of vender, version
|
2009-10-07 19:57:01 +02:00
|
|
|
return "s", "naughty", "s", "awesome", "s", capi.awesome.version:match("%d.%d"), "s", "1.0"
|
2009-12-23 10:51:30 +01:00
|
|
|
elseif data.member == "GetCapabilities" then
|
|
|
|
-- We actually do display the body of the message, we support <b>, <i>
|
|
|
|
-- and <u> in the body and we handle static (non-animated) icons.
|
|
|
|
return "as", { "s", "body", "s", "body-markup", "s", "icon-static" }
|
2008-11-27 10:07:07 +01:00
|
|
|
end
|
2009-01-08 11:39:53 +01:00
|
|
|
end)
|
|
|
|
|
2009-10-09 20:39:55 +02:00
|
|
|
capi.dbus.connect_signal("org.freedesktop.DBus.Introspectable",
|
2009-01-08 11:39:53 +01:00
|
|
|
function (data, text)
|
|
|
|
if data.member == "Introspect" then
|
|
|
|
local xml = [=[<!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object
|
|
|
|
Introspection 1.0//EN"
|
|
|
|
"http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
|
|
|
|
<node>
|
|
|
|
<interface name="org.freedesktop.DBus.Introspectable">
|
|
|
|
<method name="Introspect">
|
|
|
|
<arg name="data" direction="out" type="s"/>
|
|
|
|
</method>
|
|
|
|
</interface>
|
|
|
|
<interface name="org.freedesktop.Notifications">
|
2009-12-23 10:51:30 +01:00
|
|
|
<method name="GetCapabilities">
|
|
|
|
<arg name="caps" type="as" direction="out"/>
|
|
|
|
</method>
|
2009-01-08 11:39:53 +01:00
|
|
|
<method name="CloseNotification">
|
|
|
|
<arg name="id" type="u" direction="in"/>
|
|
|
|
</method>
|
|
|
|
<method name="Notify">
|
|
|
|
<arg name="app_name" type="s" direction="in"/>
|
|
|
|
<arg name="id" type="u" direction="in"/>
|
|
|
|
<arg name="icon" type="s" direction="in"/>
|
|
|
|
<arg name="summary" type="s" direction="in"/>
|
|
|
|
<arg name="body" type="s" direction="in"/>
|
|
|
|
<arg name="actions" type="as" direction="in"/>
|
|
|
|
<arg name="hints" type="a{sv}" direction="in"/>
|
|
|
|
<arg name="timeout" type="i" direction="in"/>
|
|
|
|
<arg name="return_id" type="u" direction="out"/>
|
|
|
|
</method>
|
|
|
|
<method name="GetServerInformation">
|
|
|
|
<arg name="return_name" type="s" direction="out"/>
|
|
|
|
<arg name="return_vendor" type="s" direction="out"/>
|
|
|
|
<arg name="return_version" type="s" direction="out"/>
|
2009-10-07 19:57:01 +02:00
|
|
|
<arg name="return_spec_version" type="s" direction="out"/>
|
2009-01-08 11:39:53 +01:00
|
|
|
</method>
|
|
|
|
<method name="GetServerInfo">
|
|
|
|
<arg name="return_name" type="s" direction="out"/>
|
|
|
|
<arg name="return_vendor" type="s" direction="out"/>
|
|
|
|
<arg name="return_version" type="s" direction="out"/>
|
|
|
|
</method>
|
|
|
|
</interface>
|
|
|
|
</node>]=]
|
|
|
|
return "s", xml
|
2008-11-20 17:51:29 +01:00
|
|
|
end
|
2009-01-08 11:39:53 +01:00
|
|
|
end)
|
2008-11-20 17:51:29 +01:00
|
|
|
|
2009-01-08 11:39:53 +01:00
|
|
|
-- listen for dbus notification requests
|
2009-05-08 09:01:14 +02:00
|
|
|
capi.dbus.request_name("session", "org.freedesktop.Notifications")
|
2009-01-08 11:39:53 +01:00
|
|
|
end
|
2008-11-20 17:51:29 +01:00
|
|
|
|
2011-09-11 16:50:01 +02:00
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|