Add more methods + don't connect the button::press signals for templates
This commit is contained in:
parent
93327aeccf
commit
8f7ce8fe1e
|
@ -169,20 +169,20 @@ local function app_widget(self, app)
|
||||||
widget.cursor = "left_ptr"
|
widget.cursor = "left_ptr"
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
widget:connect_signal("button::press", function(app, _, __, button)
|
||||||
|
if button == 1 then
|
||||||
|
if app:get_is_selected() or not self.select_before_spawn then
|
||||||
|
app:run()
|
||||||
|
else
|
||||||
|
app:select()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end)
|
||||||
else
|
else
|
||||||
widget = self.app_template(app, self)
|
widget = self.app_template(app, self)
|
||||||
end
|
end
|
||||||
|
|
||||||
widget:connect_signal("button::press", function(app, _, __, button)
|
|
||||||
if button == 1 then
|
|
||||||
if self._private.active_widget == app or not self.select_before_spawn then
|
|
||||||
app:run()
|
|
||||||
else
|
|
||||||
app:select()
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end)
|
|
||||||
|
|
||||||
local _self = self
|
local _self = self
|
||||||
function widget:run()
|
function widget:run()
|
||||||
if app.terminal == true then
|
if app.terminal == true then
|
||||||
|
@ -203,6 +203,14 @@ local function app_widget(self, app)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function widget:run_or_select()
|
||||||
|
if app:get_is_selected() then
|
||||||
|
app:run()
|
||||||
|
else
|
||||||
|
app:select()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
function widget:run_as_root()
|
function widget:run_as_root()
|
||||||
if app.terminal == true then
|
if app.terminal == true then
|
||||||
local pid = awful.spawn.with_shell(
|
local pid = awful.spawn.with_shell(
|
||||||
|
@ -253,10 +261,16 @@ local function app_widget(self, app)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function widget:get_is_selected()
|
||||||
|
return self._private.active_widget == app
|
||||||
|
end
|
||||||
|
|
||||||
function app:run() widget:run() end
|
function app:run() widget:run() end
|
||||||
|
function app:run_or_select() widget:run_or_select() end
|
||||||
function app:run_as_root() widget:run_as_root() end
|
function app:run_as_root() widget:run_as_root() end
|
||||||
function app:select() widget:select() end
|
function app:select() widget:select() end
|
||||||
function app:unselect() widget:unselect() end
|
function app:unselect() widget:unselect() end
|
||||||
|
function app:get_is_selected() widget:get_is_selected() end
|
||||||
|
|
||||||
return widget
|
return widget
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue