[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [MiNT] AES related question: How to keep track if my application is receiving input?
- To: mint <mint@lists.fishpool.fi>
- Subject: Re: [MiNT] AES related question: How to keep track if my application is receiving input?
- From: Paul Wratt <paul.wratt@gmail.com>
- Date: Tue, 31 Aug 2010 01:13:28 +1000
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type; bh=7VSF+yDHHqrQIBV7AYUybhnC+gCcMATwQotLsksFWww=; b=XDMi+m0cJRNKa2IXQUNdi+nWtIphcfZRHChyjnWIA2QItNdpn4zTDYlTC2n/nsy9nH QdvOL87KfcOgnKgfvmF7LlV4qExGLxpKSk5eBrwWGcNmK393S/fNS8FABOODFVy9ZlRY eMCZibywoNGn8T7XcwZv0TkY/utuUEZgophTk=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=f0RQuBEkDiubNjYVr4Vmi311Io6L2YEaIJNwIgaFTAaE4I5YNNnwfFmXBr6KjVX/3a 2bWSRNbD2NPoVse65r3CZz6pSpJQDeF2+rORYssc6DXmDPMg/D0vW9IWAFRP+jHU4D5g 4+qo7d+31Q+YpgSzgRFd3CLYzA5kUd3J9YtsU=
- In-reply-to: <FAF2BA1B4F1443DF85A9009FFFD8ED14@mercatus.local>
- List-help: <mailto:ecartis@lists.fishpool.fi?Subject=help>
- List-id: <mint.lists.fishpool.fi>
- List-owner: <mailto:tjhukkan@fishpool.fi>
- List-post: <mailto:mint@lists.fishpool.fi>
- List-subscribe: <mailto:mint-request@lists.fishpool.fi?Subject=subscribe>
- List-unsubscribe: <mailto:mint-request@lists.fishpool.fi?Subject=unsubscribe>
- References: <611C3B470A9C41BBB2E509D0240FE5EA@mercatus.local> <0002c138.01c73262939e@smtp.freeola.net> <092ed0763bd1932924f163c30cdd45b1-EhVcX1lFRQVaRwYcDTpQCEFddQZLVF5dQUNBAjBTXF5bVkYMXUF0AVU6XF1XQ0IBWVldSQ==-webmailer2@server04.webmailer.hosteurope.de> <FAF2BA1B4F1443DF85A9009FFFD8ED14@mercatus.local>
- Sender: mint-bounce@lists.fishpool.fi
On Wed, Aug 25, 2010 at 11:00 PM, Jo Even Skarstein <joska@online.no> wrote:
> --------------------------------------------------
> From: "m0n0" <ole@monochrom.net>
> Sent: Wednesday, August 25, 2010 1:39 PM
> To: "Peter Slegg" <p.slegg@scubadivers.co.uk>
> Cc: <mint@lists.fishpool.fi>
> Subject: Re: [MiNT] AES related question: How to keep track if my
> application is receiving input?
>
>> More important: tracking of mouse position will be important to change
>> mouse cursor, when hovering over an link, or when hovering over an frame
>> border, etc.
>
> The mouse position can be tracked using rectangle events. As for the key up
> event - I agree with others that this is difficult to detect cleanly under
> TOS. You might have to hook into the keyboard vector to do this - not a nice
> thing to do under a multitasking OS!
>
> Jo Even
>
This would be a good time to come up with a clean alternative, one
that allows for all JS mouse (button) & key actions
onBeforeKeyDown
onKeyDown
onAfterKeyDown
onBeforeKeyUp
onKeyUp
onAfterKeyUp
onBeforeKeyPress
onKeyPress
onAfterKeyPress
ditto for mouse (left & right & middle buttons & MW)
Would this qualify as a keyboard driver (or event driver). An app can
do the OnAfter & OnBefore, but it might also be useful if the app does
not handle these (not talking about JS)
Is it possible to modify the mousew.xdi to do these, in such a way
that it can be used without XaAES (with a driver loader maybe)
Paul