summaryrefslogtreecommitdiff
path: root/translate-widget/translate.lua
diff options
context:
space:
mode:
authorpmakhov <pavel.makhov@savoirfairelinux.com>2017-12-05 16:22:33 -0500
committerpmakhov <pavel.makhov@savoirfairelinux.com>2017-12-05 16:22:33 -0500
commit957ebc441ebc35fa07639f01d952808609874db0 (patch)
tree4be173ae0909a99359339ef507f5bb599155deae /translate-widget/translate.lua
parentc2d601aab49682e4c12b7ab68ad885f182b3b3ff (diff)
more improvements
Diffstat (limited to 'translate-widget/translate.lua')
-rw-r--r--translate-widget/translate.lua59
1 files changed, 31 insertions, 28 deletions
diff --git a/translate-widget/translate.lua b/translate-widget/translate.lua
index 10179db..98a3e46 100644
--- a/translate-widget/translate.lua
+++ b/translate-widget/translate.lua
@@ -4,6 +4,7 @@ local awful = require("awful")
local json = require("json")
local https = require("ssl.https")
local wibox = require("wibox")
+local capi = {keygrabber = keygrabber }
local api_key = secrets.translate_widget_api_key
local base_url = 'https://translate.yandex.net/api/v1.5/tr.json/translate'
@@ -26,37 +27,31 @@ local function urlencode(str)
return str
end
-local translate_widget_txt = wibox.widget {
- layout = wibox.layout.flex.vertical
-}
-
-local lang_wdgt = wibox.widget{
- widget = wibox.widget.textbox,
-}
-
-local to_translate_wdgt = wibox.widget{
- widget = wibox.widget.textbox,
-}
-
-local translation_wdgt = wibox.widget{
- widget = wibox.widget.textbox,
-}
-
-translate_widget_txt:add(lang_wdgt)
-translate_widget_txt:add(to_translate_wdgt)
-translate_widget_txt:add(translation_wdgt)
-
local translate_widget = wibox.widget {
{
image = '/usr/share/icons/Papirus-Dark/48x48/apps/gnome-translate.svg',
resize = false,
widget = wibox.widget.imagebox
},
- translate_widget_txt,
+ {
+ {
+ id = 'header',
+ widget = wibox.widget.textbox
+ },
+ {
+ id = 'src',
+ widget = wibox.widget.textbox
+ },
+ {
+ id = 'res',
+ widget = wibox.widget.textbox
+ },
+ id = 'text',
+ layout = wibox.layout.flex.vertical
+ },
layout = wibox.layout.fixed.horizontal
}
-
local function translate(request_string)
local to_translate, lang = extract(request_string)
local urll = base_url .. '?lang=' .. lang .. '&text=' .. urlencode(to_translate) .. '&key=' .. api_key
@@ -65,9 +60,9 @@ local function translate(request_string)
if (code == 200 and resp_json ~= nil) then
local resp = json.decode(resp_json).text[1]
- lang_wdgt:set_markup('<big>' .. lang.. '</big>')
- to_translate_wdgt:set_markup('<span color="#FFFFFF"> ' .. to_translate .. '</span>')
- translation_wdgt:set_markup('<span color="#FFFFFF"> ' .. resp .. '</span>')
+ translate_widget.text.header:set_markup('<big>' .. lang.. '</big>')
+ translate_widget.text.src:set_markup('<span color="#FFFFFF"> ' .. to_translate .. '</span>')
+ translate_widget.text.res:set_markup('<span color="#FFFFFF"> ' .. resp .. '</span>')
local w = wibox {
width = 300,
@@ -75,22 +70,30 @@ local function translate(request_string)
ontop = true,
screen = mouse.screen,
expand = true,
- strategy = 'min',
widget = translate_widget
}
awful.placement.top(w, { margins = {top = 25}})
w.visible = true
w:buttons(
awful.util.table.join(
- awful.button({}, 1, function() awful.spawn("echo left | xclip")
+ awful.button({}, 1, function()
+ awful.spawn.with_shell("echo '" .. resp .. "' | xclip -selection clipboard")
w.visible = false
end),
awful.button({}, 3, function()
- awful.spawn.with_shell("echo right | xclip")
+ awful.spawn.with_shell("echo '" .. to_translate .."' | xclip -selection clipboard")
w.visible = false
end)
)
)
+
+ capi.keygrabber.run(function(_, key, event)
+ if event == "release" then return end
+ if key then
+ capi.keygrabber.stop()
+ w.visible = false
+ end
+ end)
end
end