hcra/server/ws_server/backends/x11.py

51 lines
1.5 KiB
Python
Raw Permalink Normal View History

# Copyright (C) 2021 Samuel L Sloniker KJ7RRV
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2021-06-15 12:50:51 -07:00
import os
import subprocess
2021-06-15 12:50:51 -07:00
import threading
import time
2021-06-15 12:50:51 -07:00
def _long_touch(x, y):
os.environ['DISPLAY'] = config['display']
subprocess.run(['xdotool', 'mousemove', str(x), str(y), 'mousedown', '1'])
time.sleep(2)
subprocess.run(['xdotool', 'mouseup', '1'])
2021-06-15 12:50:51 -07:00
def get_img():
os.environ['DISPLAY'] = config['display']
xwd = subprocess.Popen(['xwd', '-root', '-silent'], stdout=subprocess.PIPE)
convert = subprocess.Popen(['convert', 'xwd:-', 'bmp:img.bmp'], stdin=xwd.stdout)
convert.wait()
return 'img.bmp'
2021-06-15 12:50:51 -07:00
def touch(x, y, is_long):
os.environ['DISPLAY'] = config['display']
if is_long:
threading.Thread(target=_long_touch, args=(x, y,)).start()
else:
subprocess.run(['xdotool', 'mousemove', str(x), str(y), 'click', '1'])
def connect():
pass
def disconnect():
pass