Fixed typing
This commit is contained in:
parent
c1279211bb
commit
f7e0ec9ff6
|
@ -43,14 +43,12 @@ def updateCoords2(x, y):
|
||||||
message='Key is not a valid input...')
|
message='Key is not a valid input...')
|
||||||
|
|
||||||
|
|
||||||
@app.route('/send-key', methods=['GET', 'POST'])
|
@app.route('/send-keys', methods=['GET', 'POST'])
|
||||||
def sendKey():
|
def sendKeys():
|
||||||
pyautogui.doubleClick()
|
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
try:
|
try:
|
||||||
text = str(request.values['text']).strip()
|
text = str(request.values['text']).strip()
|
||||||
pyautogui.typewrite(text);
|
pyautogui.typewrite(text);
|
||||||
|
|
||||||
# print("\nX: {} Y: {}".format(str(x), str(y)))
|
# print("\nX: {} Y: {}".format(str(x), str(y)))
|
||||||
# pyautogui.typewrite('Hello world!\n', interval=secs_between_keys) # useful for entering text, newline is Enter
|
# pyautogui.typewrite('Hello world!\n', interval=secs_between_keys) # useful for entering text, newline is Enter
|
||||||
# pyautogui.press(['left', 'left', 'left', 'left']) # Press the left arrow key 4 times.
|
# pyautogui.press(['left', 'left', 'left', 'left']) # Press the left arrow key 4 times.
|
||||||
|
|
|
@ -57,6 +57,12 @@ def scrollDown(eve = None):
|
||||||
pyautogui.scroll(-1)
|
pyautogui.scroll(-1)
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
|
@app.route('/press-enter')
|
||||||
|
@socketio.on('press_enter')
|
||||||
|
def pressEnter(eve = None):
|
||||||
|
pyautogui.press("enter")
|
||||||
|
return ""
|
||||||
|
|
||||||
|
|
||||||
@socketio.on('update_coords')
|
@socketio.on('update_coords')
|
||||||
def updateCoords(message):
|
def updateCoords(message):
|
||||||
|
|
|
@ -63,9 +63,10 @@ input {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sendKeysBtn,
|
||||||
|
#pressEnterBtn,
|
||||||
#scrollToggle,
|
#scrollToggle,
|
||||||
#mouseHoldToggle,
|
#mouseHoldToggle {
|
||||||
#sendKeysBtn {
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-size: 280%;
|
font-size: 280%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -114,6 +114,15 @@ function rightClick() {
|
||||||
socket.emit('right_click', "");
|
socket.emit('right_click', "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function sendKeys() {
|
||||||
|
const text = document.getElementById("sendKeysField").value.trim();
|
||||||
|
doAjax("/send-keys", "text=" + text, "send-keys");
|
||||||
|
}
|
||||||
|
|
||||||
|
function pressEnter() {
|
||||||
|
socket.emit('press_enter', "");
|
||||||
|
}
|
||||||
|
|
||||||
function scrollToggle() {
|
function scrollToggle() {
|
||||||
if (isScrolling) {
|
if (isScrolling) {
|
||||||
isScrolling = false;
|
isScrolling = false;
|
||||||
|
@ -160,6 +169,8 @@ document.addEventListener("touchend", touchHandler, true);
|
||||||
document.addEventListener("touchcancel", touchHandler, true);
|
document.addEventListener("touchcancel", touchHandler, true);
|
||||||
|
|
||||||
document.getElementById("rightClickBtn").addEventListener("mouseup", rightClick, true);
|
document.getElementById("rightClickBtn").addEventListener("mouseup", rightClick, true);
|
||||||
|
document.getElementById("sendKeysBtn").addEventListener("mouseup", sendKeys, true);
|
||||||
|
document.getElementById("pressEnterBtn").addEventListener("mouseup", pressEnter, true);
|
||||||
|
|
||||||
document.getElementById("scrollToggle").addEventListener("mouseup", scrollToggle, true);
|
document.getElementById("scrollToggle").addEventListener("mouseup", scrollToggle, true);
|
||||||
document.getElementById("mouseHoldToggle").addEventListener("mouseup", holdToggle, true);
|
document.getElementById("mouseHoldToggle").addEventListener("mouseup", holdToggle, true);
|
||||||
|
|
|
@ -0,0 +1,99 @@
|
||||||
|
/* Elms */
|
||||||
|
ul, li {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
touch-action: manipulation;
|
||||||
|
overflow: hidden; /* Used to prevent touch scroll down reloading page. Ref: https://stackoverflow.com/questions/29008194/disabling-androids-chrome-pull-down-to-refresh-feature */
|
||||||
|
-webkit-touch-callout: none; /* iOS Safari */
|
||||||
|
-webkit-user-select: none; /* Safari */
|
||||||
|
-khtml-user-select: none; /* Konqueror HTML */
|
||||||
|
-moz-user-select: none; /* Old versions of Firefox */
|
||||||
|
-ms-user-select: none; /* Internet Explorer/Edge */
|
||||||
|
user-select: none; /* Non-prefixed version, currently
|
||||||
|
supported by Chrome, Opera and Firefox */
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
width: 100% !important;
|
||||||
|
margin: 0 auto !important;
|
||||||
|
background-color: #00000000 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* IDs */
|
||||||
|
#bg {
|
||||||
|
position: fixed;
|
||||||
|
top: 0%;
|
||||||
|
left: 0%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: -999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bg img {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: -999;
|
||||||
|
}
|
||||||
|
|
||||||
|
#canvas {
|
||||||
|
position: relative;
|
||||||
|
width: 98%;
|
||||||
|
min-height: 1000px;
|
||||||
|
border: 2px solid #c3c3c3;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rightClickBtn {
|
||||||
|
display: none; /* Hide button unless screen bigger than media query says it is */
|
||||||
|
border-style: dashed;
|
||||||
|
border-width: 2px;
|
||||||
|
overflow: auto;
|
||||||
|
font-size: 280%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rightClickBtn:hover {
|
||||||
|
background-color: rgba(0, 232, 255, 0.5);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sendKeysBtn,
|
||||||
|
#pressEnterBtn,
|
||||||
|
#scrollToggle,
|
||||||
|
#mouseHoldToggle {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 280%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media only screen and (max-device-width: 800px) {
|
||||||
|
#sendKeysField {
|
||||||
|
font-size: 300% !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* nothing with screen size smaller than 8000px */
|
||||||
|
@media only screen and (min-device-width: 801px) {
|
||||||
|
body {
|
||||||
|
width: 800px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
#rightClickBtn {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Classes */
|
||||||
|
/* Other message text colors */
|
||||||
|
.errorTxt { color: rgb(170, 18, 18); }
|
||||||
|
.warningTxt { color: rgb(255, 168, 0); }
|
||||||
|
.successTxt { color: rgb(136, 204, 39); }
|
|
@ -15,10 +15,17 @@
|
||||||
</div>
|
</div>
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
<div class="col justify-content-center text-center">
|
<div class="col justify-content-center text-center">
|
||||||
<button id="sendKeysBtn" class="btn btn-success btn-lg">Send</button>
|
<button id="sendKeysBtn" class="btn btn-success btn-lg">Send</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="col justify-content-center text-center">
|
||||||
|
<button id="pressEnterBtn" class="btn btn-success btn-lg">Enter</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<br/><br/>
|
<br/><br/>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col justify-content-center text-center">
|
<div class="col justify-content-center text-center">
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
source "/home/abaddon/Portable_Apps/py-venvs/remotemouse-venv/bin/activate"
|
source "../venv/bin/activate"
|
||||||
# Note can replace 127.0.0.1 with 0.0.0.0 to make it 'network/internet' accessable...
|
# Note can replace 127.0.0.1 with 0.0.0.0 to make it 'network/internet' accessable...
|
||||||
# Note: NEED -k eventlet for this to work! I spent too many hours on this...
|
# Note: NEED -k eventlet for this to work! I spent too many hours on this...
|
||||||
gunicorn wsgi:app -b 127.0.0.1:8088 -k eventlet # <module>:<app> IE <file>:<flask app variable>
|
gunicorn wsgi:app -b 127.0.0.1:8088 -k eventlet # <module>:<app> IE <file>:<flask app variable>
|
||||||
|
|
|
@ -10,7 +10,6 @@ function main() {
|
||||||
cd "${SCRIPTPATH}"
|
cd "${SCRIPTPATH}"
|
||||||
echo "Working Dir: " $(pwd)
|
echo "Working Dir: " $(pwd)
|
||||||
mkdir /tmp/apps
|
mkdir /tmp/apps
|
||||||
/home/abaddon/Portable_Apps/py-venvs/remotemouse-venv/bin/gunicorn \
|
../venv/bin/gunicorn --bind unix:/tmp/apps/remoteconn.sock wsgi:app
|
||||||
--bind unix:/tmp/apps/remoteconn.sock wsgi:app
|
|
||||||
}
|
}
|
||||||
main $@;
|
main $@;
|
||||||
|
|
Loading…
Reference in New Issue