You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
Python
51 lines
1.1 KiB
Python
import win32gui
|
|
|
|
from ctypes import HRESULT
|
|
|
|
from ctypes.wintypes import HWND
|
|
|
|
from comtypes import IUnknown, GUID, COMMETHOD
|
|
|
|
import comtypes.client
|
|
|
|
import os
|
|
import sys
|
|
|
|
from PyQt5.QtWidgets import QLineEdit
|
|
|
|
from utils import Globals
|
|
|
|
class ITipInvocation(IUnknown):
|
|
|
|
_iid_ = GUID("{37c994e7-432b-4834-a2f7-dce1f13b834b}")
|
|
|
|
_methods_ = [COMMETHOD([], HRESULT, "Toggle", (['in'], HWND, "hwndDesktop"))]
|
|
|
|
|
|
class SoftKeyBoardEdit(QLineEdit):
|
|
def __init__(self, *args):
|
|
super().__init__(*args)
|
|
|
|
# self.mousePressEvent = self.popupKeyboard
|
|
|
|
def toggleTabtip(self):
|
|
try:
|
|
|
|
comtypes.CoInitialize()
|
|
|
|
ctsdk = comtypes.client.CreateObject("{4ce576fa-83dc-4F88-951c-9d0782b4e376}", interface=ITipInvocation)
|
|
|
|
ctsdk.Toggle(win32gui.GetDesktopWindow())
|
|
|
|
comtypes.CoUninitialize()
|
|
|
|
except OSError as e:
|
|
|
|
os.system("C:\\PROGRA~1\\COMMON~1\\MICROS~1\\ink\\tabtip.exe")
|
|
|
|
|
|
def mousePressEvent(self, event):
|
|
# print(Globals.getValue('_touchMode'))
|
|
if Globals.getValue('_touchMode'):
|
|
self.toggleTabtip()
|
|
event.accept() |